Hi,
I dont download files, but your problem should be an easy fix. If your button has an instance name, you can use frame code to allow it to target a frame label...
Code:
mcInstanceName.onRelease=function(){
_root.gotoAndStop("frameLabel");
}
... if your using object code directly on the button itself...
Code:
on(release){
_root.gotoAndStop("frameLabel");
}
...targeting a frame label inside a movieclip instead of the main timeline..
Code:
on(release){
_root.mcInstanceName.gotoAndStop("frameLabel");
}
hope it helps
NTD
Bookmarks