chris-ELM
11/4/2013 - 10:43 AM

TweenMax - delayed call example. Function is triggered after 2 seconds

TweenMax - delayed call example. Function is triggered after 2 seconds

import com.greensock.*; 
import com.greensock.easing.*;

function helloWorld(_msg:String){
  trace(_msg);
}

TweenMax.delayedCall(2, helloWorld, ["Word up world"]);