Hi,
I would like to remap the 2 load buttons on my rmx to use them for switching timecode on and off.
When I use the learn key function in the mapper it gives me just "load" no matter which of the two buttons I press.
How can separate the two bittons and map them individually?
Thanks
Thomas
I would like to remap the 2 load buttons on my rmx to use them for switching timecode on and off.
When I use the learn key function in the mapper it gives me just "load" no matter which of the two buttons I press.
How can separate the two bittons and map them individually?
Thanks
Thomas
geposted Sun 27 Nov 11 @ 8:53 am
you don't need to seperate them, it is designated in the definition file whether it controls the left or right deck, so if you intend to map them the same you only need to do it to 1 side of the controller and the other will be the same...
for your script to just switch the timecodes on and off it should be
timecode_active
but if you really want to seperate the functions of the controller you could use
"device_side 'left' ? action for left side : action for right side"
eg, "device_side 'left' ? deck 1 timecode_active : deck 1 load"
of you want the load buttons to still load, i'd say your better off using a hold function for it, this way if you press the button for more than 2 seconds you will activate the timecodes on release, or if you press the button for less than 2 seconds you will load on release
holding 2000ms ? timecode_active : load
for your script to just switch the timecodes on and off it should be
timecode_active
but if you really want to seperate the functions of the controller you could use
"device_side 'left' ? action for left side : action for right side"
eg, "device_side 'left' ? deck 1 timecode_active : deck 1 load"
of you want the load buttons to still load, i'd say your better off using a hold function for it, this way if you press the button for more than 2 seconds you will activate the timecodes on release, or if you press the button for less than 2 seconds you will load on release
holding 2000ms ? timecode_active : load
geposted Sun 27 Nov 11 @ 9:15 am
Thanks a lot!
I'll check this out asap...
I'll check this out asap...
geposted Sun 27 Nov 11 @ 1:55 pm