Pause action/ loading swf, not working, please help!

I have a main movie, with a keyframe and an action with this code that another user gave me to pause the frame, and then load an external swf on level one, and it pauses, but doesn’t play or go to and play when the pause should be finished, any ideas?
Here’s the code on the keyframe of the main movie.
stop();
offset = 2;
timerInt = getTimer();
initialTimer = timerInt+offset*1000;
onEnterFrame = function () {
currentTimer = getTimer()-initialTimer;
if (currentTimer>=timerInt) {
play();
}
};

Thanks very very much!!!