Does same movie reload each time you use loadMovie

On one scene I have a rollover that loads an swf:

on (rollOver) {
loadMovie(“partII.swf”,“stage”);
}

Then in another scene I call the same movie:

loadMovie("partII.swf","stage");

Why does it pause, it seems like it is waiting long enough to load the same swf?

What command should I be using to call up the movie to a target without reloading?

Please help.

RR

I would unload it with the unloadMovie() and then do another loadMovie when needed. works that way for me…JesseH