flash text animation...

Out of context: Reply #13

  • Started
  • Last post
  • 13 Responses
  • lvl_130

    seems fine to me, but use AS if you feel the need. thi should do the trick (old school...i know) put it on your mc:

    onClipEvent(load){
    yDest = this._y;
    speed = 3;
    }

    onClipEvent(enterFrame){
    yDiff = yDest - this._y;
    yMove = yDiff/speed;
    this._y += yMove;
    }

    then this on your 'about' button:
    on (press){
    yourMCname.yDest = 50;
    }
    //the 50 is just the y pos that you need it to move to

View thread