Playlist for Streaming ? Please help.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • hidt
    Forum Member
    • Jan 2006
    • 4

    Playlist for Streaming ? Please help.

    Hello can everybody help me ?
    How i can i make a playlist for streaming files ? ( mms )

    How can i make this with Listbox ?

    Item Text : NewsTV
    Item Data : mms://xxx.xxx/xxx ????

    MediaPlayer.Load("Plugin1", "mms://xxxx.xxx");

    Please Help me.
  • bobbie
    Forum Member
    • Feb 2005
    • 770

    #2
    On-Double-click

    tblGetSel = ListBox.GetSelected("ListBox1");
    strGetDat = ListBox.GetItemData("ListBox1", tblGetSel[1]);
    MediaPlayer.Load(strGetDat, "", );

    ````````
    Item Text : NewsTV
    Item Data : MediaPlayer.Load("mms://xxx.xxx/xxx");

    Think that is right.

    Comment

    • hidt
      Forum Member
      • Jan 2006
      • 4

      #3
      Thx, but don`t work.. :(


      I have use this now.
      This code works
      Code:
      selected = ListBox.IsItemSelected("ListBox1", 1);
      if selected then
      MediaPlayer.Load("Media_Player", "DOMAIN");
      end
      Last edited by hidt; 02-11-2007, 06:36 PM.

      Comment

      • hidt
        Forum Member
        • Jan 2006
        • 4

        #4
        Originally posted by hidt View Post
        Thx, but don`t work.. :(


        I have use this now.
        This code works
        Code:
        selected = ListBox.IsItemSelected("ListBox1", 1);
        if selected then
        MediaPlayer.Load("Media_Player", "DOMAIN");
        end
        but i can`t stream http://xxxx/;stream.nsv

        please help me !!!

        Comment

        • yosik
          Indigo Rose Customer
          • Jun 2002
          • 1858

          #5
          Here is an example of what you are looking for.
          Check the onDoubleClick event of the ListBox.
          Good luck
          Yossi
          Attached Files

          Comment

          • hidt
            Forum Member
            • Jan 2006
            • 4

            #6
            Big Thx yosik .
            This Stream works fine with mss://xxxxx but i can`t open http://xxxx/;stream.nsv.
            Why does not work with ;stream.nsv ?
            Can anybody help ?

            Comment

            Working...
            X