vote up 0 vote down star

Hi, i have my code to make the stage go to fullscreen but it doesn't seem to work if I use the .swf version of the file, if i export it as a .exe file though it will work, heres my function

function toggleFullScreen() {
    Stage.displayState = (Stage.displayState == "normal") ? Stage.displayState = "fullScreen" : Stage.displayState = "normal";
}
flag

1 Answer

vote up 0 vote down

Have you set allowFullScreen=true in your embed params?

See - http://www.adobe.com/devnet/flashplayer/articles/full%5Fscreen%5Fmode.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.