×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: ActionScript
Posted by: Marco V.
Added: Aug 17, 2012 2:08 PM
Views: 1697
Tags: delay flash
  1. stop();
  2. var my_timedProcess:Number = setTimeout(my_delayedFunction, 3000);
  3. //3000 es el valor en milisegundos
  4. function my_delayedFunction() {
  5.         play();
  6. }