Flash CS4 Button UI Component

Flash CS4 Button UI Component
In the last tutorial, we added the stop code that will stop our FlashR ecard from repeating after the first pass through the Timeline. Now we will add a “Replay” button that will put the playback control in the hands of the viewer. Once the ecard animation comes to a stop, it will be the viewer that will cause the movie to replay by clicking on this button.

We can create this button by coding ActionScript that will draw a button on the stage for us. But for this tutoiral, we will use the built-in button UI component. We will start working on the last frame of the Timeline. Open your ecard into Flash CS4.

  1. Add a new layer just under the Actions layer. Name this new layer “Replay”. We will use this layer to hold our button.

  2. Add a Keyframe on Frame 105 of the Replay layer. This will insure that the button isn’t visible until this last frame.

  3. Open the Components panel (Window – Components). This panel has two sections, the User Interface and Video sections. The button component is in the User Interface section. Click and drag an instance of the button component onto the stage just under the text.

  4. Select the button. In the Properties panel, give the button an Instance Name of “Replay”.

  5. Open the Component Inspector panel (Window – Component Inspector). We use this panel to set the values for the parameters of our button component. The Label parameter controls the text on the top of our button. Right now, it says “Label” on the button because the value for the Label parameter is set to “Label’ . Let’s change the value of this parameter to “Replay”. You should see the text on the button change from “Label” to “Replay”.

    If we test the ecard now, nothing happens when we click the Replay button. That’s because we still need to add a behavior to the button.

  6. Click on the last frame of the Actions layer and open the Actions panel. After the stop(); code, add the code below. This code tells Flash to listen for a mouse click on the Replay button. When there is a mouse click, Flash carries out the replayMovie function. This function has only one line of code that tells Flash to go back to Frame 1 and play the movie.

    Replay.addEventListener(MouseEvent.CLICK, replayMovie);
    function replayMovie(evt)
    {
    gotoAndPlay(1);
    }

Copyright 2018 Adobe Systems Incorporated. All rights reserved. Adobe product screen shot(s) reprinted with permission from Adobe Systems Incorporated. Adobe, Photoshop, Photoshop Album, Photoshop Elements, Illustrator, InDesign, GoLive, Acrobat, Cue, Premiere Pro, Premiere Elements, Bridge, After Effects, InCopy, Dreamweaver, Flash, ActionScript, Fireworks, Contribute, Captivate, Flash Catalyst and Flash Paper is/are either [a] registered trademark[s] or a trademark[s] of Adobe Systems Incorporated in the United States and/or other countries.





RSS
Related Articles
Editor's Picks Articles
Top Ten Articles
Previous Features
Site Map








Content copyright © 2023 by Diane Cipollo. All rights reserved.
This content was written by Diane Cipollo. If you wish to use this content in any manner, you need written permission. Contact Diane Cipollo for details.