Skip to main content
Participant
March 17, 2014
Question

How to control the key frame. I need play 15sec only.

  • March 17, 2014
  • 1 reply
  • 247 views

hi,

I need one help for the flash  CS6. How to control the flash file play 15 seconds only. any way there lock the keyframe with in 15 seconds ?

thanks

This topic has been closed for replies.

1 reply

Inspiring
March 17, 2014

if you mean: how can you pause the playhead for 15 seconds:

put this code on a keyframe of your timeline:

stop();

import flash.utils.*;

setTimeout(delayed,15000);

function delayed():void{

//this function will run after 15 seconds

play();

}