Saving Text as a Variable

How can I make the value of an object variable the same as the text entered via a text entry object?

The expression “TextEntryObject.String()” (without the quotes) returns the string saved in the text entry object called appropriately “TextEntryObject”, if I remember correctly. So you can use the action to modify an object variable string:

Do = TextEntryObject.String() to the text of the variable "MyString" of MyObject

Thanks, I’ll give it a try.