Is there a way to change the default action in the button?
This is what i have:
ActionScript Code:
on(press){
getURL(this.link, _self);
}
on(rollOver){
this._parent.gotoAndPlay("o");
}
on(rollOut){
this._parent.gotoAndPlay("t");
}
when a person clicks on it it goes to a new page, now what i need this button to do isa change to this.
ActionScript Code:
on(press){
getURL(this.link, _self);
}
on(rollOver){
this._parent.gotoAndPlay("o");
}
on(rollOut){
this._parent.gotoAndPlay("o");
}
is there a way to do this?
my function is this in Frame 1
ActionScript Code:
function secondFrame(myPath, myParent) {
if (myParent.page == myPath._name) {
myPath.gotoAndPlay("o");
myPath.button._visible = true;
myParent.headers.gotoAndPlay(myPath._name);
}
}