level 8
自在满愿
楼主
.
检测运行环境
.
if (Capabilities.playerType == "Desktop"){
trace("当前运行环境是 air 环境");
}
.
检测操作系统:
.
if(Capabilities.os == "Windows 10"){
trace("当前操作系统是 Win 10 系统")
}
.
指定运行时环境的类型。此属性可以是下列值之一:
.
"ActiveX"用于 Microsoft Internet Explorer 使用的 Flash Player ActiveX 控件
.
“Desktop”代表 Adobe AIR 运行时(通过 HTML 页加载的 SWF 内容除外,该内容将 Capabilities.playerType 设置为“PlugIn”)
.
“External”用于外部 Flash Player 或处于测试模式下
.
“PlugIn”代表 Flash Player 浏览器插件(和通过 AIR 应用程序中的 HTML 页加载的 SWF 内容)
.
"StandAlone"用于独立的 Flash Player
.
2025年04月16日 11点04分
1
检测运行环境
.
if (Capabilities.playerType == "Desktop"){
trace("当前运行环境是 air 环境");
}
.
检测操作系统:
.
if(Capabilities.os == "Windows 10"){
trace("当前操作系统是 Win 10 系统")
}
.
指定运行时环境的类型。此属性可以是下列值之一:
.
"ActiveX"用于 Microsoft Internet Explorer 使用的 Flash Player ActiveX 控件
.
“Desktop”代表 Adobe AIR 运行时(通过 HTML 页加载的 SWF 内容除外,该内容将 Capabilities.playerType 设置为“PlugIn”)
.
“External”用于外部 Flash Player 或处于测试模式下
.
“PlugIn”代表 Flash Player 浏览器插件(和通过 AIR 应用程序中的 HTML 页加载的 SWF 内容)
.
"StandAlone"用于独立的 Flash Player
.