# Preloading loadMovie(JPEG-file)

**URL:** https://forum.kirupa.com/t/preloading-loadmovie-jpeg-file/17889
**Category:** flash
**Created:** [April 10, 2003, 1:10pm UTC](https://forum.kirupa.com/t/preloading-loadmovie-jpeg-file/17889 "2003-04-10T13:10:06Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![oscar\_alexander](https://avatars.discourse-cdn.com/v4/letter/o/e5b9ba/32.png) [@oscar\_alexander](https://forum.kirupa.com/u/oscar_alexander)
#### Post date: [April 10, 2003, 1:10pm UTC](https://forum.kirupa.com/t/preloading-loadmovie-jpeg-file/17889/1 "2003-04-10T13:10:06Z")

</div>

I’m loading a JPEG file with the loadMovie() method, is there any way to preload this, or to view the loading progress?

[SIZE=1](note: I quickly browsed through some of the preloading topics here, but none answered this issue.)[/SIZE]

---

<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 10, 2003, 1:25pm UTC](https://forum.kirupa.com/t/preloading-loadmovie-jpeg-file/17889/2 "2003-04-10T13:25:40Z")

</div>

Hi,

```php

this.containerMc.loadMovie("yourImg.jpg");
this.onEnterFrame = function(){
  this.preloadJpg();
}
this.preloadJpg = function(){
   if (containerMc.getBytesLoaded> 10 and containerMc.getBytesLoaded == containerMc.getBytesTotal){
     this.onEnterFrame = undefined;
     this.doWhatEver();
  } else {
     this.displayBar();
  }
}

```

Hope it helps  
cheers

SHO

---

<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 10, 2003, 1:28pm UTC](https://forum.kirupa.com/t/preloading-loadmovie-jpeg-file/17889/3 "2003-04-10T13:28:17Z")

</div>

Thanks!! 🙂

---

<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 10, 2003, 2:36pm UTC](https://forum.kirupa.com/t/preloading-loadmovie-jpeg-file/17889/4 "2003-04-10T14:36:16Z")

</div>

U r welcome:)
