Loading swf into a specific frame

Button 6 resides in main.swf. When you press button 6, it loads pictures.swf into a level using the following syntax.

on (press) {
loadMovieNum(“photographers.swf”, 2);
loadMovieNum(“pictures.swf”, 3);
unloadMovieNum(4);
}

The pictures.swf loads and automatically we see the picture housed on the first frame. I want to be able to go to a specific frame (let’s say frame 6 in this case) in the pictures.swf. How can I control this from the button 6 in the other fla.file?

Thanks in advance for any help you can spare?

with levels i honestly dont know how to do this but if you make a empty movie clip wich loads the swf what you could do is put an instance on the empty clip ie. empty_clip well you will something like this

on (release) {
with (_root.empty_clip) {
gotoAndPlay(6);
}
}
i think this should work i cant say now cause i dont have an example here handy but try it and post your results im sure if it doesnt work one of the guys here will help you out just be patient

Grim