quinu
01-17-2003, 05:08 PM
I am trying to make my movie clip run away as long as the mouse is over it, and stop when the mouse is no longer over the clip. I put an invisible button inside the clip and I wrote the following,
on (rollOver) {
this._x-=10;
_root.next_btn._visible = true;
}
The problem is that it only executes once. How can I make it continuously decrement as long as the mouse is over the clip?
on (rollOver) {
this._x-=10;
_root.next_btn._visible = true;
}
The problem is that it only executes once. How can I make it continuously decrement as long as the mouse is over the clip?