# \[fmx\] loadMovie/scene problem

**URL:** https://forum.kirupa.com/t/fmx-loadmovie-scene-problem/119683
**Category:** Uncategorized
**Created:** [August 17, 2004, 10:29am UTC](https://forum.kirupa.com/t/fmx-loadmovie-scene-problem/119683 "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/119683/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: ![ViNc3](https://avatars.discourse-cdn.com/v4/letter/v/b487fb/32.png) [@ViNc3](https://forum.kirupa.com/u/ViNc3)
#### Post date: [August 17, 2004, 11:03am UTC](https://forum.kirupa.com/t/fmx-loadmovie-scene-problem/119683/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

```
