You can copy this in a module:
Sub WaitFor(NumOfSeconds As Long)
Dim SngSec as Long
SngSec=Timer + NumOfSeconds
Do while timer < sngsec
DoEvents
Loop
End sub
and whenever you want to apply the pause write:
Call WaitFor(1)
I hope that helps!