Search found 2 matches

by magicmt
30 May 2020, 22:40
Forum: General
Topic: help with "map = {}"
Replies: 1
Views: 2207

Re: help with "map = {}"

I think i got it. This seems to work. Keyboard 1 map = {}; map[100] = 'a'; -- numeric keyboard '4' map[101] = 'b'; -- numeric keyboard '5' map[102] = 'c'; -- numeric keyboard '6' Keyboard 2 map2 = {}; map2[100] = '1'; -- numeric keyboard '4' map2[101] = '2'; -- numeric keyboard '5' map2[102] = '3'; ...
by magicmt
29 May 2020, 16:57
Forum: General
Topic: help with "map = {}"
Replies: 1
Views: 2207

help with "map = {}"

I have modified this script and it's working beautifully: Turning cheap USB numeric keyboard into 4x4 drum pad controller for Ableton http://www.hidmacros.eu/forum/viewtopic.php?f=12&t=529 However, I want to be able to use 2 keyboards (2 numpads to be specific). Is it possible to have 2 sets of "map...