Share Posted March 11, 2010 I have a button that initiates a motion tween. The tween lasts one second. During that second the button should not react, e.g. start another tween. How can I disable the button until the tween is completed? Thanks Sven Link to comment Share on other sites More sharing options...
Share Posted March 11, 2010 Assuming it's AS3, you can set mouseEnabled = false right before you start the tween. In the tween specify a onComplete function, sort of like this: TweenLite.to(this, 1, {bla bla bla, onComplete:myCompleteFunction}); On that function just put mouseEnabled = true; That should do it. Link to comment Share on other sites More sharing options...
Share Posted March 12, 2010 Hi thanks what if using actionscript 2? the function is mybutton.enabled = false; right? Link to comment Share on other sites More sharing options...
Share Posted March 12, 2010 Sorry but I'm 100% AS2 blind. You need to check what's the AS2 counterpart of mouseEnabled property. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now