# ://hide cursor?

**URL:** https://forum.kirupa.com/t/hide-cursor/12500
**Category:** flash
**Created:** [January 31, 2003, 10:03pm UTC](https://forum.kirupa.com/t/hide-cursor/12500 "2003-01-31T22:03:15Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![jayemsee](https://avatars.discourse-cdn.com/v4/letter/j/e9a140/32.png) [@jayemsee](https://forum.kirupa.com/u/jayemsee)
#### Post date: [January 31, 2003, 10:03pm UTC](https://forum.kirupa.com/t/hide-cursor/12500/1 "2003-01-31T22:03:15Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [January 31, 2003, 10:10pm UTC](https://forum.kirupa.com/t/hide-cursor/12500/2 "2003-01-31T22:10:35Z")

</div>

if you are talking mx mouse.hide()

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [January 31, 2003, 10:13pm UTC](https://forum.kirupa.com/t/hide-cursor/12500/3 "2003-01-31T22:13:57Z")

</div>

```auto
on (rollOver) {
	Mouse.hide()
}
on (rollOut) {
	Mouse.show()
}

```

and it’s available since flash 5 **rynoe**
