Movie clip link

Hi,

What is the script for linking from the _root timeline to a label inside a movie clip?

Thanks

g27

Wrote it a bit wrong. Basically just from the timeline to a a label inside a movie clip!

targetMC.gotoAndStop(“label”);

_root.targetMC.gotoAndStop (“frame label”);

or

_root.targetMC.gotoAndPlay (“frame label”);

if the mc you wanna play is inside another mc and that mc is on the screen then you have to mention the whole path…

_root.firstmc.secondmc.gotoAndPlay(“frame label”);

MAKE SURE YOUR MC’s ARE ALL NAMED OR IT WONT WORK!!!

That’s great - thank you.