|
|||
|
Hello All,
I am experimenting with an installer and I am using a SWFKit made executable as a splash screen. I have it set up so you can use the Esc key to exit the splash screen. Here is my question: How can I set it up so the splash screen exits automatically after it finishes playing (the splash is animated). I have found ways to close it, but then the main installer does not run. If I hit Esc, the installer starts right up, so basically, how do I achieve the effect of the Esc key automatically at the end of my splash animation? Any help would be appreciated... Thank you! |
|
|||
|
I believe this is your aim
- you run a swfkit movie - when it exits, the installer (another executable) starts I'ld use this Code:
wnd = getMainWnd();
wnd.onClose = do_close;
function do_close()
{
// this is triggered when your swfkit movie is closing
// either by pressing escape or when finished the flash movie ( fscommand("quit") );
Shell.run("Installer.exe");
}
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|