Full screen resize align pattern
true full screen flash with fullscreen right click
Can anyone point me in the direction of a good simple button utility I can add to a flash 8 presentation tat will allow the user to toggle between fullscale(true/false) and allowscale (true/false) commands.
Have found it quite frustrating searching for such a utility at FlashDen.
Many thanks
Posted 2 months ago
Full screen resize align pattern
true full screen flash with fullscreen right click
Very easy just make a button and enter this
onPress = function ()
{
if (Stage[“displayState”] == “normal”
{
Stage[“displayState”] = “fullScreen”;
} else {
Stage[“displayState”] = “normal”;
}
}
Make sure also that on your HTML to set your ‘allowFullScreen’, ‘true` If not the full screen will not work
This code is AS2 GL ’,
Posted 2 months ago