Hi all,
As in the title, is it possible to batch change any cue points that currently have no colour and set them to a chosen colour? This would massively help me when moving them to Lexicon DJ.
Thanks!
As in the title, is it possible to batch change any cue points that currently have no colour and set them to a chosen colour? This would massively help me when moving them to Lexicon DJ.
Thanks!
Posted Wed 12 Mar 25 @ 2:26 pm
that would need regex applied at the xml level
search for
Num="(\d+)" Type="cue"
replace with
Num="\1" Color="4294967295" Type="cue"
also similar for loops
search for
Num="(\d+)" Type="cue"
replace with
Num="\1" Color="4294967295" Type="cue"
also similar for loops
Posted Wed 12 Mar 25 @ 2:34 pm
locoDog wrote :
that would need regex applied at the xml level
search for
Num="(\d+)" Type="cue"
replace with
Num="\1" Color="4294967295" Type="cue"
also similar for loops
search for
Num="(\d+)" Type="cue"
replace with
Num="\1" Color="4294967295" Type="cue"
also similar for loops
Thanks very much for your reply. Unfortunately, I have no idea how to do the above. Would you be kind enough to explain to a dunce like me?
I'd like to replace every 'no color' cue with a white cue, if possible.
Posted Wed 12 Mar 25 @ 3:03 pm
Color="4294967295" is white [android colour format which vdj database uses]
tell you what it's probably easier, make a backup in vdj, go into the zipped backup and send me database.xml
tell you what it's probably easier, make a backup in vdj, go into the zipped backup and send me database.xml
Posted Wed 12 Mar 25 @ 3:10 pm
Thanks so much - I've just messaged you
Posted Wed 12 Mar 25 @ 4:08 pm