# Go to and play a frame label in external movie

**URL:** https://forum.kirupa.com/t/go-to-and-play-a-frame-label-in-external-movie/15169
**Category:** Uncategorized
**Created:** [March 11, 2003, 1:47pm UTC](https://forum.kirupa.com/t/go-to-and-play-a-frame-label-in-external-movie/15169 "2003-03-11T13:47:02Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Dave](https://avatars.discourse-cdn.com/v4/letter/d/ee7513/32.png) [@Dave](https://forum.kirupa.com/u/Dave)
#### Post date: [March 11, 2003, 1:47pm UTC](https://forum.kirupa.com/t/go-to-and-play-a-frame-label-in-external-movie/15169/1 "2003-03-11T13:47:02Z")

</div>

Hey guys!

I have a main movie that loads an external movie “photo gallery.swf”.

Now in that external you click on a button and it loads a picture into an empty mc called “images”.

Is it possible to have on the photgallery.swf some kind of coding that will load the picture in the mc “images” but into a frame label??

So in other words the external swf will have labels.

And i want it to go to that label when u press a button.

thanks,

:-\

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [March 11, 2003, 6:03pm UTC](https://forum.kirupa.com/t/go-to-and-play-a-frame-label-in-external-movie/15169/2 "2003-03-11T18:03:33Z")

</div>

I don’t think you can load an external movie into a label unless the imageMC is sitting on that frame label, but if all you want is to have the button on the external movie link to a frame label then use a script like this:

```php
on (release) {
	_parent.gotoAndPlay("framelabel");
}

```
