sensoria
07-11-2002, 10:53 PM
Ok, I've gone through all the fscommand related posts and tutorials on this site hoping for an answer to my problems, but after trying all the suggestions, nothing seems to work.
The problem:
Saving my Flash MX project as a projector file to run off a CD in Windows. Within the projector are links to two Windows Media Player movies. I'm trying to use fscommand to launch the movies in Windows Media Player. The two movies, named 56K.wmv and 300K.wmv are both within a subfolder named "fscommand" at the root level of the CD-ROM.
While I've tried most of the code people have posted regarding fscommand, the last thing I tried is listed below:
on (release) {
fscommand ("exec", "56k.wmv");
}
I've also tried (from Jesse's tutorial - I also tried the other code from his other tutorials):
on (release) {
filename = "56k.wmv";
fscommand ("exec", "start\t" + filename);
fscommand ("exec", "cmd\t/c\t" + filename);
}
None of the above works.
Is it not possible to launch an external file from a CD using an MX Projector? Or is my brain just fried and I'm not doing it correctly?
And of course I have to get this CD-ROM to a client by the end of the week. God, I hate clients... :-)
Any help would be appreciated.
Regards,
Ron
The problem:
Saving my Flash MX project as a projector file to run off a CD in Windows. Within the projector are links to two Windows Media Player movies. I'm trying to use fscommand to launch the movies in Windows Media Player. The two movies, named 56K.wmv and 300K.wmv are both within a subfolder named "fscommand" at the root level of the CD-ROM.
While I've tried most of the code people have posted regarding fscommand, the last thing I tried is listed below:
on (release) {
fscommand ("exec", "56k.wmv");
}
I've also tried (from Jesse's tutorial - I also tried the other code from his other tutorials):
on (release) {
filename = "56k.wmv";
fscommand ("exec", "start\t" + filename);
fscommand ("exec", "cmd\t/c\t" + filename);
}
None of the above works.
Is it not possible to launch an external file from a CD using an MX Projector? Or is my brain just fried and I'm not doing it correctly?
And of course I have to get this CD-ROM to a client by the end of the week. God, I hate clients... :-)
Any help would be appreciated.
Regards,
Ron