# Rollover Stickyness

**URL:** https://forum.kirupa.com/t/rollover-stickyness/181180
**Category:** flash
**Created:** [March 7, 2006, 4:00am UTC](https://forum.kirupa.com/t/rollover-stickyness/181180 "2006-03-07T04:00:31Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![bigbstanley](https://avatars.discourse-cdn.com/v4/letter/b/977dab/32.png) [@bigbstanley](https://forum.kirupa.com/u/bigbstanley)
#### Post date: [March 7, 2006, 4:00am UTC](https://forum.kirupa.com/t/rollover-stickyness/181180/1 "2006-03-07T04:00:31Z")

</div>

I’ve read through the forums and didn’t find much on this. I created a simple rollover affect using this:

```auto
on (rollOver) {
    this.gotoAndPlay("over");
}
on (rollOut) {
    this.gotoAndPlay("out");
}
on(release) {
    getURL ("http://www.hu.mtu.edu/~bdstanle", _blank)
}

```

However, it works but only if I move my mouse over it slowly. If I go a bit quicker it stays in the hover mode. Non of the buttons are overlapping.

Here’s what I’m talking about: [www.hu.mtu.edu/~bdstanle/header3.swf](http://www.hu.mtu.edu/%7Ebdstanle/header3.swf)  
What can I do?

Thanx in advance.
