Announcement

Collapse
No announcement yet.

Playlist Script Object

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

  • Playlist Script Object

    i whiped up a little thingy to allow MAKI to control the playlist. its called the Playlist Script Object, or PlaylistSO. let me know what ya think!
    Attached Files
    -=- Darkain Dragoon -=-
    -=- RM-X Home Page - Controlling Winamp via RM-900, RM-1000, RM-1500, ATI Remote Wonder, Joysticks, Gamepads, Wheels, Keyboard shortcuts, Multimedia keyboards, across the net, and much more! -=- Defenestration !!! -=-

  • #2
    using it right now, but you already knew that
    it's really cool, just hope I'll get the needed updates soon..

    highly recommended to anyone who wants to make a custom playlist for a skin..

    -Plague
    Winique work-in-progress (download) | Stargate:Winamp - SG1 Edition | D-Reliction | wasabi.player skin (plague-edit)
    Winamp3_Default skin (plague fixes) | Opal Redemption | X-Slant | wa2skin.wac

    Comment


    • #3
      w00t
      fo anyone that knows this is the wac used in techenify to control the shade modes

      love it darkain , this wont be the last skin i use it in...

      Comment


      • #4
        I guess you'll need to distribute the wac with your skin's wal if you want to use it? Is that possible on winamp.com?

        Comment


        • #5
          Wow, that's tasty. It'll be a few days before I learn how to implement any of this, but I think it'll come in really handy. Thanx for the awesome script!

          Comment


          • #6
            nice... someone could make a really nifty script which shuffles every playlist and every song loaded in the PL. Hey hey I'll do it right here.. wheeeela!

            code:

            #include <lib\std.mi>
            #include <lib\PlaylistSO.mi>

            Global PlaylistObject pl;

            System.onScriptLoaded()
            {
            pl = new PlaylistObject;
            }

            System.onPlay()
            {
            pl.randPlaylist();
            while( pl.getTotal() == 0 )
            {
            pl.randPlaylist();
            }
            int num = pl.getTotal() - 1;
            pl.playSong( System.random( num ) + 1 );
            }

            Sweet ass that was fun . I like it man .
            www.bluni.com
            Ben Folds Lyrics Database

            Comment


            • #7
              dont forget to delete your object when you are done with it

              System.onScriptUnLoading()
              {
              delete pl;
              }
              -=- Darkain Dragoon -=-
              -=- RM-X Home Page - Controlling Winamp via RM-900, RM-1000, RM-1500, ATI Remote Wonder, Joysticks, Gamepads, Wheels, Keyboard shortcuts, Multimedia keyboards, across the net, and much more! -=- Defenestration !!! -=-

              Comment


              • #8
                oh yes! hehe... thanks darkain!
                www.bluni.com
                Ben Folds Lyrics Database

                Comment


                • #9
                  I bet its possible using this to make a winamp2 style j-key jump window as an addon.

                  i havn't the time or the intrest to do it, but anyone interested could look at Winamp3\Wacs\xml\library\ and see how the media library search thingy is done, and combine it with the PlSO.
                  DO NOT PM ME WITH TECH SUPPORT QUESTIONS

                  Comment


                  • #10
                    I kinda am doing something like that for the still unreleased version of wa2-3 converter..
                    but I'm not using this scriptobject for it, I'm disecting the Playlist editor, putting the sidecar and select bar in a separate window with some custom scripting, making it kinda like the "j-window" in wa2...

                    it works really well..

                    -Plague
                    Winique work-in-progress (download) | Stargate:Winamp - SG1 Edition | D-Reliction | wasabi.player skin (plague-edit)
                    Winamp3_Default skin (plague fixes) | Opal Redemption | X-Slant | wa2skin.wac

                    Comment


                    • #11
                      sounds really neato plague.. looks like you're gonna go the full 10 yards and then jump into the crowd after the touchdown catch in the back corner (yay football!)with the converter.
                      www.bluni.com
                      Ben Folds Lyrics Database

                      Comment


                      • #12
                        lol..
                        yea, that's the plan..
                        that's why it's been so long since the last release.
                        Well, that's not the only reason (there are/were some severe bugs aswell) but it's the main reason..

                        when it gets released though, I'm pretty sure most people will be happily surprised of all the features.

                        -Plague
                        Winique work-in-progress (download) | Stargate:Winamp - SG1 Edition | D-Reliction | wasabi.player skin (plague-edit)
                        Winamp3_Default skin (plague fixes) | Opal Redemption | X-Slant | wa2skin.wac

                        Comment

                        Working...
                        X