Jump to content
Search Community

ziociro

Members
  • Posts

    15
  • Joined

  • Last visited

Posts posted by ziociro

  1. sorry, i'm trying and searching in forum but... nothing! i've a mc1, mc2, mcX that appear with

     

    timeline.append( new TweenLite(mc1, enter, {alpha:1}) );
    timeline.append( new TweenLite(mc2, enter, {alpha:1}) );
    timeline.append( new TweenLite(mcX, enter, {alpha:1}) );
    

    @ the end of this need to start a little animation (stopped in timeline with)

    mc_animation.stop;
    

    and here there isn't problem...

     

    searching help, in http://www.greensock.com/as/docs/tween/_timelinelite.html i've found: "...myTimeline.gotoAndPlay("myLabel") will skip to wherever "myLabel" is"

    so i've try to:

    1) add label "go" in the "mc_animation" timeline

    2) in parent timeline add

    timeline.gotoAndPlay("go")

    publishing don't give error but... simply... mc_animation. DON'T START!!!

    where i wrong? :oops::oops::oops:

     

    ...tnx... :)

  2. hi, for first happy new year to everybody! :)

    there's a "myBtn_left" that move for every click another mc "myMc":

     

    myBtn_left.addEventListener(MouseEvent.CLICK, moveleft); //<---tried wit CLICK, MOUSE_UP, MOUSE_DOWN, nothing function! 
    function moveleft(e:MouseEvent):void{
    TweenLite.to(myMc, 1, {myMc.x - myMc.nmbr_1.width, ease:Sine.easeOut});
    }

     

    i need an exact step for move "myMc", but if click really fast the mouse, this don't happen and seems like something's wrong on tweenlite... but... what's really wrong?

    tnx!!! :roll:

×
×
  • Create New...