k i created a movie clip in which when enter happens onscreen, i would like the main movie to go to the second frame. now im just not sure how to do this exactly… like i know theres the "_root.( mc ) for stuff to happen in movie clips in the movie… and "_parent. (mc) for movie clips on stage to work…
what would i use for something that identifies as the main movie… its hard to explain
onClipEvent (enterFrame) {
if (Key.isDown(Key.down)) {
_parent.(what do i put here to make something in my main movie go to the second frame).gotoAndstop(2);
}
}