(OS X) I have written an Applescript controls an application and also uses an OSAX package. How do I create an installer that installer the target application, and drops applescript where it belongs and the OSAX where it belongs?
Thanks
(OS X) I have written an Applescript controls an application and also uses an OSAX package. How do I create an installer that installer the target application, and drops applescript where it belongs and the OSAX where it belongs?
Thanks
If you have installed the developer tools, you can use PackageMaker (/Developer/Applications/Utilities/) to create a standard .pkg package that is installed with the Installer application.
Another option would be to write a simple AppleScript application that copies the files to their correct locations. With this approach, you will find commands like these helpful:
path to me
path to scripting additions folder
Thanks all!