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
Problme after creating a standalone app
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
-
- VIP Livecode Opensource Backer
- Posts: 977
- Joined: Sat Apr 08, 2006 7:47 am
- Contact:
Re: Problme after creating a standalone app
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.
HTH,
Jan Schenkel.
Quartam Reports & PDF Library for LiveCode
www.quartam.com
www.quartam.com
Re: Problme after creating a standalone app
Got it, thanks Jan.