I’ve created a pretty nifty Flash Application that’s going to go on a CD-ROM.
I used Flash CS3 and ActionScript 3 to develop it and I published an .exe projector file from Flash.
Everything works fine except for one quirk that I can’t understand or find a work-around for.
I’m using fscommand to set fullscreen=true, allowscale=false and showmenu=false.
The thing is, I can’t get all three of these commands to work together at the same time!!
The following code always ignores the showmenu command:
fscommand("fullscreen","true");
fscommand("showmenu","false");
fscommand("allowscale","false");
The following code always ignores the allowscale command:
fscommand("fullscreen","true");
fscommand("allowscale","false");
fscommand("showmenu","false");
The fullscreen command works in both instances. If I can’t find a solution, I’ll have to stick with the allowscale command since it’s more important.
The right-click menu allows for options that can screw up the Flash Application though (mainly ‘Play,’ ‘Forward’ and ‘Show All’).
Is there a way I can get all those commands to work at once?
Does anyone know how to disable the right-click menu in another way?