Canceling an action for a button on rollout
Ok, im self taught flash so forgive me if im not quite using the lingo, im sure ill be taught how to be hip and down with it soon enough. Anyway, my issue is that i have a basic button, with the following script
PHP Code:
btn1.onRollOver = function () {
this.gotoAndPlay(2);
}
btn1.onRollOut = function () {
this.gotoAndPlay (12)
}
btn1.onReleaseOutside = function () {
this.gotoAndPlay (6)
}
btn1.onPress = function () {
_root.gotoAndStop (1)
}
which all works fine, its just when you skip over the button, it doesn't compleate the OnRollOut function. Now I think this is because it is still trying to compleate the OnRollOver function. Is there any way to get round this or would i be better using a frame reversal technique instead?
if you want a sample i can provide :)
oh yeah, im in flash 8 professional