Sunday, August 9, 2009

Solutions to make flash video player consecutively play next flash video

If you are watching some TV series or flash videos online, of course you want to watch it one episode after another without interval.
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. Let’s have a look:


Step 1: Open Adobe Flash CS3 and import a FLV file.


import flash video

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.


rename layerStep 3: Press “F9” to bring out the Actions panel and type the following lines of code.

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:

enlarge actionscript 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.


test flash video

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.


Let’s 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”.


Next, we will show you how to implement the above demo by code:


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.

For example: the embeded code is shown below

<script type="text/javascript" src="swfobject.js"></script>
<div id="flashcontent" align="center"></div>
<script type="text/javascript">
var so = new SWFObject('mwplayer.swf','player','500','450','9');
so.addParam('wmode','opaque');
so.addParam('quality','high');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('flashvars','playerOpts=autoChooseNext*true*b');
so.write("flashcontent");
</script>


Note: the flashvars code highlighted in red is the code to make it play flash videos consecutively.

Stumble Upon Toolbar