IM: (このコードはmain.swf内にある)firts内部に装填される別のSWF 1つのSWFからのパスのVaRの値は、AS3に1
function loadImage(url:String):void {
imageLoader = new Loader();
imageLoader.load(new URLRequest(url));
imageLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, imageLoading);
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
}
loadImage("test1.swf");
function imageLoaded(e:Event):void {
MyMovieClip.addChild(imageLoader);
}
思考は、test1.swfはローダーswf(main.swf)にある値を必要としていますが、どのように値を渡すことができますか?ありがとう!
こんにちはパトリックス、瞬間があるときは、これを見ることができますか?http://stackoverflow.com/questions/6933387/how-to-pass-a-string-from-a -swf-into-another-swf –