Asynchron execution
Posted: 05 Feb 2019, 12:31
I start with LuaMacro and I tested this piece of code:
The expected result should be "Hello world", but LuaMacro produces a this "H Weolrllod".
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)
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)