Click to See Complete Forum and Search --> : FullScreen escape


moiseszaragoza
08-26-2008, 09:27 AM
Hey every one

I have a movie that the end user can set to FullScreen or normal.

but when they press escape i am bot getting a return




i=0
Controllers.toggle_btn.onRelease = function() {
i++ // this does not happend when the end user changes browser windo or presses escape
// toggle button has been hit
tester.text=i
if (Stage.displayState == "fullScreen") {
Stage.displayState = "normal";
} else {
Stage.displayState = "fullScreen";
}
};