Ozarkeys
2007-01-06 09:52:12
Just curious if it's possible to set up alternating notes say like for up and down stroke strings. Each time the note is pressed it alternates to another note of choice. Let me know. Thanks
--Ozarkeys
--Ozarkeys
Ozarkeys
2007-01-06 09:52:12
florian
2007-01-07 21:14:27
Code: Select all
Translator 1: Alternator
Options: stop=false
Incoming: MIDI 90 40 qq
Rules:
if qq==0 then exit rules, skip Outgoing Action
ga=1 - ga
Outgoing: (none)
Translator 2: Note On for ga=0
Options: stop=false
Incoming: MIDI 90 40 qq
Rules:
if ga!=0 then exit rules, skip Outgoing Action
Outgoing: MIDI 90 41 qq
Translator 3: Note On for ga=1
Options: stop=false
Incoming: MIDI 90 40 qq
Rules:
if ga!=1 then exit rules, skip Outgoing Action
Outgoing: MIDI 90 42 qq
Ozarkeys
2007-01-08 22:15:27
admin
2007-01-09 14:19:48
Code: Select all
Translator 4: Note Off for ga=0
Options: stop=false
Incoming: MIDI 80 40 qq
Rules:
if ga!=0 then exit rules, skip Outgoing Action
Outgoing: MIDI 80 41 qq
Translator 5: Note Off for ga=1
Options: stop=false
Incoming: MIDI 80 40 qq
Rules:
if ga!=1 then exit rules, skip Outgoing Action
Outgoing: MIDI 80 42 qq
Ozarkeys
2007-01-10 00:51:48
florian
2007-01-10 02:43:07
Ozarkeys
2007-01-10 22:32:58
florian
2007-01-11 00:56:44
Code: Select all
Translator 1: Change to next value of ga
Options: stop=false
Incoming: MIDI 90 40 qq
Rules:
if qq==0 then exit rules, skip Outgoing Action
ga=ga + 1
IF GA >= 5 THEN ga = 0
Outgoing: (none)
Code: Select all
Translator 6: Note On for ga=2
Options: stop=false
Incoming: MIDI 90 40 qq
Rules:
if ga!=2 then exit rules, skip Outgoing Action
Outgoing: MIDI 90 50 qq
Translator 7: Note Off for ga=2
Options: stop=false
Incoming: MIDI 80 40 qq
Rules:
if ga!=2 then exit rules, skip Outgoing Action
Outgoing: MIDI 80 50 qq
Code: Select all
Translator 1: Change to next value of ga
Options: stop=false
Incoming: MIDI 90 40 qq
Rules:
if qq==0 then exit rules, skip Outgoing Action
ga=ga + 1
IF GA >= 5 THEN ga = 0
Outgoing: (none)
Translator 2: Note On for any value of ga
Options: stop=false
Incoming: MIDI 90 40 qq
Rules:
pp = 0x50 + ga
Outgoing: MIDI 90 pp qq
Translator 3: Note Off for any value of ga
Options: stop=false
Incoming: MIDI 80 40 qq
Rules:
pp = 0x50 + ga
Outgoing: MIDI 80 pp qq
Code: Select all
vv = ga * 2
pp = 0x50 + vv