Jump to content
Search Community

Radetzky

Members
  • Posts

    3
  • Joined

  • Last visited

Radetzky's Achievements

0

Reputation

  1. Hi, I would like that when we press on my movieClip, it comes larger. This is my code can you help me? bloc1.onRelease = function() { TweenLite.to(bloc1, 1, {setSize:{width:600}}); } Greetings, Radetzky
  2. Wow thanks a lot, it's working! You're so good!
  3. Hi everybody First of all, I'm French so sorry if I make some mistake. Ok, so my problem is, I'm using TimelineLite in a small code but I don't know how to make it works. Look at the code, it's very simple. And there's no error at compilation. import com.greensock.*; import com.greensock.easing.*; bloc1._xscale = 0; bloc1._yscale = 0; bloc2._xscale = 0; bloc2._yscale = 0; bloc3._xscale = 0; bloc3._yscale = 0; bloc4._xscale = 0; bloc4._yscale = 0; var timeline:TimelineLite = new TimelineLite(); timeline.insertMultiple( TweenMax.allTo([bloc1, bloc2, bloc3, bloc4], 1, {scaleX:1, scaleY:1}), timeline.duration ); So what I want to do is to hide every bloc and after I want them to appear by increasing their size. Why it's not working? Greetings, Radetzky
×
×
  • Create New...