How to communicat with SWF loaded at runtime

Hi everyone,

I’ve went through alot of thread regarding this matter, but its not working in my case, I would appreciate if you could help me out.

I’ve a file named, Load.SWF in which I am loading RFC.SWF on first frame with following code…
[INDENT][FONT=Courier New]container_MC.loadMovie(“RFC.swf”);[/FONT]
[/INDENT]Simple code. ‘container_MC’ is a movieClip instance on the stage in Load.SWF. The file RFC.SWF contains 4 frames with a stop() action on 1st Frame. Now I want to create a button in my Load.SWF file to send the RFC’s playback to frame 3, but I am unable to do this. I am using the following script on a button in Load.SWF, but its not working…
[INDENT][FONT=Courier New]on (press) {[/FONT]
[FONT=Courier New]container_MC.RFC.gotoAndStop(3)[/FONT]
[FONT=Courier New]}[/FONT]
[/INDENT]Any idea how to solve this issue. I am working with a AS2 file in Flash CS3.

Regards.