# \_parent problem

**URL:** https://forum.kirupa.com/t/-parent-problem/61895
**Category:** Uncategorized
**Created:** [August 23, 2004, 5:14am UTC](https://forum.kirupa.com/t/-parent-problem/61895 "2004-08-23T05:14:09Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![johnredcorn](https://avatars.discourse-cdn.com/v4/letter/j/ebca7d/32.png) [@johnredcorn](https://forum.kirupa.com/u/johnredcorn)
#### Post date: [August 23, 2004, 5:14am UTC](https://forum.kirupa.com/t/-parent-problem/61895/1 "2004-08-23T05:14:09Z")

</div>

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);  
}  
}

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 23, 2004, 6:04am UTC](https://forum.kirupa.com/t/-parent-problem/61895/2 "2004-08-23T06:04:07Z")

</div>

just do \_parent.gotoAndStop(2);

= P
