fullscreen - With this option you can able/disable fullscreen viewing of you movie. You can put it in the frame or button (if you prefere leaving this choice to the user): fscommand("fullscreen", "true"); allowscale - If you want to mantain aspect ratio of your movie and prevent it from being scaled by the user you should set this option to 'false': fscommand("allowscale", "false"); Sometimes (when you set your projector to fullscreen and you want to mantain its aspect ratio by allowscale/false), when you have some objects outside the stage, they will eventualy be seen even if you don't want them to. You can solve this problem by putting a Mask with the size of your stage on the topmost layer of your movie to cover all off-stage objects. Another thing to remember is that any .swf you load into the main projector inherits its allowscale settings. |