PDA

View Full Version : ://hide cursor?



jayemsee
January 31st, 2003, 05:03 PM
is it possible to hide the cursor upon entering a frame. i know you can hide the cursor when you use a custom cursor hideCursor=true but what about like .....
if you have a button and on the over state you have a movie,
upon entering the movie the cursor hides?
jayemsee

rynoe
January 31st, 2003, 05:10 PM
if you are talking mx mouse.hide()

kode
January 31st, 2003, 05:13 PM
on (rollOver) {
Mouse.hide()
}
on (rollOut) {
Mouse.show()
}

and it's available since flash 5 rynoe