# NEED HELP: issues with \_level

**URL:** https://forum.kirupa.com/t/need-help-issues-with--level/120078
**Category:** Uncategorized
**Created:** [August 20, 2004, 1:07pm UTC](https://forum.kirupa.com/t/need-help-issues-with--level/120078 "2004-08-20T13:07:52Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Nauthiz](https://avatars.discourse-cdn.com/v4/letter/n/cc9497/32.png) [@Nauthiz](https://forum.kirupa.com/u/Nauthiz)
#### Post date: [August 20, 2004, 1:07pm UTC](https://forum.kirupa.com/t/need-help-issues-with--level/120078/1 "2004-08-20T13:07:52Z")

</div>

Hi folks!

Well, I have a problem with AS, maybe someone can help me out!

Currently I have a site wich loads 2 movies: a MENU (\_level10) and a PAGE(\_level2). Somewhere deeper into the hieriarchy of the MENU there’s a button that needs to make a clip on the PAGE gotoAndPlay, to the label “next”.

The issue is, that I can’t seem to adress this clip… I’m using this code:

on (release){  
\_level2.\_root.animation.gotoAndPlay(“next”);}

I even tried it with/without “\_root”, with a tellTarget, and other ways. There are no syntax errors (if the code above is wrong that’s due to RSI, lazyness and bad spelling). I hope anyone can help me to adress this clip the right way.

---

<div class="post-metadata">

### Author: ![naderslim](https://avatars.discourse-cdn.com/v4/letter/n/3be4f8/32.png) [@naderslim](https://forum.kirupa.com/u/naderslim)
#### Post date: [August 20, 2004, 1:17pm UTC](https://forum.kirupa.com/t/need-help-issues-with--level/120078/2 "2004-08-20T13:17:35Z")

</div>

try:  
\_level2.animation.gotoAndPlay(“next”);

//\_root is the same as \_level0

goodluck!
