Ingreso rápido:  

Forum: VirtualDJ Skins

Tema: get effect_slider_text without the unit
Hi,

ist there a way to display the efx Value without the Unit. (get effect_slider_text 1 1)
for example:

1 bt without bt. I will only show the 1.
 

Mensajes Fri 24 Jun 22 @ 11:44 am
locodogPRO InfinityModeratorMember since 2013
Not easily but possible

param_contains " " `effect_beats 1 & param_cast 'text' 2` ? effect_beats 1 & param_cast 'text' 1 : 
param_contains " " `effect_beats 1 & param_cast 'text' 3` ? effect_beats 1 & param_cast 'text' 2 :
param_contains " " `effect_beats 1 & param_cast 'text' 4` ? effect_beats 1 & param_cast 'text' 3 :
param_contains " " `effect_beats 1 & param_cast 'text' 5` ? effect_beats 1 & param_cast 'text' 4 :


you could do the same with get_effect_slider_text instead of effect_beats.
 

Mensajes Fri 24 Jun 22 @ 6:27 pm