How can I obtain the information in a text widget using Command Sequence Language?
The widget properties syntax provides a easy way to extract the full text or individual lines of text from text widgets. SET #StringVar# TO {“WidgetName”}.TEXT SET #StringVar# TO {“WidgetName”}.FIRSTLINE Will return the full text or the first line of text in the widget named “WidgetName” in the #StringVar# variable. Properties for line count and other characteristics are also available.