Ingreso rápido:  

Forum: General Discussion

Tema: Quick script help.
I want to map a key to serve as a crossfader teaser. While pressed, the crossfader should crossfade full to the opposite deck and back when key is released. Thanks guys
 

Mensajes Fri 29 Oct 21 @ 5:14 pm
locoDogPRO InfinityModeratorMember since 2013
param_bigger 0.5 `crossfader` ? crossfader 0 while_pressed : crossfader 1 while_pressed

like that?
 

Mensajes Fri 29 Oct 21 @ 5:20 pm
Not exactly. It works one way but only after I remove this....param_bigger 0.5 `crossfader` ?
 

Mensajes Fri 29 Oct 21 @ 5:28 pm
NicotuxHome userMember since 2014
crossfader & param_invert & param_cast int & crossfader while_pressed

omit the cast to get the opposite crossfader effect
 

Mensajes Fri 29 Oct 21 @ 5:34 pm
Nico plz be more detailed, step by step. I am just starting to get the script thing. Thanks
 

Mensajes Fri 29 Oct 21 @ 5:40 pm
NicotuxHome userMember since 2014
crossfader & param_invert & param_cast int & crossfader while_pressed
may do what you asked for

crossfader & param_invert & crossfader while_pressed
only apply the crossfader as if it was in the opposite position (0 <==> 1; 0.25 <=> 0..75; 0.33 <=> 0.66 ...)
 

Mensajes Fri 29 Oct 21 @ 5:46 pm
Works perfectly. Thank you.
 

Mensajes Fri 29 Oct 21 @ 5:55 pm