# How do u do this?

**URL:** https://forum.kirupa.com/t/how-do-u-do-this/65962
**Category:** Uncategorized
**Created:** [September 30, 2004, 11:33pm UTC](https://forum.kirupa.com/t/how-do-u-do-this/65962 "2004-09-30T23:33:29Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Matt1](https://avatars.discourse-cdn.com/v4/letter/m/b782af/32.png) [@Matt1](https://forum.kirupa.com/u/Matt1)
#### Post date: [September 30, 2004, 11:33pm UTC](https://forum.kirupa.com/t/how-do-u-do-this/65962/1 "2004-09-30T23:33:29Z")

</div>

ok look:

[http://www.guidone.com/matt/test.swf](http://www.guidone.com/matt/test.swf)

see how when u rollover it starts changing colors and when u rolloff it flips straight back to normal?

well how do the people make it so when u hover over for so long and its not dont going through it goes back? instead of flipping back?

thx if anyone knows how…

---

<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: [October 1, 2004, 3:53am UTC](https://forum.kirupa.com/t/how-do-u-do-this/65962/2 "2004-10-01T03:53:39Z")

</div>

what the heck nobody knows how??? :h:

---

<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: [October 1, 2004, 4:08am UTC](https://forum.kirupa.com/t/how-do-u-do-this/65962/3 "2004-10-01T04:08:11Z")

</div>

[http://www.kirupa.com/developer/flash5/advroll.htm](http://www.kirupa.com/developer/flash5/advroll.htm)

---

<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: [October 1, 2004, 8:34am UTC](https://forum.kirupa.com/t/how-do-u-do-this/65962/4 "2004-10-01T08:34:03Z")

</div>

I don’t think that’s what you mean, is it?!  
…  
Make a movie clip with the animation of the button in it. When you roll the mouse over it plays and when you roll the mouse out, you can use a script like this on the mc:

onClipEvent (enterFrame) {  
if (\_root.mouseOutCheck == true) {  
this.prevFrame();  
}  
}

…remember to create the variable: \_rrot.mouseOutCheck and assign the ‘true’ value when the mouse rools out.

---

<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: [October 1, 2004, 12:39pm UTC](https://forum.kirupa.com/t/how-do-u-do-this/65962/5 "2004-10-01T12:39:40Z")

</div>

You can also just put a the fading animation in the rollover state of a button.
