Favorites » His Blog
-
pagenav.htm
-
May 13, 6:22am
1 review
•http://livedocs.adobe.com/flash/9.0/m...
-
some people are confused in how to use this handler...
so here is a basic use:
var listener:Object = new Object();
Stage.addListener(listener);
listener.onFullScreen = function(bFull:Boolean){
if ( bfull)
trace("Is Fullscreen");
else
trace("Not Fullscreen");
}
Hope it save's you time searching the net.
|