If I want to get the bpm of a song and put it in a variable, is it just the code below?
set $bpm get_bpm
Also, is there a way to debug VDJscript? For example outputting the value of a variable somewhere so I can see it?
set $bpm get_bpm
Also, is there a way to debug VDJscript? For example outputting the value of a variable somewhere so I can see it?
geposted Tue 12 Oct 21 @ 3:03 am
needs backticks to parse the script as a value
set $bpm `get_bpm`
find var values with
var_list
or use this as a button name
`get_var $bpm`
there's also debug, but in this case one of the above will be better
get_var $bpm & param_cast & debug
set $bpm `get_bpm`
find var values with
var_list
or use this as a button name
`get_var $bpm`
there's also debug, but in this case one of the above will be better
get_var $bpm & param_cast & debug
geposted Tue 12 Oct 21 @ 3:12 am
ok thanks
geposted Tue 12 Oct 21 @ 10:35 am