Announcement

Collapse
No announcement yet.

Sequential Files ?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Sequential Files ?

    I am trying to modify the DVDs plug-in, so that it might play Video files stored on my hard drive in DivX format. However, I am running into just a bit of a problem. How does one force Windows Media Player to play sequential files ? For example, I want to play the files CastAway.avi & Castaway2.avi sequentially in media player....

    Right now, in the VR script for DVDS plug in, DvdsVRwatch.txt
    this is the code :

    if FSO.FileExists(FilePath) Then
    hs.launch FilePath
    exit do

    this won't work...

    if FSO.FileExists(FilePath) Then
    hs.launch FilePath:filepath2
    exit do

    What WILL work ?

    Thanx !

    #2
    Could you put them into a playlist?

    Comment


      #3
      Not even sure how that is done under VB script, but I am sure I could work my way through it....But, for movies I have, some of them are 3 & 4 part, the coding could get extremely involved, would it not ? Don't know, I have never worked with playlists before....

      Can you point me in that direction ? What is the command that puts togeter a playlist for WM player, and how does one execute it using the VB script:

      if FSO.FileExists(FilePath) Then
      hs.launch FilePath
      exit do


      Would one just use this ?

      if FSO.FileExists(FilePath) Then
      hs.launch Playlist
      exit do

      Thanx !

      Comment

      Working...
      X