Filed under: mercebank.com
stop();
bio_btn.onRelease = function(){
gotoAndStop(100);
}
which I found in a tutorial and neither work.
I tried both 100 and "biography" which is the name of the frame. NEITHER work.
bio_btn is what I called the button instance
Please help. This is ridiculous.
thanks
I'll try what you posted. thanks :)
try this options ...
stop();
bio_btn.onRelease = function(){
this.gotoAndStop(100);
}
stop();
bio_btn.onRelease = function(){
_parent.gotoAndStop(100);
}
stop();
bio_btn.onRelease = function(){
_root.gotoAndStop(100);
}
#If you have any other info about this subject , Please add it free.# |