Description :
This instruction lets the user edit a line of text in the current Alambik screen.
Parameters :
-
Text to edit.
-
X component of the text object's top left pixel position.
-
Y component of the text object's top left pixel position.
-
Width of the line, expressed in pixels.
Return Value :
Notes :
Text.edit ("Hello World",0,0,100) is the concatenation of the following instructions:
%ObjectID = Text.create ("Hello World",100)
%ObjectID = Text.edit (%ObjectID,0,0)
Keyboard.wait (KEY_RETURN)
String = Text.edition.get (%ObjectID)
Examples :
|