You know when you right/control click a Flash movie on a website and you get a menu? Why is that some have a lot of options in the menu, like: Play, Pause, Quality, Zoom, etc. and some only have: Settings, Debugger, and About Flash Player?
When you make a flash movie, you can disable some of the menu settings. It makes the final *.swf file slightly smaller if you leave out unwanted/unnecessary options.
I am not too sure if it can help you to save file size but the main reason most people disabled the menu is to prevent users from deviating from the normal mode.
you can disable right click menu by adding just this line of actionscript in the first frame:
Stage.showMenu = false;
I am not too sure if it can help you to save file size but the main reason most people disabled the menu is to prevent users from deviating from the normal mode.
you can disable right click menu by adding just this line of actionscript in the first frame:
Stage.showMenu = false;