# Question about loadMovieNum and caching

**URL:** https://forum.kirupa.com/t/question-about-loadmovienum-and-caching/118264
**Category:** Uncategorized
**Created:** [August 4, 2004, 2:48am UTC](https://forum.kirupa.com/t/question-about-loadmovienum-and-caching/118264 "2004-08-04T02:48:38Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mgomez03](https://avatars.discourse-cdn.com/v4/letter/m/8edcca/32.png) [@mgomez03](https://forum.kirupa.com/u/mgomez03)
#### Post date: [August 4, 2004, 2:48am UTC](https://forum.kirupa.com/t/question-about-loadmovienum-and-caching/118264/1 "2004-08-04T02:48:38Z")

</div>

say you have two buttons: the first button loads movie A.swf on level 2, the second button loads B.swf also on level 2. if i understand correctly, one movie will be kicked-out in the favor of the other because they’re on the same level right? now, let’s say both A.swf & B.swf have super simple preloaders that just have static text that say “loading” in frame 1:

```auto
if (_framesloaded>=_totalframes) {
	gotoAndPlay (2);
} else {
	gotoAndPlay (1);
}

```

my question is, whenever a movie is kicked-out, does it disappear from the cache as well? i ask because i don’t want their preloaders to keep appearing everytime the two movies switch between each other.
