How do I create an installer for an AS app?

(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

See PackageMaker.

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

And as if by magic… :slight_smile:

http://www.macdevcenter.com/pub/a/mac/2006/02/07/packagemaker.html

Thanks all!