# Mousedown on entire movieclip except one button

**URL:** https://forum.kirupa.com/t/mousedown-on-entire-movieclip-except-one-button/167447
**Category:** flash
**Created:** [October 28, 2005, 8:11am UTC](https://forum.kirupa.com/t/mousedown-on-entire-movieclip-except-one-button/167447 "2005-10-28T08:11:19Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![superprg](https://avatars.discourse-cdn.com/v4/letter/s/858c86/32.png) [@superprg](https://forum.kirupa.com/u/superprg)
#### Post date: [October 28, 2005, 8:11am UTC](https://forum.kirupa.com/t/mousedown-on-entire-movieclip-except-one-button/167447/1 "2005-10-28T08:11:19Z")

</div>

I want that wherever you click on the movie you are redirected to some page but when you click on this button, dont redirect  
How can I achieve it?

This is what I have so far

button action:  
on (release) {  
gotoAndStop(110);  
}

Movie action

onMouseDown=function(){  
getURL(“news.asp”,"\_self");  
};
