# tellTarget

**URL:** https://forum.kirupa.com/t/telltarget/21652
**Category:** Uncategorized
**Created:** [May 24, 2003, 1:45pm UTC](https://forum.kirupa.com/t/telltarget/21652 "2003-05-24T13:45:12Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![pspecial](https://avatars.discourse-cdn.com/v4/letter/p/3e96dc/32.png) [@pspecial](https://forum.kirupa.com/u/pspecial)
#### Post date: [May 24, 2003, 1:45pm UTC](https://forum.kirupa.com/t/telltarget/21652/1 "2003-05-24T13:45:12Z")

</div>

Just started using MX and learning ActionScript. I finally found an tutorial addressing one of my biggest concerns, how to make a button rollover/rollout target another movieclip using AS. (Before I was just putting an instance of my \_mc on the OVER frame of the button.

The problem is, whe I went to the AS menu, I couldnt find tellTarget anywhere. Later I found out its depricated since v.5

What can I use in MX to substitute for this wonderful function???

---

<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: [May 24, 2003, 3:00pm UTC](https://forum.kirupa.com/t/telltarget/21652/2 "2003-05-24T15:00:00Z")

</div>

instead of tell target

```auto

tellTarget("mcName"){
gotoAndPlay("frame");
}

```

Flash 5 and MX allow for dot-syntax coding, which is much easier to code and understand. Instead of the code above you would use this:

```auto

mcName.gotoAndPlay("frame");

```

---

<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: [May 24, 2003, 3:51pm UTC](https://forum.kirupa.com/t/telltarget/21652/3 "2003-05-24T15:51:49Z")

</div>

Thanks man!

Whadjya do to get banned??

(hopefully not give out bad information)

---

<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: [May 24, 2003, 4:02pm UTC](https://forum.kirupa.com/t/telltarget/21652/4 "2003-05-24T16:02:49Z")

</div>

lol I’m not really banned. I’m a moderator. Thats just my custom title. 🙂 It throws people off a bit. Hell it throws me off sometimes when I 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: [May 24, 2003, 4:51pm UTC](https://forum.kirupa.com/t/telltarget/21652/5 "2003-05-24T16:51:17Z")

</div>

Oh OKAY

Another quick, general Flash question…

Have you ever been able to ‘trick’ a Flash movie?

Example: In the excercise I just did, if I rollout of the button quickly the on(rollout) function fails to send the movie forward. This makes the button look like its ‘stuck’

Also, I built a friend’s website a while back and could never solve the problem of sticking buttons. Although he had an iMac and no other PC had this problem, you can imagine the frustrations we had. They were simple buttons with up and over states that would stay stuck in the over state even after the mouse was rolled out!

Have you ever seen or heard anything like this??

---

<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: [May 29, 2003, 11:01am UTC](https://forum.kirupa.com/t/telltarget/21652/6 "2003-05-29T11:01:11Z")

</div>

Hey Jubba? i’ve got a question for ya. When you use variables as a mc name tellTarget will work, and dot syntax won’t. Why ?
