Code: Select all
elseif (button == 72) then
lmc_send_keys('Hello');
lmc_send_keys(' ');
lmc_send_keys('world');
elseif ...
It would be more logical for the "lmc_send_keys()" to run one after the other and not at the same time (or to have the 2 variants "step by step" and "Asynchron execution").
(Yes, I could put all in one function, but I experiment to know the behavior of LuaMacro)