# Flash controlling movieclip

**URL:** https://forum.kirupa.com/t/flash-controlling-movieclip/5884
**Category:** Uncategorized
**Created:** [September 24, 2002, 10:28pm UTC](https://forum.kirupa.com/t/flash-controlling-movieclip/5884 "2002-09-24T22:28:51Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![asalwal](https://avatars.discourse-cdn.com/v4/letter/a/7ab992/32.png) [@asalwal](https://forum.kirupa.com/u/asalwal)
#### Post date: [September 24, 2002, 10:28pm UTC](https://forum.kirupa.com/t/flash-controlling-movieclip/5884/1 "2002-09-24T22:28:51Z")

</div>

I have 3 buttons lined up that when rolled over, I want an outline i created to move to that button…so if you roll over the button, it moves there and then stays there on rollout. Then, if you roll over a second button, I want the outline to move from wherever it was before…to the current button. What would be the best way to do that?

any ideas?

---

<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: [September 25, 2002, 3:34am UTC](https://forum.kirupa.com/t/flash-controlling-movieclip/5884/2 "2002-09-25T03:34:49Z")

</div>

Hello:  
Use

on (release) {  
\_root.yourMCinstanceName.gotoAndPlay(1);  
}

or

on (release){  
tellTarget(“yourMCinstanceName”){  
gotoAndPlay(1);  
}  
}

if your not sure what name you gave your instance click on the target on your bottom right corner and it will tell you where your target is. You change release to rollover, rollOut, ,etc. Hope it 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: [September 25, 2002, 3:39am UTC](https://forum.kirupa.com/t/flash-controlling-movieclip/5884/3 "2002-09-25T03:39:05Z")

</div>

Can be done - but be more specific when you say an outline you did. What exactly do you want to move under/over/above the buttons.
