Adding Text to Input Text Box field in the widget

Hello! I’m trying to create a keyboard widget so that I can write with my mouse in the game. I want to add text into the Input Text Box field by clicking the keyboard buttons but I can only set one letter at a time by replacing the previous one and I can’t form a sentence by clicking the buttons. How can I make the widget to ADD letters into the Input Text Box field by clicking the buttons?

Bind a string to a text box and Append:

New characters go into A and will be accumulated in the string.

Oh right, that was simple, I was actually using the wrong Setter and I was wondering why it didn’t work. But it works now, thank you! :smiley: