|
Easy to integrated xml controled Youtube playlist player for your flash website or a regular web page (just insert the .swf file.
In the flash file you will find the source just copy and paste the key frames and action frames into the main time line of you flash file.
You can set the position of the player and the play list by moving the grey blocks around on stage.
The fla file is written in AS2 flash CS3.
To edit the source file you will need flash CS3 or higher
To remove the youtube player from your site you can use the following code (on a button or in the time line)
on (release) {
this.ytplayer.destroy();
delete this.ytplayer;
}
In the time line
this.ytplayer.destroy();
delete this.ytplayer;

To insert the clips from youtube you have to edit the ytmenu.xml file.
You can open it in a text editor
In the xml file you will find the following code.
<?xml version="1.0"?>
<menu name="example">
<item name="example 1" action="message" variables="http://www.youtube.com/watch?v=Wo85qZm-uk"/>
<item name="example 2" action="message" variables="http://www.youtube.com/watch?v=MEuTa6Grjgo"/>
<item name="example 3" action="message" variables="http://www.youtube.com/watch?v=onBgmbh-u8"/>
</menu>
Just take the youtube url
http://www.youtube.com/watch?v=Wo85qZm-Zuk
Past it in between the " " signs
<item name="example 1" action="message" variables="http://www.youtube.com/watch?v=Wo85qZm-Zuk"/>
To chance the label on the button chance the example 1
<item name="example 1" action="message" variables="http://www.youtube.com/v/Wo85qZm-Zuk"/>
Make sure that you upload ytmenu.xml in the same folder as your swf file on the server.

Regular License allows you to use the purchased file in all custom projects, made for yourself or a client.
You will not be able to : re-sell the files, distribute them
|