如何在 Flex 中检测显示器分辨率
如何在flex中检测显示器当前的分辨率。
How to detect the Monitor current resolution in flex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在flex中检测显示器当前的分辨率。
How to detect the Monitor current resolution in flex.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
尝试使用
flash.system.Capability
类 及其属性screenDPI
、screenResolutionX
和screenResolutionY
。Try to use
flash.system.Capabilities
class and its propertiesscreenDPI
,screenResolutionX
andscreenResolutionY
.您不能只检测 Flex 中的屏幕分辨率。您可以做的最接近的事情是切换到全屏模式,然后检查舞台分辨率,这将等于显示器分辨率。
要切换到全屏,请将舞台的
displayState
属性设置为StageDisplayState.FULL_SCREEN
。You can't just detect screen resolution in Flex. The closest thing you can do is switch to full screen mode and then check your stage resolution, which will then equal monitor resolution.
To switch to full screen set the stage's
displayState
property toStageDisplayState.FULL_SCREEN
.