From WikiChip
mirc/identifiers/$editbox
< mirc‎ | identifiers
Revision as of 12:54, 2 July 2014 by Zmodem (talk | contribs) (Created $editbox identifier - mIRC)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The $editbox identifier is used to get the contents of editboxes in any mIRC window that contains an editbox.

Synopsis

$editbox(window[,N])[.property]

Parameters

window The target window to get the editbox contents from
N Retrieves the data from the second editbox in a window (Note: Can only be the value of 1)

Properties

selstart Returns the character location in the string of the start of a highlight selection
selend Returns the character location where the highlighted text ends

Example

Echo the contents of the status window:

//echo -a $editbox(Status Window)

Echo the start and end locations of selected text in the status window editbox:

//echo -a Selection start: $editbox(Status Window).selstart --- Selection end: $editbox(Status Window).selend

Note: If no highlighted selection exists, both selstart and selend will return the location of the cursor in the text.

Compatibility

Added: mIRC v6.2

Added On: 28/07/2002

See Also