# Controlling a movie loaded with loadMovie()

**URL:** https://forum.kirupa.com/t/controlling-a-movie-loaded-with-loadmovie/2213
**Category:** Uncategorized
**Created:** [April 13, 2002, 3:21am UTC](https://forum.kirupa.com/t/controlling-a-movie-loaded-with-loadmovie/2213 "2002-04-13T03:21:53Z")
**Posts on this page:** 3
**Page:** 1

<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: [April 13, 2002, 3:21am UTC](https://forum.kirupa.com/t/controlling-a-movie-loaded-with-loadmovie/2213/1 "2002-04-13T03:21:53Z")

</div>

Hey, guys! Stumped again. I am trying to load an external .swf file into a clip instance, so that I can move/resize/etc. with AS. First, I make a new movie symbol called “logo” in my main timeline. Then, I use:

logo.loadMovie(“myfile.swf”);

That doesn’t seem to work. I guess my REAL question is: how do you load an external .swf so that you can tweak it with AS?

THANKS!!!

Shannon

---

<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: [April 13, 2002, 5:51am UTC](https://forum.kirupa.com/t/controlling-a-movie-loaded-with-loadmovie/2213/2 "2002-04-13T05:51:48Z")

</div>

the syntax is  
loadMovie(url,target,method);

the method is post or get, but you can leave it out and simply put

loadMovie(“myExternalSwf.swf”, \_root.myMovieClip);

---

<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: [May 10, 2002, 3:53pm UTC](https://forum.kirupa.com/t/controlling-a-movie-loaded-with-loadmovie/2213/3 "2002-05-10T15:53:16Z")

</div>

or when you build the external .swf tell your actions to look at \_level0 then it won’t jack with you \_root
