Linking to specific frames in loaded .swf file

Hello,

Is there a way for me to have a link on one scene, that goes to another scene where I have an external .swf file being loaded in, and tell it to go to a specific frame in that loaded .swf file?

I have the code, once I am already in the scene which contains the loaded .swf file that allows me to create links to go to any frame I have labeled.

Just having trouble with combining the:
on(press){
_root.gotoAndStop(“rn”);
}
(going to another scene/frame w/ in main mc)

with…
on(release) {
_level0._level0.loader_rn_news.gotoAndStop(“rn_9_2_06_1”);
}
(this is when I’m already in scene with loaded .swf file)

Hope this makes sense!

Thanks.