# Tell target in mx? im stumped

**URL:** https://forum.kirupa.com/t/tell-target-in-mx-im-stumped/4863
**Category:** Uncategorized
**Created:** [August 23, 2002, 2:24am UTC](https://forum.kirupa.com/t/tell-target-in-mx-im-stumped/4863 "2002-08-23T02:24:48Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![vibe\_designer](https://avatars.discourse-cdn.com/v4/letter/v/82dd89/32.png) [@vibe\_designer](https://forum.kirupa.com/u/vibe_designer)
#### Post date: [August 23, 2002, 2:24am UTC](https://forum.kirupa.com/t/tell-target-in-mx-im-stumped/4863/1 "2002-08-23T02:24:48Z")

</div>

How is tell target performed in mx? I tried the method i’ve always used:

on (rollOver) {  
tellTarget ("/rollover") {  
gotoAndPlay (“1text”);  
}  
}  
on (rollOut) {  
tellTarget ("/rollover") {  
gotoAndPlay (“1back”);  
}  
}  
but it doesnt want to work 😕 any help is greatly appreciated.  
-vibe

---

<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, 2002, 3:26am UTC](https://forum.kirupa.com/t/tell-target-in-mx-im-stumped/4863/2 "2002-08-23T03:26:07Z")

</div>

on (rollOver) {  
\_root.mC.gotoAndPlay(frame);  
}

mC = your movie clip instance name  
frame = frame number or label.

I hope this helps:)

---

<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, 2002, 3:55am UTC](https://forum.kirupa.com/t/tell-target-in-mx-im-stumped/4863/3 "2002-08-23T03:55:40Z")

</div>

You might want to check out my 101 tutorials for a little explination on this subject.

[http://www.centerspin.com/tutorial/](http://www.centerspin.com/tutorial/)

---

<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, 2002, 4:00am UTC](https://forum.kirupa.com/t/tell-target-in-mx-im-stumped/4863/4 "2002-08-23T04:00:04Z")

</div>

Hey david, its a confusing open directory, could you maybe specify where it is for vibe? 🙂

---

<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, 2002, 4:11am UTC](https://forum.kirupa.com/t/tell-target-in-mx-im-stumped/4863/5 "2002-08-23T04:11:17Z")

</div>

You’re right… sorry bout that. It’s located here.

[http://www.centerspin.com/tutorial/level1/101page1.htm](http://www.centerspin.com/tutorial/level1/101page1.htm)

I am also currently working on the 201 tuts which will go into more detail in how we direct commands in Flash 5.0 + including addressing dynamic clip names, arrays, and a little on XML nodes. I should have that done by the end of the week end. (though all of my new tuts are done in XML to Flash so that one you’ll have to see at [animation.centerspin.com](http://animation.centerspin.com) rather than in my tutorial folders.

---

<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, 2002, 2:22pm UTC](https://forum.kirupa.com/t/tell-target-in-mx-im-stumped/4863/6 "2002-08-23T14:22:26Z")

</div>

tellTarget has been deprecated, you’d better not use it.

pom :asian:

---

<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, 2002, 4:20pm UTC](https://forum.kirupa.com/t/tell-target-in-mx-im-stumped/4863/7 "2002-08-23T16:20:33Z")

</div>

Yeah, I was told that they got rid of tell target in MX, that is why I sent the code…

on (rollOver) {  
\_root.mC.gotoAndPlay(frame);  
}

because that is what I was told to do instead (by someone on this board, I believe it was Montoya, who is now a mod!).
