Script Editor
Functions for interacting with the script editor.
Functions
Type | Name |
---|---|
void | vrScriptEditorAppendText(string text) Inserts text into the currently visible script editor tab and advances the insert cursor position. |
void | vrScriptEditorClearOutput() Clears the script editor output. |
void | vrScriptEditorCopySelection() Copies the selected text in the currently visible script editor tab to the clipboard. |
void | vrScriptEditorCutSelection() Copies the selected text in the currently visible script editor tab to the clipboard and then erases it. |
void | vrScriptEditorDeleteBackwards() Deletes a single character from behind the insertion point in the currently visible script editor tab and steps the cursor backwards (backspace behaviour) |
void | vrScriptEditorDeleteForwards() Deletes a single character at the insertion point in the currently visible script editor tab and leaves the insertion point where it is (delete behaviour) |
void | vrScriptEditorDeleteSelection() Deletes the selected text from the currently visible script editor tab. |
number | vrScriptEditorFind(string text, number pos) Finds some text in the currently visible script editor tab. |
number | vrScriptEditorGetCurrentLine() Returns the current line number (zero based) in the currently visible script editor tab. |
number | vrScriptEditorGetInsertPos() Gets the text insert cursor position in the currently visible script editor tab. |
number | vrScriptEditorGetMarkPos() Gets the text mark cursor position in the currently visible script editor tab. |
void | vrScriptEditorInsertText(string text) Inserts text into the currently visible script editor tab. |
void | vrScriptEditorPasteCopyBuffer() Reads the clipboard, translates the contents and inserts them at the insertion point in the currently visible script editor tab. |
void | vrScriptEditorSelectAll() Selects all the text in the currently visible script editor tab. |
void | vrScriptEditorSelectWord() Selects the word surrounding the current insertion point in the currently visible script editor tab. |
void | vrScriptEditorSetCurrentLine(number lineNo) Set the cursor at the start of the specified line in the currently visible script editor tab. |
void | vrScriptEditorSetInsertAtMousePos() Places the text insert cursor in the currently visible script editor tab underneath the mouse cursor. |
void | vrScriptEditorSetInsertPos(number pos) Sets the text insert cursor position in the currently visible script editor tab. |
void | vrScriptEditorSetMarkPos(number pos) Sets the text mark cursor position in the currently visible script editor tab. This is for highlighting text. |
Functions Documentation
vrScriptEditorAppendText
void vrScriptEditorAppendText(
string text
)
Inserts text into the currently visible script editor tab and advances the insert cursor position.
Parameters:
- text text to append
vrScriptEditorClearOutput
void vrScriptEditorClearOutput()
Clears the script editor output.
vrScriptEditorCopySelection
void vrScriptEditorCopySelection()
Copies the selected text in the currently visible script editor tab to the clipboard.
vrScriptEditorCutSelection
void vrScriptEditorCutSelection()
Copies the selected text in the currently visible script editor tab to the clipboard and then erases it.
vrScriptEditorDeleteBackwards
void vrScriptEditorDeleteBackwards()
Deletes a single character from behind the insertion point in the currently visible script editor tab and steps the cursor backwards (backspace behaviour)
vrScriptEditorDeleteForwards
void vrScriptEditorDeleteForwards()
Deletes a single character at the insertion point in the currently visible script editor tab and leaves the insertion point where it is (delete behaviour)
vrScriptEditorDeleteSelection
void vrScriptEditorDeleteSelection()
Deletes the selected text from the currently visible script editor tab.
vrScriptEditorFind
number vrScriptEditorFind(
string text,
number pos
)
Finds some text in the currently visible script editor tab.
Parameters:
- text text to find
- pos character position to start searching from
Return: The position of the first match
vrScriptEditorGetCurrentLine
number vrScriptEditorGetCurrentLine()
Returns the current line number (zero based) in the currently visible script editor tab.
vrScriptEditorGetInsertPos
number vrScriptEditorGetInsertPos()
Gets the text insert cursor position in the currently visible script editor tab.
vrScriptEditorGetMarkPos
number vrScriptEditorGetMarkPos()
Gets the text mark cursor position in the currently visible script editor tab.
vrScriptEditorInsertText
void vrScriptEditorInsertText(
string text
)
Inserts text into the currently visible script editor tab.
Parameters:
- text text to insert
vrScriptEditorPasteCopyBuffer
void vrScriptEditorPasteCopyBuffer()
Reads the clipboard, translates the contents and inserts them at the insertion point in the currently visible script editor tab.
vrScriptEditorSelectAll
void vrScriptEditorSelectAll()
Selects all the text in the currently visible script editor tab.
vrScriptEditorSelectWord
void vrScriptEditorSelectWord()
Selects the word surrounding the current insertion point in the currently visible script editor tab.
vrScriptEditorSetCurrentLine
void vrScriptEditorSetCurrentLine(
number lineNo
)
Set the cursor at the start of the specified line in the currently visible script editor tab.
Parameters:
- lineNo Line number
vrScriptEditorSetInsertAtMousePos
void vrScriptEditorSetInsertAtMousePos()
Places the text insert cursor in the currently visible script editor tab underneath the mouse cursor.
vrScriptEditorSetInsertPos
void vrScriptEditorSetInsertPos(
number pos
)
Sets the text insert cursor position in the currently visible script editor tab.
Parameters:
- pos Character position in the text
vrScriptEditorSetMarkPos
void vrScriptEditorSetMarkPos(
number pos
)
Sets the text mark cursor position in the currently visible script editor tab. This is for highlighting text.
Parameters:
- pos Character position in the text