# Targeting problem

**URL:** https://forum.kirupa.com/t/targeting-problem/8295
**Category:** Uncategorized
**Created:** [November 17, 2002, 11:11pm UTC](https://forum.kirupa.com/t/targeting-problem/8295 "2002-11-17T23:11:49Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![tgfx](https://avatars.discourse-cdn.com/v4/letter/t/7c8e57/32.png) [@tgfx](https://forum.kirupa.com/u/tgfx)
#### Post date: [November 17, 2002, 11:11pm UTC](https://forum.kirupa.com/t/targeting-problem/8295/1 "2002-11-17T23:11:49Z")

</div>

hello all.

I’m having problems figuring how to get the playhead to go to the right place. I have a button in a menu movie clip that when pressed, is supposed to go to another movieclip (in the mc the button is in) and play a certain frame. The movieclip I want to go to is basically a mask that also loads images.

I’ve tried

on (release) {  
gotoAndPlay(“bigmask”, 1);  
}

but all that seems to do is go to frame 1 of the current movie.

thanks for any help in advance.

---

<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: [November 18, 2002, 1:59am UTC](https://forum.kirupa.com/t/targeting-problem/8295/2 "2002-11-18T01:59:21Z")

</div>

wow I feel dumb. it turns out the alpha value of the mc was set to 0, so it was going there, I just couldn’t see it.

---

<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: [November 18, 2002, 5:12pm UTC](https://forum.kirupa.com/t/targeting-problem/8295/3 "2002-11-18T17:12:48Z")

</div>

Hmm, if the movie was an MC, use this:

```php
MC.gotoAndPlay(FrameNumber);

```
