Funny, in one swf this comes out as “this script contains no errors”.
In another swf, it’s endless “Statement must appear within on/onClipEvent handler” error messages. Anyone want to take a stab at as to why?
this.onEnterFrame = function(){
this._parent.container_mc.myTextFieldInstance.html = true;
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
this._parent.attachMovie(“bigPeacock”,“this._parent.picbox_mc”, 1);
this._parent.container_mc.myTextFieldInstance.text = “About Us, Contact us”;
rewind = false;
play();
}
this.onRollOut = function(){
this._parent.attachMovie(“clear”,“this._parent.picbox_mc”, 1);
rewind = true;
_parent.container_mc.myTextFieldInstance.text = " "
}
this.onRelease = function(){
gotoandplay(50);
}
stop();