billowy-waiter-28954
07/31/2022, 2:37 PMapp.textInput.start()
billowy-waiter-28954
07/31/2022, 2:42 PMhaxe
var someText = new Text();
someText.color = Color.WHITE;
someText.content = 'someContent';
var selectionColor = Color.BLUE;
var textCursorColor = Color.WHITE;
var editText = new EditText(selectionColor, textCursorColor);
someText.component('editText', editText);
editText.onStart(this, function() {
// Started editing text
});
editText.onUpdate(this, function(text:String) {
trace('text updated: ' + text);
});
editText.onSubmit(this, function() {
// Edited then pressed "enter" or similar
});
editText.onStop(this, function() {
// Stopped editing text
});
faint-toothbrush-51643
07/31/2022, 2:55 PMbillowy-waiter-28954
07/31/2022, 2:58 PMapp.textInput.start()
is not providing the graphic part of the text inputbillowy-waiter-28954
07/31/2022, 2:58 PMfaint-toothbrush-51643
08/02/2022, 3:32 AMfaint-toothbrush-51643
08/02/2022, 3:32 AMfaint-toothbrush-51643
08/02/2022, 3:32 AMfaint-toothbrush-51643
08/02/2022, 3:33 AMfaint-toothbrush-51643
08/02/2022, 3:33 AMfaint-toothbrush-51643
08/02/2022, 3:34 AMfaint-toothbrush-51643
08/02/2022, 4:14 AMbillowy-waiter-28954
08/02/2022, 9:44 AMfaint-toothbrush-51643
08/02/2022, 10:01 PMbillowy-waiter-28954
08/04/2022, 11:23 AMbillowy-waiter-28954
08/04/2022, 11:24 AMfaint-toothbrush-51643
08/05/2022, 1:59 AMfaint-toothbrush-51643
08/05/2022, 2:00 AMfaint-toothbrush-51643
08/05/2022, 2:01 AMbillowy-waiter-28954
08/06/2022, 8:57 AMfaint-toothbrush-51643
08/06/2022, 5:35 PMfaint-toothbrush-51643
08/06/2022, 5:37 PMfaint-toothbrush-51643
08/06/2022, 10:36 PMbillowy-waiter-28954
08/06/2022, 10:58 PMgifted-whale-78169
08/08/2022, 5:23 AMgifted-whale-78169
08/08/2022, 5:23 AMgifted-whale-78169
08/08/2022, 5:24 AMbillowy-waiter-28954
08/08/2022, 11:21 AMbest-agent-85158
08/08/2022, 12:42 PMbest-agent-85158
08/08/2022, 12:42 PM