Re: splash screen before app loads -- sample script?

2006-05-02 Thread Erik Hansen
--- Phil Davis [EMAIL PROTECTED] wrote: One common way to handle this is to organize your app like this: - the main app consists of the engine your splash screen stack only. This keeps the executable small so it opens quickly when the user starts the app. - the splash screen stack

Re: splash screen before app loads -- sample script?

2006-05-02 Thread Mark Smith
A very simple example would be where you have your mainstack (called splashStack) as a splash screen, and your actual logic in a substack (called logicStack). In the script of stack splashStack on startUp show me open stack logicStack end startUp in the script of stack logicStack on

Re: splash screen before app loads -- sample script?

2006-05-02 Thread Richard Gaskin
Mark Smith wrote: A very simple example would be where you have your mainstack (called splashStack) as a splash screen, and your actual logic in a substack (called logicStack). In the script of stack splashStack on startUp show me open stack logicStack end startUp in the script of

Re: splash screen before app loads -- sample script?

2006-05-02 Thread Tereza Snyder
On May 2, 2006, at 7:54 PM, Richard Gaskin wrote: Mark Smith wrote: A very simple example would be where you have your mainstack (called splashStack) as a splash screen, and your actual logic in a substack (called logicStack). In the script of stack splashStack on startUp show me

Re: splash screen before app loads -- sample script?

2006-05-02 Thread Phil Davis
Hi Eric, Here's a quick example you can play with and modify as you like. It isn't meant to be the be-all-end-all, it just illustrates the one app structure idea I was promoting. http://pdslabs.net/stacks/sampleApp.zip Just unzip, double-click 'appSplash.rev' and away you go. Phil