bigjimmo
12-17-2002, 01:40 PM
On my home page I have these buttons hidden behide a line, the the mouse goes over them they unfold out, when the mouse moves away they fold in again. This all works fine when the mouse moves over the buttons slowly but if you put the mouse over the button and move it away before the button movie clip has finished, the button gets stuck open. Is there any action script I can add to prevent this.
The Action script I am using at the moment is:-
on (rollOver) {
_root.home_button.gotoAndPlay(2);
_root.Button_Home = "Home";
}
on (rollOut) {
_root.home_button.gotoAndPlay(5);
}
Thanks
Jim
The Action script I am using at the moment is:-
on (rollOver) {
_root.home_button.gotoAndPlay(2);
_root.Button_Home = "Home";
}
on (rollOut) {
_root.home_button.gotoAndPlay(5);
}
Thanks
Jim