Can someone help me with creating a keyboard shortcut? I'm trying to assign the "Z" key on my keyboard so that it will cycle through 3 different zoom settings in the waveform window. In other words the first press will zoom in near, the 2nd press would zoom in at the default setting, and the 3rd press would be a far setting. I'm having a hell of a time trying to figure it out.
Posted Sun 27 Dec 09 @ 2:53 pm
Try the following:
zoom default ? zoom far : zoom far ? zoom near : zoom default
Posted Sun 27 Dec 09 @ 7:12 pm
Like this?
cycle 'mode' 3 & var_equal 'mode' 1 ? zoom 'far' : var_equal 'mode' 2 ? zoom 'default' : zoom 'near'
cycle 'mode' 3 & var_equal 'mode' 1 ? zoom 'far' : var_equal 'mode' 2 ? zoom 'default' : zoom 'near'
Posted Sun 27 Dec 09 @ 7:47 pm
blueeyesdf wrote :
Like this?
cycle 'mode' 3 & var_equal 'mode' 1 ? zoom 'far' : var_equal 'mode' 2 ? zoom 'default' : zoom 'near'
cycle 'mode' 3 & var_equal 'mode' 1 ? zoom 'far' : var_equal 'mode' 2 ? zoom 'default' : zoom 'near'
That worked perfectly, thanks man!! I never woulda been able to decipher the script instructions in the Wiki to pull that off (I knew I should have paid more attention in computer class in high school).
Posted Mon 28 Dec 09 @ 3:33 am
Hey can someone help me figure out how to assign more then one function to shortcut!! For example i am trying to assign Play and gotocue to one button what do i need to do..
Posted Wed 16 Feb 11 @ 10:47 am
You can use & to assign more than one action to a button, e.g:
play & goto_cue
For further information on VDJscript, including examples of common mappings, please see:
http://www.virtualdj.com/wiki/VDJscript.html
http://www.virtualdj.com/wiki/VDJScript%20Examples.html
http://www.virtualdj.com/wiki/VDJscript_verbs.html
play & goto_cue
For further information on VDJscript, including examples of common mappings, please see:
http://www.virtualdj.com/wiki/VDJscript.html
http://www.virtualdj.com/wiki/VDJScript%20Examples.html
http://www.virtualdj.com/wiki/VDJscript_verbs.html
Posted Thu 17 Feb 11 @ 7:40 am