I'd like to add a number of selected songs from search results to either sidelist/automix/karaoke using a keyboard shortcut.
I couldn't find a matching script command yet. Can someone please point me to the correct script command?
I'm looking for a command to add selected songs to …
(a) the currently active side view panel, no matter which one it is
(b) a dedicated side view panel (either one of the above) and bring it upfront (activate and set focus to it)
So, the first command would be rather generic (something like: "add to active sideview panel") while the second command would be more specific (something similar to: "add to automix panel").
Your answer is appreciated.
I couldn't find a matching script command yet. Can someone please point me to the correct script command?
I'm looking for a command to add selected songs to …
(a) the currently active side view panel, no matter which one it is
(b) a dedicated side view panel (either one of the above) and bring it upfront (activate and set focus to it)
So, the first command would be rather generic (something like: "add to active sideview panel") while the second command would be more specific (something similar to: "add to automix panel").
Your answer is appreciated.
Posted Wed 03 Jul 24 @ 2:45 pm
You might check sidelist_add and automix_add_next.
Not perfect, but I guess they will be useful.
Not perfect, but I guess they will be useful.
Posted Wed 03 Jul 24 @ 3:02 pm
also playlist_add
for (a) you could query the sideview focus, then call the right script to add to that list [note how we deal with list shortcuts]
as for (b) there's probably enough here for you to figure it out, but you can call a list into focus by name
sideview automix
shortcuts you need the list path.
for (a) you could query the sideview focus, then call the right script to add to that list [note how we deal with list shortcuts]
sideview automix ? playlist_add : sideview sidelist ? sidelist_add : sideview karaoke ? karaoke_add : sideview sampler ? : sideview remixes ? : sideview_title & param_cast & add_to_list & sideview +1 & sideview -1
as for (b) there's probably enough here for you to figure it out, but you can call a list into focus by name
sideview automix
shortcuts you need the list path.
Posted Wed 03 Jul 24 @ 3:54 pm
Excellent!! Thanks a lot, guys, for helping me out on this!
Posted Thu 04 Jul 24 @ 6:30 pm
I think this can also be achieved as follows: playlist_clear & browser_gotofolder "your folder" & playlist_load. Instead of the actual folder name (I used a dummy "your folder" here), you can also use an integer like 4 to go to the 4th virtual/favorite folder.
Posted Sat 03 Aug 24 @ 2:12 pm