Flex中通过和Security类中的常量
程序员文章站
2022-05-24 19:30:34
接下来的例子演示了Flex中通过和Security类中的常量(LOCAL_TRUSTED, LOCAL_WITH_FILE, LOCAL_WITH_NETWORK以及REMOTE)对比sandboxType属性,检查应用程序当前安全沙盒设置。... 13-07-03...
接下来的例子演示了flex中通过和security类中的常量(local_trusted, local_with_file, local_with_network以及remote)对比sandboxtype属性,检查应用程序当前安全沙盒设置。 下面是完整代码:
复制代码代码如下:<?xml version="1.0" encoding="utf-8"?> <mx:application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalalign="middle" backgroundcolor="white" creationcomplete="init();"> <mx:script> <![cdata[ private function init():void { switch (security.sandboxtype) { case security.local_trusted: sandboxlabel.text += " (local trusted)"; break; case security.local_with_file: sandboxlabel.text += " (local with file)"; break; case security.local_with_network: sandboxlabel.text += " (local with network)"; break; case security.remote: sandboxlabel.text += " (remote)"; break; } } ]]> </mx:script> <mx:form> <mx:formitem label="security.sandboxtype:" fontsize="16"> <mx:label id="sandboxlabel" text="{security.sandboxtype}" /> </mx:formitem> </mx:form> </mx:application>
上一篇: Maya菜单中英文对照总汇
下一篇: js清除浏览器缓存的几种方法
推荐阅读
-
python中的实例方法、静态方法、类方法、类变量和实例变量浅析
-
PHP中抽象类和接口的区别
-
Javascript中类式继承和原型式继承的实现方法和区别之处
-
[python] 在 python2和3中关于类继承的 super方法简要说明
-
ThinkPHP中__initialize()和类的构造函数__construct()用法分析
-
【转载】C#中ArrayList集合类和List集合类的比较
-
Java日期时间API系列9-----Jdk8中java.time包中的新的日期时间API类的Period和Duration的区别
-
codeigniter中测试通过的分页类示例
-
详解Javascript百度地图接口开发文档中的类和方法
-
Flex中通过和Security类中的常量