Re: [flexcoders] Re: Control of SWF in SWFLoader

2007-04-11 Thread Abdul Qabiz
Hi, AFAIK, you can not control an ActionScript 2 movie from ActionScript 3 movie. The possible ways are:- 1) Use LocalConnection 2) Use ExternalInterface (not recommended at all). #1 has been used by many folks (Yahoo! Maps and many others) and there are couple of projects around that approach.

[flexcoders] Re: Control of SWF in SWFLoader

2007-04-11 Thread nowak_petr
Hi, I see I can access content properties with target.content ... swfContent = e.target.content; swfContent.gotoAndStop(2); totalFrames_txt.text = String(swfContent.totalFrames); bytesTotal_txt.text = String(swfContent.loaderInfo.bytesTotal); frameRate_txt.text = String(swfContent.loaderInfo.f