How can I force each segment of TimelineMax to be TweenMax instead of TweenLite as it seems it is happening now.
I have:
var tl:TimelineMax = new TimelineMax();
tl.to(mc, 1, {x:100});
if I check this with
trace ( tl.getActive(false,true,false)[0]; )
I will get TimelineLite.
do I have to do tl.add ( TweenMax.... ) or there is a way to make TweenMax to be default for each addition to TimelineMax if lined with .to, .from, .fromTo ... ?