登录:     


Forum: VirtualDJ Plugins

Topic: effect slider

由于该帖子已年深日久,可能包含陈旧过时或描述错误的信息。

how can i control the 2nd and 3rd effect slider in the keyboard shortcuts
 

发表时间 Sun 07 May 06 @ 8:45 am
You have to set the value plus 65536*(number_of_the_slider-1).

E.g.:
Slider 4 value is 128:
Value = ( 65536 * ( 4 - 1 ) ) + 128 = 196736

Slider 1 value is 2048:
Value = ( 65536 * ( 1 - 1 ) ) + 2048 = 2048

This is because the "low word" of the value (the least significant 16 bits) are the value to give the slider, and the high word (the most significant 16 bits, computed as "65536*number") means the slider index (the first is 0).
 

ok thanks
 



(陈旧帖子或论坛版块会自动关闭)