(MX) loading specific frame into a main movie

I need help big time
I have a main movie that loads about 30 external swf’s, so i have a button which after its pressed it loads an external swf and a specific frame,

i.e

there is a main movie called main.swf and there is an external movie that has about 15 frames and its called movie.swf I added a button to a main.swf so when its pressed it loads that external movie.swf so my question is: how do i load a specifc frame of that movie.swf

please help me ASAP

Thank you to all of you.

ok there is a way that works with this. I can do it on a button click, but am having difficulty making the same thing occur with AS in the timeline tho - so if anybody else has any hints I would be grateful.

_root.createEmptyMovieClip(“yourname”, 1);
// 1 refers to the level you may want to change it to affect the z order
yourname.loadMovie(“path/filename.swf”);

button.onPress = function() {
yourname.gotoandPlay(2);
}
you can make the 2 any frame in the movie you have loaded in, but I did it like this because there is a stop in frame 1 of the loaded movie

you can also do various checks which you can put out in a trace like yourname._currentframe so you can check where you are etc etc.