Originally Posted By: DJ_Sol
Can we stay on topic please.

The matter is resolved for me.

Ive always used $chr(160) for spaces in text design.

Code:
Editbox: test     test

/echo -a $replace($editbox($active),$chr(32),$chr(160))

This works for me.


Does this still work somehow? When I use the following two line of codes:

Code:
alias f6 echo -a Editbox: $replace($editbox($active), $chr(32), $chr(160))

on *:input:*: echo -a Editbox: $replace($editbox($active), $chr(32), $chr(160))


And enter "test test" in the editbox, upon pressing F6, I get:

Code:
Editbox: test  test


As intended. However, when I press enter, it simply states:

Code:
Editbox:


Which seems to indicate that the editbox is cleared before on input triggers. "on ^*:input:" also doesn't work.

Is there any way to read the editbox value when on input triggers, or keep track of all changes to the editbox without requiring a specific hotkey for that?