Load External Movie & Pause on Frame - AS2 Problem

Hello, Forum;

I’m stumped. I have a display with 10 frames. Each frame loads an external SWF. I need that external SWF to play for ten seconds in each frame before moving on to the next one. The script I’m trying to use is moving to the next frame as expected, but instead of loading & playing the movie, it delays the loading by 10 seconds also. Can’t figure out the fix. This is the script:

stop();
function myfunction() {
clearInterval(myInterval);
play();
movies_mc.loadMovie(“mov_web.swf”);
}
myInterval = setInterval(myfunction, 10000);

Thanks for your help.

Cayce