Just doing this: trace( stage.fullScreenWidth, stage.fullScreenHeight );
Gets me 0,0, instead of the actual resolution of my (laptop, no external screen) monitor...what am I doing wrong here?
Just doing this: trace( stage.fullScreenWidth, stage.fullScreenHeight );
Gets me 0,0, instead of the actual resolution of my (laptop, no external screen) monitor...what am I doing wrong here?
the livedocs suggests that problems can occur if the browser is movable, i suggest you do some studying:
http://livedocs.adobe.com/flash/9.0/...ullScreenWidth
flos
If what you want is the full actual resolution of the screen do thissee these for more info on capabilitiesPHP Code:var ScreenSizeX:int = Capabilities.screenResolutionX;
var ScreenSizeY:int = Capabilities.screenResolutionY;
trace(ScreenSizeX + " ScreenSizeX");
trace(ScreenSizeY + " ScreenSizeY");
http://help.adobe.com/en_US/ActionSc...0204-7cd8.html
http://help.adobe.com/en_US/AS3LCR/F...puArchitecture
mark