ActionScript 3 AS3从远程URL加载外部SWF

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3从远程URL加载外部SWF相关的知识,希望对你有一定的参考价值。

// Loading a SWF from a remote server requires you to set the correct securityDomain
// Use the Security.sandboxType to check this
// Testing a SWF locally doesn't require securityDomain
// In a browser it does (Security.REMOTE)

import flash.system.*;
import flash.net.*;

if(Security.sandboxType == Security.REMOTE)
{
  var context:LoaderContext = new LoaderContext();
  context.securityDomain = SecurityDomain.currentDomain;
}

var ldr:Loader = new Loader();
ldr.load(new URLRequest("http://www.remoteDomain.com/remoteSWF.swf"), context);

以上是关于ActionScript 3 AS3从远程URL加载外部SWF的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3从URL或文件名获取文件扩展名

ActionScript 3 在Air AS3中将远程rss保存在桌面上

ActionScript 3 AS3 - 来自URL的缓存图像

ActionScript 3 AS3中图像URL的自定义光标

ActionScript 3 As3从XML加载

ActionScript 3 AS3从数组中删除元素