Hi - I’m new to the forum (and to CS3). I downloaded a piece of script that I applied to my mc and it works great. The only problem is that the link opens in a new window. How do I alter the script so that the url opens in the same window? I did try deleting ,"_blank" from the last bit of code, but it still opens in a new window. Any help would be greatly appreciated!
//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");