New York Design & Development Forums  

Go Back   New York Design & Development Forums > Development > Multimedia Development
Connect with Facebook

Notices

Reply
 
LinkBack Thread Tools
Old 08-12-2009, 05:58 AM   #1 (permalink)
Junior Member
Newb
 
stephenz's Avatar
 
Join Date: Jun 2009
Posts: 5
stephenz is on a distinguished road
Default 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 in web-based flash video player.

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.



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.



Step 3: Press “F9” to bring out the Actions panel and type the following lines of code.
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:



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 Moyea Web Player in 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.

Source is my flash video player blog
stephenz is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit! Stumble this Post!Google Bookmark this Post!Blink this Post!
Reply With Quote
Reply

Tags
flash video player, flv player, play flv consecutively


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Video: Photoshop CS3 Preview danielmichel Website Design & Layout 6 04-28-2010 05:24 AM
Make a Xmas-style FLV player to render Christmas ambience stephenz Tutorials 0 12-23-2009 01:46 AM
Digital Video artists Leo Multimedia Development 11 06-12-2006 01:27 PM
Logo for a Video Company DerekD Reviews 24 05-07-2006 01:02 AM
Video Games Dizaster General Conversation 0 04-23-2006 03:37 PM


All times are GMT -4. The time now is 03:39 AM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13