View Single Post
  #2 (permalink)  
Old 10-30-2009, 10:22 AM
meester meester is offline
Senior Member
 
Join Date: Feb 2003
Posts: 212
Default

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");

}
Reply With Quote