Search  

FULLSCREEN & ALLOWSCALE TOGGLE BUTTON REQUIRED

HomeForumsItem Requestsfullscreen & allowscale toggle button required
Default-profile Dozza
1 post
Bought between 1 and 9 items

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
52173 dSKY
548 posts
Exclusive author Author was featured Referred at least one person Sold between 10 000 and 50 000 dollars Bought between 1 and 9 items
48131 tsafi
85 posts
Sold between 1 and 100 dollars

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