# Movieclips acting as buttons

**URL:** https://forum.kirupa.com/t/movieclips-acting-as-buttons/218719
**Category:** flash
**Created:** [March 10, 2007, 12:58am UTC](https://forum.kirupa.com/t/movieclips-acting-as-buttons/218719 "2007-03-10T00:58:39Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Android\_Mouse](https://avatars.discourse-cdn.com/v4/letter/a/7993a0/32.png) [@Android\_Mouse](https://forum.kirupa.com/u/Android_Mouse)
#### Post date: [March 10, 2007, 12:58am UTC](https://forum.kirupa.com/t/movieclips-acting-as-buttons/218719/1 "2007-03-10T00:58:39Z")

</div>

I currently need some movieclips to run some code when released from a mouse click. Currently I have:

```auto
this.onRelease = function(){
	//do something when released
}

```

The problem is I do not want them to recieve the events throughout the duration of the movie. As a result I put this line:

```auto
this.onRelease = 0;

```

once it is no longer wanted or necessary. The problem with this is flash still shows the ‘hand’ cursor icon and not the normal ‘arrow’ cursor icon. How do I get it to show the arrow cursor icon when hovering over these movieclips again? Better yet, is it possible for it to display the arrow cursor icon when hovering over normal buttons and movieclips acting as buttons?

Thanks
