Target frame in .swf

how can I target a particular frame in a .swf on level1.

thanks

_level1 targets level 1. You can go to a frame in a swf on level 1 by saying

_level1.gotoAndPlay(frame);

but you cant target anything that isnt in the current frame of the movie such as a movieclip that appears in another 10 more frames.

cheers,

yeah worked it out already, thanx anyways.