Hi guys,
I have the following timeline that I wish to insert into another timeline:
var maintl = new TimelineLite();
var shaketl = new TimelineLite();
shaketl.fromTo(this.phoneImg, 0.08, {scaleX:1, scaleY:1, rotation:4}, {scaleX:1.1, scaleY:1.1, rotation:-4, yoyo:true, repeat:10})
maintl.add(shaketl)
//followed by a few animations here
After which I would like to insert the "shaketl" again restarting it.
How would I accomplish this?
Thanks!