|
Step 1. Create four buttons: a Play button, a Pause button, a Skip to End button, and a Skip to Beginning button.
Step 2. Place your four button instances in a new layer above the layer containing the imported video file

Step 3. Add a third layer, and insert a keyframe at the last frame of the timeline.
Step 4. Label the first keyframe start, and label the last keyframe end

Step 5. Assign actions to all four button instances by selecting them individually and then opening the Actions panel.
Give the Play button these actions:
on (release) {
play();
}
Give the Pause button these actions:
on (release){
stop();
}
Give the Skip to End button these actions:
on (release) {
gotoAndStop(“end”);
}
Give the Skip to Beginning button these actions:
on (release) {
gotoAndStop(“start");
Step 6.Test your movie to see how your custom Flash buttons let you navigate to different spots on the Timeline and control the playback of the video

|