Hi all,
I started routinely using Tweenlite.to() static method instead of a Timer by setting a fake target (like 'this') and just putting a onComplete on the tweenvars object.
I dunno if I should, what about the efficiency of that trick?
TweenLite.to(this,2,{onComplete:myFunc});
function myFunc()
{
//My instructions...
}