ANOTHER flash urgency

Out of context: Reply #4

  • Started
  • Last post
  • 4 Responses
  • Mojo0

    From flash help:

    Do one of the following:
    Use the Text tool to drag a text field on the Stage. Assign the text field the instance name textField in the Property inspector.
    Use ActionScript to create a text field dynamically with the MovieClip.createTextField() method. Assign the text field the instance name textField as a parameter of the method.
    Create an Up button and a Down button, or select Window > Other Panels > Common Libraries > Buttons and drag buttons to the Stage.
    You will use these buttons to scroll the text up and down.

    Select the Down button on the Stage.
    In the Actions panel (Window > Development Panels > Actions), enter the following code to scroll the text down in the text field:
    on(press) {
    textField.scroll += 1;
    }

    Select the Up button on the Stage.
    In the Actions panel, enter the following code to scroll the text up:
    on(press) {
    textField.scroll += 1;
    }

    Ive done that over and over and over. It just wont work.

View thread