Ingreso rápido:  

Forum: General Discussion

Tema: Script help
Looking for help creating script for a button, when activated, loading new songs will pitch to +5% and key lock to the same +5%. Thanks for you help.
 

Mensajes Sun 17 Jul 22 @ 10:50 pm
Type this code on your button:
toggle 'MyWeirdPitchNeeds'


Then find your keyboard mapper, select the "ONSONGLOAD" key and type this code:
var_equal 'MyWeirdPitchNeeds' 1 ? key_lock off & pitch +5% & key_lock on


This will work independently for each deck (Each deck will need to have it's button pressed to toggle automatic execution on/off)
If you want it to be global (one button controls all decks) then just add a dollar sign in front of the variable name on both parts of the code.
Use '$MyWeirdPitchNeeds' instead of 'MyWeirdPitchNeeds'
 

Mensajes Mon 18 Jul 22 @ 7:20 am
Works perfect thank you!
 

Mensajes Mon 18 Jul 22 @ 10:56 pm