mmmh, flash!

Out of context: Reply #3

  • Started
  • Last post
  • 10 Responses
  • unknown0

    make a 'controller' blank MC and put this in say frame 5:
    if (_root.up) {
    _root.youtext.scroll += 1;
    } else if (_root.down) {
    _root.yourtext.scroll -= 1;
    }
    gotoAndPlay(1);

    and then this on your down button:

    on (rollOver) {
    _root.down = true;
    }
    on (press, release, releaseOutside, rollOut, dragOut) {
    _root.down = false;
    }

    and this on your up:

    on (rollOver) {
    _root.up = true;
    }
    on (press, release, releaseOutside, rollOut, dragOut) {
    _root.up = false;
    }

View thread