+ -
当前位置:首页 → 问答吧 → 请教下,看我这段有什么问题

请教下,看我这段有什么问题

时间:2011-09-29

来源:互联网

var resolution;
              if (System.capabilities.screenResolutionX>=1920) {
                     resolution = 1920;
              } else if (1680<=System.capabilities.screenResolutionX<1920) {
                     resolution = 1680;
              } else if (1400<=System.capabilities.screenResolutionX<1680) {
                     resolution = 1440;
              } else if (1280<=System.capabilities.screenResolutionX<1400) {
                     resolution = 1280;
              } else if (1024<=System.capabilities.screenResolutionX<1280) {
                     resolution = 1024;
              } else {
                     resolution;
              }
trace("系统:"+System.capabilities.screenResolutionX);
trace("设定:"+resolution);
==================
本意是检测分辨率,可是trace出来的都是不对的。
=============
以下为Flash输出的:
系统:1366
设定:1024;

在线等,谢谢

作者: huijieleo   发布时间: 2011-09-29

http://bbs.9ria.com/thread-99096-1-1.html

作者: flash023   发布时间: 2011-09-30