do you mean wait for a random number of seconds ?
if so last frame of movie clip
time = Math.round(Math.random()*10000)
paused = setInterval(wait,time);
stop();
first frame of movie clip
function wait(){
clearInterval(paused);
gotoAndPlay(1);
}
_______________________________________
You know you're old if you can remember when bacon, eggs and sunshine were good for you