开发者

Detecting client screen resolution

开发者 https://www.devze.com 2022-12-09 02:01 出处:网络
开发者_如何学GoHow can i detect my client\'s screen resolution .. in Flex?? Zee//To know horizontal-screen-resolution
开发者_如何学Go

How can i detect my client's screen resolution .. in Flex??

Zee


//To know horizontal-screen-resolution
var screenResolutionX:Number = Capabilities.screenResolutionX;

//To know vertical screen-resolution
var screenResolutionY:Number = Capabilities.screenResolutionY;

Here's more info on the Capabilities API.


Capabilities.screenResolutionX;
Capabilities.screenResolutionY;

Here is the documentation on the Capabilities class, and all of the various information that can be acquired.

0

精彩评论

暂无评论...
验证码 换一张
取 消