# Loading movies without immeadiatly playing them

**URL:** https://forum.kirupa.com/t/loading-movies-without-immeadiatly-playing-them/135954
**Category:** Uncategorized
**Created:** [February 1, 2005, 4:27am UTC](https://forum.kirupa.com/t/loading-movies-without-immeadiatly-playing-them/135954 "2005-02-01T04:27:10Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![PlyWooD](https://avatars.discourse-cdn.com/v4/letter/p/b9e5f3/32.png) [@PlyWooD](https://forum.kirupa.com/u/PlyWooD)
#### Post date: [February 1, 2005, 4:27am UTC](https://forum.kirupa.com/t/loading-movies-without-immeadiatly-playing-them/135954/1 "2005-02-01T04:27:10Z")

</div>

Hi,

I have managed to load a swf from a file in my movie, but it always seems to play immeadiatly after it loads. Is there any way to get it to stop?

This is similiar to the code I have tried(there has been several variations):

```auto

this.onLoad = function () {
 
_root.createEmptyMovieClip("myMovie",1);
_root.loadMovie("one.swf", _root.myMovie);
 
}
 
this.onEnterFrame = function () {
 
_root.myMovie.stop();
_root.myMovie.hide();
 
stop();
}

```

Does anyone know how to do this(or point me in the right direction)?

Any help would be greatly appreciated!

Thanks!
