This article is exactly about the options to play flash videos consecutively.
Option 1. Consecutive playing flash videos with Adobe Flash CS3.
This way is basically used to play flash videos consecutively with a few lines of code. Lets have a look:
Step 1: Open Adobe Flash CS3 and import a FLV file.

Step 2: After inputting, rename the layer1 as Object and create layer2, rename it as Action. On the ActionScript layer, click the dot under the padlock icon. This will lock the ActionScript layer and prevent you from placing objects on it.

import fl.video.*;
var myvideoarray:Array=new Array();
myvideoarray[0] = "video1.flv";
myvideoarray[1] = "video2.flv";
myvideoarray[2] = "video3.flv";
var k:Number = 0;
myvideo.play(myvideoarray[k]);
myvideo.addEventListener(VideoEvent.COMPLETE, loadnext);
function loadnext(myevent:VideoEvent):void {
k++;
if (k>= myvideoarray.length) {
k=0;
}
myvideo.play(myvideoarray[k]);
}
Enlarge picture of code:
Note: Replace video1 video2 video3 with the actual names of FLV files you just input.
Step 4: Save the file in the same folder where you input FLV file at the first beginning.
Step 5: Click Control and then Test Movie from its drop-down menu to preview the effect.

Option 2. Consecutive playing flash videos with Moyea Web Player.
Use playerdiy.com, there are two easy ways to achieve the goal: by interface and by code.
Lets start to show how by interface:
Step 1: Open Moyea Web Player and import flash videos.
Step 2: Click Template tab, then Options, check the box before Auto choose next.

Moyea software just released free FLV players for those who have no web hosting to play flash videos in variety of formats. Just copy the Embeded Code and insert a line of code to make it play flash videos consecutively.
» Level Advanced |
Added: 2009-09-16 Rating: 5.5 Votes: 2 |
» Author |
Stephen is an expert on web multimedia development who concentrated to give you the best solution of FLV player for website - http://www.playerdiy.com/ |
» Download |
Download the files used in this tutorial. |
Download (0 kb) |
» Forums |
More help? Search our boards for quick answers! |