Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 6 of 6
  1. #1
    Join Date
    Jan 2008
    Posts
    19

    how can I get a playlist to load up with media player?

    how can I get a playlist to load up with media player?

  2. #2
    Join Date
    Dec 2007
    Location
    Missouri, United States
    Posts
    476
    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

  3. #3
    Join Date
    Jan 2008
    Posts
    19
    Does anyone have a working example of this?

  4. #4
    Join Date
    May 2006
    Posts
    5,380
    Code:
    tbFile = Dialog.FileBrowse(true, "Locate File", _DesktopFolder, "All Files (*.*)|*.*|", "", "dat", false, false);
    if tbFile[1] ~= "CANCEL" then
    	MediaPlayer.Load("Plugin1", tbFile[1]);
    end
    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,

    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!!

  5. #5
    Join Date
    Jan 2008
    Posts
    19
    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?

  6. #6
    Join Date
    Jan 2008
    Posts
    19
    Has anyone got an example of anything like this?

Similar Threads

  1. PROBLEM: Invalid State Error with the Media Player Object
    By Desmond in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-31-2003, 11:16 AM
  2. Media Player 9.0 Issues in AMS40
    By Brett in forum AutoPlay Media Studio 4.0
    Replies: 0
    Last Post: 01-23-2003, 10:26 AM
  3. INFO: Difference between the Media Player Object and the AVI Object
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-29-2002, 02:15 PM
  4. HOWTO: Make a Media Player Object Go Full Screen
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-23-2002, 11:23 AM
  5. Replies: 0
    Last Post: 10-04-2002, 10:09 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts