Re: Mac style .app loader for Windows - Archive problems
Posted: Sun Jan 06, 2013 6:18 am
Since the IDE loads the zip library when it starts up, you don't need to do that during development. The external isn't automatically loaded in a standalone though. I haven't used the standalone builder's method of inclusion (I'm old-school) so I assumed it would handle that for you, but it doesn't look like it's working. You can try the old way, which is to set the externals in a startup handler. In the IDE, the startup handler will never run so it does no harm. In the standalone, it will load the zip external.
on startup
set the externals of this stack to "<path/to/revzip/bundle>"
end startup
Another way to set it without using a script is to just put the relative path into the Externals pane of the stack inspector. I don't know if that would interfere with the IDE or not, but probably not.
on startup
set the externals of this stack to "<path/to/revzip/bundle>"
end startup
Another way to set it without using a script is to just put the relative path into the Externals pane of the stack inspector. I don't know if that would interfere with the IDE or not, but probably not.