# Load Movie

**URL:** https://forum.kirupa.com/t/load-movie/24705
**Category:** Uncategorized
**Created:** [July 3, 2003, 7:10pm UTC](https://forum.kirupa.com/t/load-movie/24705 "2003-07-03T19:10:52Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![NeoDreamer](https://avatars.discourse-cdn.com/v4/letter/n/ccd318/32.png) [@NeoDreamer](https://forum.kirupa.com/u/NeoDreamer)
#### Post date: [July 3, 2003, 7:10pm UTC](https://forum.kirupa.com/t/load-movie/24705/1 "2003-07-03T19:10:52Z")

</div>

How do you tell flash to load a SWF at x:200 y:300 ?

---

<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: [July 3, 2003, 7:16pm UTC](https://forum.kirupa.com/t/load-movie/24705/2 "2003-07-03T19:16:02Z")

</div>

[AS]//create empty clip to load to  
this.createEmptyMovieClip(“container”, 10000);  
//position empty clip  
container.\_x = 200;  
container.\_y = 300;  
//load movie  
container.loadMovie(“movieName.swf”);[/AS]

I created the container clip on level 10000 as a precaution (don’t want to overwrite any clips by accident ;))

That’s one example of doing it. You could manually create and position the clip on the stage. Of you could manually create the clip on the stage and position it via AS. Or you could use loadMovieNum where you have to wait for the movie to fully load to be able to adjust the position of the level.
