InteGeeks

Solutions to make flash video player consecutively play next flash video


Go Back   InteGeeks > Web Development > Flash Actionscript Programming

Follow InteGeeks on qnq.me
Notices


Reply
Thread Tools Display Modes
Old 08-12-2009, 10:00 AM   #1
stephenz
IG Member
 
stephenz's Avatar
 
Join Date: Jun 2009
Posts: 6
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.
__________________
Flash video player design
stephenz is offline   Reply With Quote
Alt Today
Advertising Sponsored Links

Beitrag Sponsored Links

__________________
This advertising will not be shown in this way to registered members.
Register your free account today and become a member on InteGeeks
   
Reply

Bookmarks

Tags
consecutively, flash, flash video player, flv consecutively, flv player, make, play, player, solutions, video


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

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
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Make flash video player for website stephenz Computers/Internet 1 06-10-2009 02:01 AM
New JMicron Flash Controller and NAND Flash May Push SSD Prices into the Mainstream RSS Geeks RSS News 0 05-28-2009 04:46 AM
Mac vs PC Video: It's Not What You Think RSS Geeks RSS News 0 01-15-2009 08:24 PM
A New Dawn for DRM? DECE Promises Buy-Once-Play-Anywhere Video Downloads RSS Geeks RSS News 0 01-14-2009 08:25 AM
Windows Media Player 11 won't play some videos geeks Incompatibilities and Issues 0 11-19-2008 06:47 AM


All times are GMT. The time now is 01:02 PM.

Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Disclaimer: InteGeeks.com does not host any illegal files on its server. InteGeeks.com might links to content provided by it users.