[fmx] loadMovie/scene problem

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

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

And on that frame in that scene add

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