I want to extend the time of the timeline exactly in the current item, but without pausing, just extend the total duration.
When I use myTimeline.totalDuration ( myTimeline.totalDuration () + 10 ) not works.
The timeline continues with the current duration...
My example code:
trace(myTimeline.totalDuration()); //20
myTimeline.totalDuration( myTimeline.totalDuration() + 10 );
trace(myTimeline.totalDuration()); //20
//the final result should be 30... not?