How to set/access external swf file's dynamic text field in action script 3?
问题 I am working in a fla file where i added a swf file. How I set a text on that swf file's dynamic text. Is there any to to direct set text. I don't want to pass as parameter in url. I tried like this var rq:URLRequest = new URLRequest("subwindow/Time_date.swf"); ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, done); ldr.load(rq); function done(e:Event):void { var externalSWF:MovieClip = MovieClip(e.currentTarget.content); // I have dynamic text field named dDate. I tried like this but