# Load movie

**URL:** https://forum.kirupa.com/t/load-movie/5816
**Category:** Uncategorized
**Created:** [September 22, 2002, 10:13pm UTC](https://forum.kirupa.com/t/load-movie/5816 "2002-09-22T22:13:02Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![twiceborn](https://avatars.discourse-cdn.com/v4/letter/t/aeb1de/32.png) [@twiceborn](https://forum.kirupa.com/u/twiceborn)
#### Post date: [September 22, 2002, 10:13pm UTC](https://forum.kirupa.com/t/load-movie/5816/1 "2002-09-22T22:13:02Z")

</div>

Scene 2 has one frame with a stop action. In that frame there is a movie clip (“menuclip”), with an empty 1st frame, that reveals a series of menu buttons using a mask (with motion). I want to load a movie “movie.swf” upon release of the first revealed button, button “a”, into “emptyclip”.

Action on button “a” is, upon release:  
loadMovie(“movie.swf”), “\_root.emptyclip”;

BTW, “movie.swf” is in the same folder. (used loadMovie successfully in scene one, but those buttons are in frame one, not sitting in a movie clip)

Where do I put the “emptyclip” and what action do I give button “a” to get “movie.swf” to play? Hope I’ve explained this clearly enough… would appreciate any help I can get.

🙂

---

<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: [September 22, 2002, 10:56pm UTC](https://forum.kirupa.com/t/load-movie/5816/2 "2002-09-22T22:56:29Z")

</div>

on (release) {  
loadMovie(“movie.swf”, “\_root.emptyclip”);  
}

should work fine. If emptyclip is on the main time line.

---

<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: [September 22, 2002, 10:57pm UTC](https://forum.kirupa.com/t/load-movie/5816/3 "2002-09-22T22:57:10Z")

</div>

Just make sure you give emptyclip the instance name emptyclip.

on (release) {  
loadMovie(“movie.swf”, “\_root.emptyclip”);  
\_root.emptyclip.play(); \<---- Play it if it’s currently stopped  
}
