OnRelease in MX?
OnRelease in MX?
- Started
- Last post
- 5 Responses
- ♣
Am I blind or have they redone or killed the On MouseOver Event action in the new Flash?
I used to be able to select the action On MouseOver (set to release) and then GoTo Scene play/stop etc.
Do you have to go about it differently in the new version?
thanks.
- ♣0
knock, knock.
- unfittoprint0
button.onMouseOver = function(){
gotoAndStop(1);
}something like this?
- unfittoprint0
oops, deprecated....
button.onRollOver = function(){
gotoAndStop(1);
}
- connerd0
why aren't you just using on()'s attached to the buttons?
on(release) {
gotoAndStop(1);
}on(rollOut) {
etc
}
- quik0
because the method unfit posted is OOP