AS3中swf文件夹的路径

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3中swf文件夹的路径相关的知识,希望对你有一定的参考价值。

  1. You can use loaderInfo.loaderURL to get the full path and name of you swf
  2.  
  3. Example of a class:
  4.  
  5. public class Main extends Sprite {
  6. private function init():void {
  7. removeEventListener(Event.COMPLETE, init);
  8. var myUrl:String=loaderInfo.loaderURL;
  9. var tmp:Array=myUrl.split("/");
  10. var myName:String=tmp[tmp.length-1].split(".swf")[0];
  11. }
  12.  
  13. public function Main() {
  14. super();
  15. if (stage)
  16. init();
  17. else
  18. addEventListener(Event.COMPLETE, init, false, 0, true);
  19. }
  20. }

以上是关于AS3中swf文件夹的路径的主要内容,如果未能解决你的问题,请参考以下文章

AS3获取SWF文件中AS链接

是否可以在 AS3 中查看从 SWF 下载的 crossdomain.xml?

AS3跨域加载SWF文件

ActionScript 3 AS3加载SWF文件跨域

AS3加载和显示外部SWF文件

AS3:如何在外部 swf 上的文本字段中使用 Android 默认字体?