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"]);