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!
Announcement
Collapse
No announcement yet.
Playlist Script Object
Collapse
X
-
Playlist Script Object
-=- 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 !!! -=-Tags: None
-
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
-
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!
Sweet ass that was funcode:
#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 );
}
. I like it man
.
Comment
-
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
-
-
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
-
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
Comment
-
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.
Comment
-
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
Comment
Comment