# tellTarget

**URL:** https://forum.kirupa.com/t/telltarget/2338
**Category:** flash
**Created:** [April 22, 2002, 6:55pm UTC](https://forum.kirupa.com/t/telltarget/2338 "2002-04-22T18:55:18Z")
**Posts on this page:** 3
**Page:** 1

<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: [April 22, 2002, 6:55pm UTC](https://forum.kirupa.com/t/telltarget/2338/1 "2002-04-22T18:55:18Z")

</div>

hey  
i was doing a tellTarget tutorial  
[http://www.kirupa.com/developer/flash5/advroll.asp](http://www.kirupa.com/developer/flash5/advroll.asp)  
and was wondering why do you have to put a “/” (slash)  
before the actual name you are targeting? (for example)  
on (rollOut) {  
tellTarget ("/rollover") { \<---------- what is the point of the slash before the name?  
gotoAndPlay (“1back”);  
}  
}  
thanx!

---

<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: [April 22, 2002, 7:25pm UTC](https://forum.kirupa.com/t/telltarget/2338/2 "2002-04-22T19:25:03Z")

</div>

it depends upon where you are calling the tellTarget from to tell the truth, though in that case I believe it is refering to the timeline which holds the script tellTarget.

for now, just know that you have to do that. Then, go into the Best of Kirupa, and look for posts there about targeting movie clips. the / is actually a left over from Flash 4.0, where as 5.0 uses dot syntax which is a little different. tellTargets work in both 4 and 5 so the slash is left in because it will work no matter what the Flash plugin version the viewer has.

---

<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: [April 22, 2002, 7:31pm UTC](https://forum.kirupa.com/t/telltarget/2338/3 "2002-04-22T19:31:36Z")

</div>

thanx!
