`
hideto
  • 浏览: 2687661 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

ASCB阅读笔记三、Runtime Environment

阅读更多
1,检测用户浏览器安装的Flash Player版本
http://www.adobe.com/software/flashplayer/download/detection_kit
比较搞笑的是ActionScript 3.0有一个flash.system.Capabilities.version属性用来检测Flash Player版本,但是它不能在
Flash Player 8.5之前版本工作,所以这对Flash检测毫无用武之地。

2,检测操作系统

package {
  import flash.display.Sprite;
  import flash.system.Capabilities;

  public class Test extends Sprite {
    public function Test() {
      var os:String = Capabilities.os.substr(0, 3);
      if (os == "Win") {
        // Windows-specific code goes here
      } else if (os == "Mac") {
        // Mac-specific code goes here
      } else {
        // Must be Unix or Linux
      }
    }
  }
}


3,检测Player类型
if(flash.system.Capabilities.playerType == "Plugin") {
  // do actions for Mozilla, etc. browsers
} else if(flash.system.Capabilities.playerType == "ActiveX") {
  // do actions for IE
} else {
  // do actions for no browser
}


4,检测系统语言
var greetings:Array = new Array(  );
greetings["en"] = "Hello";
greetings["es"] = "Hola";
greetings["fr"] = "Bonjour";

// Extract the first two characters from the language code.
var lang:String = flash.system.Capabilities.language.substr(0, 2);

// Use a default language if the language is not in the list
if (greetings[lang] == undefined) {
  lang = "en";
}

// Display the greeting in the appropriate language.
trace(greetings[lang]);


5,检测IME
flash.system.Capabilities.hasIME
flash.system.IME.enabled
flash.system.IME


6,检测分辨率
var resX:int = flash.system.Capabilities.screenResolutionX;
var resY:int = flash.system.Capabilities.screenResolutionY;

// If the resolution is 240 x 320 or less, then load the PocketPC
// movie version. Otherwise, assume the device is a desktop computer 
// and load the regular content.
if ( (resX <= 240) && (resY <= 320) ) {
  var url:String = "main_pocketPC.swf";
}
else {
  var url:String = "main_desktop.swf";
}
loader.load(new URLRequest(url));


7,设置Movie的Scale模式
stage.scaleMode = flash.display.StageScaleMode.SHOW_ALL
stage.scaleMode = flash.display.StageScaleMode.NO_BORDER
stage.scaleMode = flash.display.StageScaleMode.EXACT_FIT
stage.scaleMode = flash.display.StageScaleMode.NO_SCALE


8,设置Movie在Player里的位置
stage.align = flash.display.StageAlign.TOP
stage.align = flash.display.StageAlign.BOTTOM
stage.align = flash.display.StageAlign.LEFT
stage.align = flash.display.StageAlign.RIGHT
stage.align = flash.display.StageAlign.TOP_LEFT
stage.align = flash.display.StageAlign.TOP_RIGHT
stage.align = flash.display.StageAlign.BOTTON_LEFT
stage.align = flash.display.StageAlign.BOTTON_RIGHT


9,隐藏Flash Player的右键点击菜单项
stage.showDefaultContextMenu = false;

但是这只能部分隐藏

10,检测音频
flash.system.Capabilities.hasAudio
flash.system.Capabilities.hasMP3


11,检测视频
flash.system.Capabilities.hasEmbeddedVideo
flash.system.Capabilities.hasStreamingVideo
flash.system.Capabilities.hasVideoEncoder


12,提示用户修改Flash Player设置
flash.system.Security.showSettings(flash.system.SecurityPanel.CAMERA);
flash.system.Security.showSettings(flash.system.SecurityPanel.DEFAULT);
flash.system.Security.showSettings(flash.system.SecurityPanel.LOCAL_STORAGE);
flash.system.Security.showSettings(flash.system.SecurityPanel.MICROPHONE);
flash.system.Security.showSettings(flash.system.SecurityPanel.PRIVACY);
flash.system.Security.showSettings(flash.system.SecurityPanel.SETTINGS_MANAGER);


13,处理系统安全
当我们从另一个domain加载一个.swf文件到当前程序中时,我们可能想运行它访问本程序的ActionScript
flash.system.Security.allowDomain()
flash.system.Security.allowInsecureDomain()
flash.system.Security.loadPolicyFile()

<?xml version="1.0"?>
<!-- http://www.mydomain.com/crossdomain.xml -->
<cross-domain-policy>
  <allow-access-from domain="www.otherdomain.com" />
  <allow-access-from domain="*.adobe.com" />
  <allow-access-from domain="123.45.67.89" />
</cross-domain-policy>

// wildcards
<allow-access-from domain="*" />

// deny access to any domain except the current one
<cross-domain-policy>
</cross-domain-policy>
分享到:
评论

相关推荐

    FLEX的ASCB函数包

    ASCB函数包是专门为FLEX开发者设计的一个实用工具集,它扩展了FLEX的基础功能,尤其在处理字符串、数字以及日期等方面提供了便捷的函数操作。 首先,ASCB包中的“ASCB”可能是“ActionScript Custom Bundle”的缩写...

    ActionScript ascb包

    在本场景中,"ascb包"似乎是一个与ActionScript相关的库或者框架,它被设计为解压后放入项目的`src`目录下。由于没有提供更具体的详细信息,我们只能基于ActionScript的基础知识来展开讨论。 1. **ActionScript基础...

    ascb hardware card

    This manual describes the Goebel NIC, a test resource for exercising ASCB-D interface bus on Honeywell EPIC programs. This is a new generation of test equipment designed specifically for simulation.

    ascb.drawing.Pen 类

    但是大多数的图形用Graphics API还是很难画出的,AS3CBLibrary (http://www.rightactionscript.com/ascb) 提供了一个 ascb.drawing.Pen 类。Pen 类是Graphics 类的代理(包装)类。你可以构造一个新的Pen 实例然后...

    ascb.drawing.pen

    但是大多数的图形用Graphics API还是很难画出的,AS3CBLibrary (http://www.rightactionscript.com/ascb) 提供了一个 ascb.drawing.Pen 类。Pen 类是Graphics 类的代理(包装)类。你可以构造一个新的Pen 实例然后...

    安科瑞ASCB1系列智能微型断路器样本

    【安科瑞ASCB1系列智能微型断路器】是安科瑞电气股份有限公司推出的一款创新的智慧用电解决方案,旨在提升低压终端配电网络的安全性、可靠性和智能化水平。该系列产品包含智能微型断路器和智能网关两部分,广泛应用...

    591 ASCB1系列智能微型断路器安装使用说明书V1.00-20220715

    "591 ASCB1系列智能微型断路器安装使用说明书V1.00-20220715" 在本文中,我们将对ASCB1系列智能微型断路器的安装使用说明书进行详细的解读和分析。 首先,让我们从概述开始。根据手册的描述,ASCB1系列智能微型...

    flash actionscript3 as3游戏开发教程合集(2本经典合一)+AS3CBLibrary_ascb包.zip

    同时,通过阅读"ActionScript 3.0 Cookbook 中文版",可以学习到如何解决开发过程中遇到的实际问题,提升编程技能。 总之,《Flash ActionScript3 AS3游戏开发教程合集》是为那些希望通过AS3进行游戏开发的学习者...

    AS3CBLibrary

    库中的“ascb”包可能是所有类和接口的顶级命名空间,方便组织和管理代码。 在AS3中,类库通常包含了各种类和接口,它们可以是: 1. **动画类**:用于创建复杂的动画效果,可能包括时间轴控制、帧率管理、缓动函数...

    VB6.0与vb.net对照表

    - `AscB`:VB6.0的`AscB`函数对应VB.NET的`Microsoft.VisualBasic.Strings.Asc`函数。 - `Atn`:VB6.0的`Atn`函数对应VB.NET的`System.Math.Atan`方法。 - `AutoRedraw`:VB6.0的属性在VB.NET中没有直接对应,但...

    flash as3.0游戏

    一款带有代码的flash小游戏,直接下载,马上可以打开,不用解压缩.

    ASP封装成DLL

    ASP 封装成 DLL 服务器端组件 本文档主要讲述了如何将 ASP 封装成 DLL 服务器端组件,从而实现 ASP 程序在 IIS 上的运行。... 在 IIS 被请求执行一个 ASP 程序时,它首先会在 ASP 文件中找到 &lt;%%&gt; 标签之间的代码,...

    用VBS获取网页源代码.vbs

    ThisCharCode = AscB(MidB(vIn,i,1)) If ThisCharCode ; Then strReturn = strReturn & Chr(ThisCharCode) Else NextCharCode = AscB(MidB(vIn,i+1,1)) strReturn = strReturn & Chr(CLng(ThisCharCode) * &...

    鲜花网站建设

    if AscB(upfile_5xSoft_Stream.Read(1))&lt;&gt;AscB(MidB(Str,j,1)) then InString=0 Exit For end if next if InString&lt;&gt;0 then Exit Function end if next End Function Private Sub Class_Terminate form....

    VBS 16进制验证特定字符

    `AscB`函数则将这个字节转换为其对应的ASCII码,以便与16进制数值进行比较。如果从第12到18个字节的ASCII码对应于16进制数'f', 'a', 's', 't', 's', 'l', 'z'(即字符'fastslz'),则说明文件中包含预期的字符序列,...

    VB 从二进制流中恢复汉字信息

    strss = 256 * AscB(MidB(StringBin, intCount, 1)) + AscB(MidB(StringBin, intCount + 1, 1)) getString = getString & Chr(strss) intCount = intCount + 2 End If Loop End Function ``` 通过以上讨论和...

    asp_base64.rar

    arrData(i + 3) = AscB(MidB(strInput, i + 3, 1)) Next Base64ToBinary = arrData End Function ``` 4. **使用场景**:在ASP中,Base64编码通常用于: - 在HTTP头部传输非ASCII字符,如JSON Web Tokens (JWT)...

    获取中文字符串长度的函数

    `AscB`和`MidB`函数用于获取字符串中的字节,`And`操作符用于检查字节的最高位。如果连续的两个字节满足条件,说明它们构成一个中文字符,计数器加1。 在实际应用中,`CLen`函数对于处理包含中文字符的文本非常有用...

    vb字符串操作函数

    **用途:** AscB函数用于获取指定字符的单字节编码值。 **语法:** ``` MyVal = AscB("指定字符") ``` **示例:** ```vb MyVal = AscB("A") ' MyVal 的值为 65 MyVal = AscB("С") ' MyVal 的值为 15 ``` **注意...

Global site tag (gtag.js) - Google Analytics