Connexion rapide:  

Forum: VirtualDJ Technical Support

Sujet browser_gotofolder "lists://history/karaoke/workinglist"
locoDogPRO InfinityModeratorMember since 2013
I'm wanting to get to m3u as listed in title but can't get there with universal name, currently having to use "lists & advice/..." which will fail for non English locales.

Is it possible? I tried a few... "History://karaoke/..." "karaoke://..." but nothing took.
 

Posté Fri 12 Nov 21 @ 3:19 pm
NicotuxHome userMember since 2014
Remember the full name is needed and Case sensitive
History is not a internal folder, and not in folders [ROOT] is unusable
get_vdj_folder is display only and can't cast

just access to karaoke is
param_add `get_text '\\History\Karaoke'` 'get_vdj_folder' & param_cast text & browser_gotofolder

this time it cab store in a variable
param_add `get_text '\\History\Karaoke'` 'get_vdj_folder' & param_cast text & set_var f

do the same with Singer adding playlist extension

you get the hyper simple and elegant following script

goto singer history
param_add `get_text '\\History\Karaoke\'` 'get_vdj_folder' & param_cast text & set_var f & param_add `get_text '.m3u'` `get_browsed_song singer` & set_var f0 & param_add "get_var f0" "get_var f" & browser_gotofolder

 

Posté Fri 12 Nov 21 @ 5:18 pm
locoDogPRO InfinityModeratorMember since 2013
Thanks, I had issues with homefolder route in the past, depending on where "local music" folder was in the tree.
but they seem to have cleared up.
 

Posté Fri 12 Nov 21 @ 5:43 pm