PDA

View Full Version : Hide mouse ???



_this
May 6th, 2005, 03:52 PM
i create a rollover action in button...
-------------------------------------------
on (rollOver) {
_root.aboutMe._alpha = 100;
startDrag(_root.aboutMe, true);
}
on (rollOut) {
_root.aboutMe._alpha = 0;
}
---------------------------------------------
ya! but now i want that mouse hide in RollOver and show in RollOut for dont show together the image (aboutMe)
the command is mouse.hide(true) ? mouse.show(true) or mouse.hide(false)

plix help Me....
:D

fasterthanlight™
May 6th, 2005, 04:06 PM
on (rollOver) {
Mouse.hide();
_root.aboutMe._alpha = 100;
startDrag(_root.aboutMe, true);
}
on (rollOut) {
Mouse.show();
_root.aboutMe._alpha = 0;
}

**Note the capital M**

_this
May 6th, 2005, 04:14 PM
thks_