Is it possible to run a TextEditBox's Set Text Changed script programmatically? I can use << setText("text", runscript(1)) if the TextEditBox's script is set with <<setFunction but not when it is set with <<setTextChanged.
Names Default To Here(1);
New Window("Example",
teb = Text Edit Box("Example Text",
<<Set Text Changed(Function({this, value}, (this << sib) << settext(value)))
),
Text Box("")
);
teb << setText("test", runscript(1)) // Works for <<setFunction
Thanks for any help!