merge ofw dev missing parts

This commit is contained in:
MX
2024-05-19 03:54:21 +03:00
parent fb6070f29d
commit 21abcb56fd
5 changed files with 292 additions and 230 deletions

View File

@@ -4,9 +4,9 @@ let textbox = require("textbox");
// Focus (start / end), Font (text / hex)
textbox.setConfig("end", "text");
// Can make sure it's empty before showing, in case of reusing in same script
// (Closing textbox already empties the text, but maybe you added more in a loop for example)
textbox.emptyText();
// Can make sure it's cleared before showing, in case of reusing in same script
// (Closing textbox already clears the text, but maybe you added more in a loop for example)
textbox.clearText();
// Add default text
textbox.addText("Example dynamic updating textbox\n");