Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking for a way to programmatically dissassoicate the click handler function from a button on my mxml component through actionscript code.

Something like what older actionscript let you do,

mybutton.click = null;

Thanks in advance

share|improve this question

2 Answers

up vote 5 down vote accepted

If you have the function that was registered as the listener:

mybutton.removeEventListener( 'click', theFunction );

If you don't... well, consider reorganizing the code? You might also be able to add another handler something like this:

mybutton.addEventListener( 'click', function( e:Event ):void {
  e.stopImmediatePropagation();
  return false;
}, false, 1 );

Which might prevent further handlers from running (the 1 at the end is the priority)... Hard to say sometimes with flex.

share|improve this answer
Thanks thenduks, that is exactly what I was looking for. – Jason W Dec 31 '09 at 13:54
Glad to be able to help Jason. – rfunduk Dec 31 '09 at 14:37

Not sure if I understand this correctly, but you can remove an event listener or better yet not add one for the click event at all.

In case you are trying to "disable" clicks without disabling the button, you might just want to use the same skin for the various click states of the button so there won't be any visual indication of a click.

HTH, Sri

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.