very good work ! 5*
Posted about 1 month ago
A player that can play YouTube videos, Dailymotion videos or a normal flv .
If the player in the preview doesn’t start please use another link. I have uploaded the player preview again because the video from the first preview was deleted from YouTube .
You can set the paramaters of the player when embending the swf into html or from xml .
The player can be customized by editing the movie clips that in the library in the folder ” Modify to change design ”.
The player extracts the video from YouTube and Dailymotion using only actionScript 2.0 .
Functions of the Video Player:If you whant to know about extracting videos from YouTube and Dailymotion to create your own player visit this blog posts :
http://webcodingtips.blogspot.com/2008/07/get-youtube-videos-with-actionscript-20.html
http://webcodingtips.blogspot.com/2008/07/get-dailymotion-videos-with.html
Tags: video , media , player , youtube , flv , media , full screen , resizable , dailymotion , xml .
Posted about 1 month ago
i know it doesn’t out of the box. what i was asking, is there a way to add script to add a playlist? maybe a next button? or is there just no way to do it?
Posted about 1 month ago
@blemaste yes you can add a script to add a playlist I have done it in my next uploaded flash file. It’s number 3 in the queue for some tie now. I hope they aprove it.
If you want to add a playlist the function that the next button will call must be:
function detURL(media_adress:String); in functions.as
Example: If you have the playlist in an array.
var videoPlaylist:Array = new Array();
var nextVideo:Number = 0;
nextButton.onRelease = function()
{
nextVideo++;
detURL(videoPlaylist[nextVideo]);
}
am i supposed to configure the function code somehow? what goes in here ( ) ? thanks in advance.
Posted about 1 month ago
@blemaste no thas is all the code. The only thing you need to do is to give values to videoPlaylist array
Posted about 1 month ago
dmarius is a good guy! he helped me out alot, and i would recommend buying his Flash Den Products. Thanks dmarius! b