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
if you are talking mx mouse.hide()
on (rollOver) {
Mouse.hide()
}
on (rollOut) {
Mouse.show()
}
and it’s available since flash 5 rynoe