Page 1 of 1
Problme after creating a standalone app
Posted: Tue Feb 09, 2010 2:02 am
by phaworth
I have a number of scripts that I insert as front scripts when my app starts up. After creating a standalone app, these scripts are no longer recognized (get can't find handler error) in the dev environment until I restart rev.
Not a big deal but is this expected behaviour?
Pete
Re: Problme after creating a standalone app
Posted: Tue Feb 09, 2010 12:02 pm
by Janschenkel
Well, building a standalone will unload your stack completely, and reload it - thus the frontscripts/backscripts are unloaded, but unfortunately not automagicfally reloaded. One option is to handle the standaloneSaved message to insert the scripts again into the message path.
HTH,
Jan Schenkel.
Re: Problme after creating a standalone app
Posted: Tue Feb 09, 2010 7:02 pm
by phaworth
Got it, thanks Jan.