Knowledge Base |
Advanced MP3 Player V1
(views: 10069)
Flash Advanced MP3 Player component is a skinable flash component that allows you to play streaming (it starts playing while the file is being downloaded) mp3 files (fed by xml file playlist) in any web page, and displays the id3 v2 data stored in the files
Change the playlist by pressing a button
(2007-07-23 - views: 3623)
Q: How can I have multiple playlists and change them when I press on different buttons.
A: You can use the actionscript below:
myButton.onRelease=function(){
mp3PlayerInstanceName.xmlPlaylist="newPlaylist.xml";
}
The same for all your other buttons.
Good luck.
myButton.onRelease=function(){
mp3PlayerInstanceName.xmlPlaylist="newPlaylist.xml";
}
The same for all your other buttons.
Good luck.
User Comments
Read Playlist xmlNodes
posted by wisguy on 2008-03-08
How can I access the playlist nodes parameters? (I.E. <song title, <song img_name, <song img_path) and can I add other information to the xml playlist to be read by the component?
Access XML playlist
posted by negush on 2008-03-11
You can have access to the XML playlist right after it has been loaded (onXmlLoaded event). In the event handler you can use myPlayer.songs to have access to the XML object.
Stop mp3
posted by kiruba on 2008-06-20
how cn i stop mp3 while playing
Stop mp3
posted by negush on 2008-06-23
Just call the playerStop() method of the component. Please see the component's documentation for more properties and methods.
Login to post your comment









