I am using Kirupa’s Complex Button RollOver/RollOut Effects which code is:
[AS]
//stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
}
this.onRelease = function(){
getURL(“http://www.kirupa.com”,"_blank");
}
[/AS]
What I’m trying to do is :
[AS]
this.onRelease = function(){
loadMovie(“mod_version.swf”,this._parent.icon_placeholder);
gotoAndPlay(“3”,1)
};
[/AS]
Is this not correct? any Suggestions? Thanks in advance.