# Mouse hide

**URL:** https://forum.kirupa.com/t/mouse-hide/5950
**Category:** Uncategorized
**Created:** [September 26, 2002, 11:57am UTC](https://forum.kirupa.com/t/mouse-hide/5950 "2002-09-26T11:57:38Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Ryan](https://avatars.discourse-cdn.com/v4/letter/r/a8b319/32.png) [@Ryan](https://forum.kirupa.com/u/Ryan)
#### Post date: [September 26, 2002, 11:57am UTC](https://forum.kirupa.com/t/mouse-hide/5950/1 "2002-09-26T11:57:38Z")

</div>

if you only want your mouse to be hid in a certain area in the movie, how would you go about doing so? thanks, if more explination is nessassary just let me know.

=ryan=

---

<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: [September 26, 2002, 12:19pm UTC](https://forum.kirupa.com/t/mouse-hide/5950/2 "2002-09-26T12:19:02Z")

</div>

You’d have to create custom cursor to make that work, I think.

pom :asian:

---

<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: [September 26, 2002, 12:32pm UTC](https://forum.kirupa.com/t/mouse-hide/5950/3 "2002-09-26T12:32:40Z")

</div>

thats what i was thinkin, thanks though. its funny i sit here in dissapointment that flash cant do something like that, yet when you look at what you can do with it, its simply amazing.

=ryan=

---

<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: [September 26, 2002, 12:46pm UTC](https://forum.kirupa.com/t/mouse-hide/5950/4 "2002-09-26T12:46:57Z")

</div>

this works:

make a box or whatever shape your area is, and make it’s alpha “0”. make sure the box is a MC too. Then add this code to the box:

on(rollOver){  
Mouse.hide();  
}  
on(rollOut){  
Mouse.show();  
}

Easy… as long as the alpha of the box is 0, u can’t see it! 🙂

no need for custom cursors here…

try it:

[http://www.avalon-rev.dk/hide.swf](http://www.avalon-rev.dk/hide.swf)

I’ve set the alpha to 5 so u can see the box…

---

<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: [September 26, 2002, 12:52pm UTC](https://forum.kirupa.com/t/mouse-hide/5950/5 "2002-09-26T12:52:59Z")

</div>

thank you, that was ever so helpful!!!

=ryan=

---

<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: [September 26, 2002, 12:54pm UTC](https://forum.kirupa.com/t/mouse-hide/5950/6 "2002-09-26T12:54:14Z")

</div>

no problemo! 😛
