Add a stop() action
When a Flash application loads in Flash Player, it automatically plays in a continuous loop. You use ActionScript to control playhead movement in a Timeline. You will add a stop()
action in the first frame of your application so the user can make an entry in the input text field.
- In the Timeline, with the Input Text layer selected, add a new layer and name it Actions.
- Select Frame 1 of the Actions layer.
- In the Actions panel (Window > Development Panels > Actions), verify that Frame 1 is selected.

- Click in the Script pane of the Actions panel, and type the following comment:
//Stops the playhead at Frame 1
. Press Enter or Return.
- Type
stop()
; to add the stop action.
