# \[fmx\] loadMovie/scene problem

**URL:** https://forum.kirupa.com/t/fmx-loadmovie-scene-problem/61264
**Category:** flash
**Created:** [August 17, 2004, 10:29am UTC](https://forum.kirupa.com/t/fmx-loadmovie-scene-problem/61264 "2004-08-17T10:29:07Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Uberhogg](https://avatars.discourse-cdn.com/v4/letter/u/c4cdca/32.png) [@Uberhogg](https://forum.kirupa.com/u/Uberhogg)
#### Post date: [August 17, 2004, 10:29am UTC](https://forum.kirupa.com/t/fmx-loadmovie-scene-problem/61264/1 "2004-08-17T10:29:07Z")

</div>

Howdy,

I’ve got a script that once a button is clicked it loads an external SWF on level 0. However, I need to go to a specific scene in the SWF. I’ve searched the usual ie Flash Kit with no luck! :h:

Here’s what I’ve got

[COLOR=Sienna]on (release) {  
loadMovieNum(“CRM\_1.swf”, 0, “GET”);  
}[/COLOR]

What script do I need to add and where?

Many 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: [August 17, 2004, 11:03am UTC](https://forum.kirupa.com/t/fmx-loadmovie-scene-problem/61264/2 "2004-08-17T11:03:50Z")

</div>

```php
  
on (release) {
	gotoAndPlay("sceneName", 1)
	//1 is the frame number on the scene
}

```

And on that frame in that scene add

```php
  
loadMovie ("CRM_1", 0)
//I don't think you need GET

```
