Sorry for the bad description, it's difficult to explain.
I have a dynamic command which includes numbers - some of those numbers translate directly to numeric keys. In other words, saying "one" should fire CTRL+1, saying "two" should fire CTRL+2, etc.
I'm trying to avoid using individual if-else conditions for each number because the command already generates 400 sub-commands, and I feel like variable keypresses should work for this with much more brevity. I'm not doing it right though. I tried setting a variable from the number then feeding that to the VK, e.g.
[CTRL][keyOne]
...but that didn't work, and nor did
[CTRL]{CMDSEGMENT:2}
Is there some way to do this please?