OK
I figured this out using the forum (bentosan's post) and some help from s4racen.
Objective: make a momentary toggle
Using: Record Arm buttons, to switch a track between Send A and B (using this to route music to two channels that are my DJ decks)
Translator 1
Incoming
80 30 7F
Rules
if ga==0 goto "toggleon"
if ga==1 goto "toggleoff"
label "toggleon"
ga=1
pp=127
exit rules, execute outgoing action
label "toggleoff"
ga=0
pp=0
Outgoing
80 30 pp
ROUTE TO SPECIFIC OUT PORT: APC40**** this is the trick!
translator 2
incoming 80 30 7F
rules
if ga==0 then pp=0
if ga==1 then pp=127
outgoing
90 30 pp
OK
I figured this out using the forum (bentosan's post) and some help from s4racen.
Objective: make a momentary toggle
Using: Record Arm buttons, to switch a track between Send A and B (using this to route music to two channels that are my DJ decks)
Translator 1
Incoming
80 30 7F
Rules
if ga==0 goto "toggleon"
if ga==1 goto "toggleoff"
label "toggleon"
ga=1
pp=127
exit rules, execute outgoing action
label "toggleoff"
ga=0
pp=0
Outgoing
80 30 pp
ROUTE TO SPECIFIC OUT PORT: APC40**** this is the trick!
Hope this helps!
Thanks all...