
Last edit by jpboggis, Atomix Productions on Tue 20 Sep 11 @ 7:14 am
To make the A1/A2 buttons behave similar to how they do on Denon CD players, change their mappings as follows:
A1 = set 'A1' 1 while_pressed & var 'FLIP' ? delete_cue 98 & loop_exit : hot_cue 98 & loop_in & set 'ABTN' 1
A2 = set 'A2' 1 while_pressed & var 'FLIP' ? delete_cue 99 & loop_exit : hot_cue 99 & loop_in & set 'ABTN' 2
B = var 'FLIP' ? loop_exit : loop ? loop_half : loop_out
LED_A1_DIMMER = hot_cue 98
LED_A2_DIMMER = hot_cue 99
LED_A1 = loop ? var_equal 'ABTN' 1 ? on : off : off
LED_A2 = loop ? var_equal 'ABTN' 2 ? on : off : off
LCD_LOOP1_( = loop ? var_equal 'ABTN' 1 ? on : off : off
LCD_LOOP1_A1 = hot_cue 98
LCD_LOOP1_B = loop ? var_equal 'ABTN' 1 ? on : off : off
LCD_LOOP1_) = loop ? var_equal 'ABTN' 1 ? on : off : off
LCD_LOOP2_( = loop ? var_equal 'ABTN' 2 ? on : off : off
LCD_LOOP2_A2 = hot_cue 99
LCD_LOOP2_B = loop ? var_equal 'ABTN' 2 ? on : off : off
LCD_LOOP2_) = loop ? var_equal 'ABTN' 2 ? on : off : off
FLIP = set 'FLIP' 1 while_pressed & holding 1000ms ? delete_cue 98 & delete_cue 99 & loop_exit : var 'A1' ? wheel_mode "jog" : var 'A2' ? wheel_mode "jog" : loop ? wheel_mode "loop_move,loop_out,loop_in,jog" : wheel_mode "jog"
NOTE: This uses cue points 98 and 99 - If you don't want these saved in your song, please ensure that you ensure that you clear them first (Hold FLIP for 1 second or press FLIP+A1 and/or FLIP+A2)
Return to VDJscript examples...