Moving frames in time with audio

I’m putting together book in Flash. The audio starts with frame 2 but the naritive continues on frame 3 and 4.

I can code a “next” button like so:


on (release) {
    gotoAndStop(3);
}
on (press) {
  stopallsounds();}

But i’d rather move to the next frame after a set period of time

Is it possible to have code to move to the next frame after a certain ammount of time instead of a button??