# Movie clip link

**URL:** https://forum.kirupa.com/t/movie-clip-link/261046
**Category:** flash
**Created:** [May 22, 2008, 4:32pm UTC](https://forum.kirupa.com/t/movie-clip-link/261046 "2008-05-22T16:32:19Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![g27](https://avatars.discourse-cdn.com/v4/letter/g/dec6dc/32.png) [@g27](https://forum.kirupa.com/u/g27)
#### Post date: [May 22, 2008, 4:32pm UTC](https://forum.kirupa.com/t/movie-clip-link/261046/1 "2008-05-22T16:32:19Z")

</div>

Hi,

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

Thanks

g27

---

<div class="post-metadata">

### Author: ![g27](https://avatars.discourse-cdn.com/v4/letter/g/dec6dc/32.png) [@g27](https://forum.kirupa.com/u/g27)
#### Post date: [May 22, 2008, 4:33pm UTC](https://forum.kirupa.com/t/movie-clip-link/261046/2 "2008-05-22T16:33:09Z")

</div>

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

---

<div class="post-metadata">

### Author: ![glosrfc](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/glosrfc/32/8334_2.png) [@glosrfc](https://forum.kirupa.com/u/glosrfc)
#### Post date: [May 22, 2008, 4:33pm UTC](https://forum.kirupa.com/t/movie-clip-link/261046/3 "2008-05-22T16:33:58Z")

</div>

targetMC.gotoAndStop(“label”);

---

<div class="post-metadata">

### Author: ![Noahdecoco](https://avatars.discourse-cdn.com/v4/letter/n/5fc32e/32.png) [@Noahdecoco](https://forum.kirupa.com/u/Noahdecoco)
#### Post date: [May 22, 2008, 4:38pm UTC](https://forum.kirupa.com/t/movie-clip-link/261046/4 "2008-05-22T16:38:15Z")

</div>

\_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!!!

---

<div class="post-metadata">

### Author: ![g27](https://avatars.discourse-cdn.com/v4/letter/g/dec6dc/32.png) [@g27](https://forum.kirupa.com/u/g27)
#### Post date: [May 25, 2008, 9:07pm UTC](https://forum.kirupa.com/t/movie-clip-link/261046/5 "2008-05-25T21:07:00Z")

</div>

That’s great - thank you.
