Text =  text .edit  (  Text ,  PosX ,  PosY  )  
                                     
Description :

This instruction lets the user edit a text string 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.

Return Value :

  • New text.

Notes :


Text.edit ("Hello World",0,0) is the concatenation of the following instructions:

     %ObjectID = Text.create ("Hello World")
     %ObjectID = Text.edit (%ObjectID,0,0)
     Keyboard.wait (KEY_RETURN)
     String = Text.edition.get (%ObjectID)

Examples :