how can I get a playlist to load up with media player?![]()
Professional Software Development Tools
how can I get a playlist to load up with media player?![]()
if its wpl or m3u just load it as you would any other file into the media player object. as a playlist is just a text representation of paths to the files in a certain order
Does anyone have a working example of this?
but just loading the playlist into the mp plugin isent enough, you will need to tell the plugin to play the next track when its finished,Code:tbFile = Dialog.FileBrowse(true, "Locate File", _DesktopFolder, "All Files (*.*)|*.*|", "", "dat", false, false); if tbFile[1] ~= "CANCEL" then MediaPlayer.Load("Plugin1", tbFile[1]); end
in mp plugin on finish event put
Code:MediaPlayer.Play("Plugin1");
heres a working example
Last edited by RizlaUK; 02-01-2009 at 11:34 AM.
Open your eyes to Narcissism, Don't let her destroy your life!!
I need about 7 videos listed on a menu to appear as soon as the page loads so that the user doesn't have to search for them of load them from another location, is this possible?![]()
Has anyone got an example of anything like this?![]()