ResultVariable
When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.
See also: Related Actions
RichText.Copy
OverviewExamples
RichText.Copy ( string ObjectName )
De s cr ip t ion
Copies the current selection in a richtext object to the clipboard.
P arame t er s
ObjectName
(string) The name of the richtext object.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
RichText.Cut
OverviewExamples
RichText.Cut ( string ObjectName )
De s cr ip t ion
Cuts the current selection in a richtext object to the clipboard.
P arame t er s
ObjectName
(string) The name of the richtext object.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
RichText.Delete
OverviewExamples
RichText.Delete ( string ObjectName )
De s cr ip t ion
Deletes the currently selected text in a richtext object.
P arame t er s
ObjectName
(string) The name of the richtext object.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
RichText.EmptyUndoBuffer
OverviewExamples
RichText.EmptyUndoBuffer ( string ObjectName )
De s cr ip t ion
Resets (clears) the undo buffer in a richtext object.
P arame t er s
ObjectName
(string) The name of the richtext object.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
RichText.FindText
OverviewExamples
table RichText.FindText ( string ObjectName,
string SearchFor,
number Start = 1,
number End = -1,
boolean CaseSensitive = false,
boolean WholeWord = false )
De s cr ip t ion
Searches for text in a RichText object.
P arame t er s
ObjectName
(string) The name of the richtext object.