# A problem playing movie after loading

**URL:** https://forum.kirupa.com/t/a-problem-playing-movie-after-loading/251481
**Category:** Uncategorized
**Created:** [February 8, 2008, 9:45pm UTC](https://forum.kirupa.com/t/a-problem-playing-movie-after-loading/251481 "2008-02-08T21:45:36Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Navarone](https://avatars.discourse-cdn.com/v4/letter/n/f9ae1b/32.png) [@Navarone](https://forum.kirupa.com/u/Navarone)
#### Post date: [February 8, 2008, 9:45pm UTC](https://forum.kirupa.com/t/a-problem-playing-movie-after-loading/251481/1 "2008-02-08T21:45:36Z")

</div>

I can get my swf to load but it olny plays for about 1 or 2 seconds and then it’s gone. I can’t seem to figure out why? This is my code and I don’t see anything wrong with it, but maybe somebody else will.

```auto

_global.isLoaded = "False";
//
isLoaded = "True";
if (isLoaded == "True") {
 _root.createEmptyMovieClip("container", 10);
 loadMovie("Westfield_APPLIED.swf", "container");
 container._x = 0;
 container._y = 0;
}
trace(isLoaded); 

```
