i have a MC that has several buttons embeded in it. i would like to know if it is possible to have the main timeline play when you click on one of the buttons. (and if so could you pleas tell me how)
thanx
Hi Krusader,
Yes its possible to play the instance on main timeline by clicking on buttons inside your MC.
script:
buttonOne.onRelease = function() {
_root.gotoAndPlay(n) //here n is the frame number or label u want to play
};
aShIsH
thanx