Accesso rapido:  

Forum: VirtualDJ Skins

Topic: Quantize and Beatjump values
Hi, I am working on a skin based on the CDJ3000, and looking to get the quantise value (i.e 1 beat, 2 beat etc) and the beatjump values (i.e 2 beats, 4 beats etc)

<text size="18" align="center" color="#ff0000" weight="" action="get_globalquantize"/>

the above doesn't appear to work, I have looked around the wiki but can not find anything, so any help would be appreciated, thanks. :)
 

Inviato Tue 12 Oct 21 @ 9:56 am
NicotuxHome userMember since 2014
<text size="18" align="center" color="#ff0000" weight="" action="setting globalQuantize"/>

using beatjump is a little more complex as it reports signed text relative value
<text size="18" align="center" color="#ff0000" weight="" format="`beatjump`bt"/>
or
<text size="18" align="center" color="#ff0000" weight="" format="`beatjump & param_cast percent & param_cast int`bt"/>
to remove plus sign because of a bug in casting text to int
or may show 1/32 1/8...
<text size="18" align="center" color="#ff0000" weight="" format="`beatjump_select`bt"/>
 

Inviato Tue 12 Oct 21 @ 10:28 am
Thank you so much, I have been trying to work it out for hours.
 

Inviato Tue 12 Oct 21 @ 10:35 am