0

I am trying to access a variable from a test.swf on b.com from a parent.swf on a.com.

test.swf:

Security.allowDomain("a.com");
var test = 0;

parent.swf:

var loader:Loader = new Loader();
var url:String = "http://b.com/test.swf";
loader.load(new URLRequest(url));

I can access the swf like this. But how can I access and change the var test in test.swf?

4

1 に答える 1

0

基本的に、ロードしているswfのURLを変更することでこれを行うことができます.

これをチェックしてください

于 2013-04-27T06:36:06.987 に答える