Page 1 of 1

Macro Buttons System.KeyPress

Posted: Fri Sep 13, 2019 2:46 pm
by BangDroid
I have seen the following in the documentation.

Image

What I'd like to achieve is using MIDI to send a button press.

For one of the Macro button I have in Request for Button ON / Trigger IN:

Code: Select all

System.KeyPress(F9)
But I am unable to trigger this key press.

Am I misunderstanding or have I done something incorrectly?


Thanks.

Re: Macro Buttons System.KeyPress

Posted: Fri Sep 13, 2019 7:32 pm
by Vincent Burel
System.KeyPress("F9");

the parameter is a STRING so must be inside "" See Example in user manual.

Re: Macro Buttons System.KeyPress

Posted: Sat Sep 14, 2019 3:30 pm
by BangDroid
Vincent Burel wrote:System.KeyPress("F9");

the parameter is a STRING so must be inside "" See Example in user manual.
Ah ok! Thanks for your help. :D