Quick Sign In:  

Forum: General Discussion

Topic: Looking for a script
Looking for a script when you press the up or down arrow it selects the current playlist AND lets you cycle through the songs in the playlist in one movement This would be to cut out the selecting of the playlists to make the up down arrows scroll. This is more for djing strictly through the laptop where i want to bypass using the mouse pad to select the playlist and just have the up/down arrows select the current playlist opened and scroll at the same time.

Thanks!
 

Posted Mon 09 May 22 @ 5:37 am
locoDogPRO InfinityModeratorMember since 2013
what's the current playlist ? if it was current it would already have to be the focus of folders and songs, you can query where you are with
get_browsed_folder
you can move anywhere with
browser_gotofolder
 

Posted Mon 09 May 22 @ 5:55 am
UP:
browser_window 'sideview' ? browser_scroll -1 : browser_window 'sideview' & browser_scroll -1


DWN:
browser_window 'sideview' ? browser_scroll +1 : browser_window 'sideview' & browser_scroll +1
 

Posted Tue 10 May 22 @ 8:06 am