Jump to content
Search Community

din_rocks

Members
  • Posts

    3
  • Joined

  • Last visited

din_rocks's Achievements

0

Reputation

  1. Hi, I am a fan of GS-AS, now i am very much impressed with GS JS.. i want to create a handwriting effect .. is it possible to achieve the task with GS JS ? Is there any online examples.. Please let me know.. thanks in advance.
  2. Hi all I want to add a tween before (middle) the previous tween finishes, how can i achieve this ?? thanks in advance intro.x = 162.25; intro.y = 140; intro.alpha = 0; intro.rotation = +90; txt_1.alpha = 0; var timeline:TimelineLite = new TimelineLite(); timeline.append( new TweenLite(intro, 1, {alpha:1}) ); timeline.append( new TweenLite(intro, 1, {rotation:"-90", ease:Elastic.easeOut}) ); timeline.append(new TweenLite(intro,1,{alpha:0,delay:.2})); timeline.append( new TweenLite(txt_1, 1, {scaleX:8,alpha:1,scaleY:5}) ); timeline.append( new TweenLite(txt_1, .2, {scaleX:16,alpha:0,scaleY:10})); ---------------------here i want to fade out the txt_1 before it finishes the previous tween(scaleY).. thanks.
×
×
  • Create New...