AS2 Help with a timed pause or delay within code

I was wondering if anyone could help. I’m using this piece of code from a panning source file uploaded to this site while back. I’ve tried to change the code so that after you press the button the movie will slide to a certain point ( 100,100 ) and then the movie will start its motion again ( nMC.startMotion() ) the problem is it doesn’t have time to move to the position before the movieclip startmotion code kicks in. So basically i need some kind of delay in the code! Is this possible? Would really appreciate any help or suggestions.

img.b3.onRelease = function() {
nMC.slideToPoint(100,100); [COLOR=“Red”]I need a delay here[/COLOR]; nMC.startMotion()

}

Ta

Tris