I must do the following:
Transform a huge web site in flash, with several movies that load on the main movie, into a projector to run from a CD. The projector will have buttons to open other projector files (director and flash) to show the portfolio itens.
The problem I´m having is that the SWF do not open .EXE files without asking to open or save it, so I must transform it to a projector?
is there another way of opening .exe files with a SWF? maybe .dat files?
hope I´ve been clear.
thanks for any help
You can launch another EXE from a projector using:
fscommand("exec", "yourapp.exe");
Just make sure that on your CD you have a directory off the root level named “fscommand” that contains all of your Flash-launched EXEs.
Of course, this only launches another app. If you wanted to open one and close the current one, just add:
mybutton.onRelease = function() {
// open another app
fscommand("exec", "yourapp.exe");
// close the current one
fscommand("quit", "");
}
Not quite clear on what you’re going for, but I hope this helps a bit.