because VoxCommando now lets you create multi action macros for a single command, we now have to be explicit about how to use payloads.
We inject payloads into any command with the following syntax:
{n}
where n is the number of our payload. so if we created a command with:
phrase "move"
payload list "up, down, left, right"
payload range (1,20)
if we then say: "move up 15"
we would be able to inject the up into any action using {1}
we would be able to inject the 15 into any action using {2}
and you can reuse these "variables" in multiple actions within the command macro. so you could send the 'up' keypress fifteen times1 and get the TTS to say "moving {1}, {2} times" and you would hear her say "moving up 15 times"
note: using optional payloads could cause problems here... needs more testing.
1: actually doing an action 15 times is not yet possible but soon!