I boggled with this simple script.
[font=verdana, arial, helvetica][size=2]This script is on the MC. Everything works except the last onRelase function which just won’t go to “disable”. If I change “disable” to “fadein” it will work. Please see the attached timeline pic to get better idea and please do let me know what I’m doing wrong.
onClipEvent (enterFrame) {
_root.navbtns_mc.webnav.onRollOver= function() {
webnav.gotoAndPlay (“fadein”);
}
_root.navbtns_mc.webnav.onRollOut = function() {
webnav.gotoAndPlay (“fadeout”);
}
_root.navbtns_mc.webnav.onRelease = function() {
webnav.gotoAndStop(“disable”);
}
}[/size][/font]