Wait_For_Input and Wait_For_Enter combined with a Send_String

I am trying to build a macro that sends a UDP string. I want to have user input for part of the string, but somehow when I have an unfinished string in the macro, it threats it as if it where finished, so anything after that in the macro is not considered as text input but as keyboard shortcuts.

The example is as follows:
The working macro is:

Send_String /aaaa/bbbb/note="argument#1",argument#2

This triggers a note with the text "argument#1" and performs an action argument#2
I want the macro to allow for keyboard input, so I can alter text of argument#1. So I tried:

Send_String /aaaa/bbbb/note=" Wait_For_Input

But when I start typing after triggering the macro, the String appears to be terminated and I can only type keyboard shortcuts.
What could be the solution?

[edit] Note that the macro is already in Foreground mode

Related