Text entry object
Note
It is not recommended to use this object anymore. Instead, prefer using the Text Input object. It works on all devices, including mobile devices, with all languages and supports emojis.
The text entry object captures user input and stores it in memory. You can use this object to simulate text input fields. For example, you might use the text entry object to provide a way that the player of your game can enter his/her name or any other information.
Add text entry object
After creating a new object from the Objects Editor list, select "Text entry" from the displayed list of choices
Rename the Text entry object to whatever you like. Add the Text entry object to the scene.
Now, if you run a preview of the scene, all the keys you press are going to be captured by the object and stored in memory. In order to read the value from the memory, you need to use an expression like this one: TextEntry.String()
(see an example below).
Display value using a text object
First, add a Text Object to the scene. Then, add an event to modify the content of the Text object:
For the last parameter, which is the new content for the text, use the expression mentioned above:
Note
Entry should be the name of the Text Entry object. You need to replace this with the name of your Text Entry object.
Now if you run a scene preview. Start typing you will see the text object displaying whatever you type.
Using events, it is possible to enable or disable the "Text entry" object. Events also allow you to control when to capture text input and when not to capture text input.
Examples
Note
See it in action! 🎮
Open these examples online.
Reference
All actions, conditions and expressions are listed in the shape painter reference page.