RekallMain functions
void messageBox
(
string message,
string caption
)
Show a simple popup message box
-
Return: void:
-
Arg: string: Message to display
-
Arg: string: Popup box caption
number queryBox
(
string message,
string caption
)
Show a simple Yes/No query box
-
Return: number: Non-zero if Yes selected
-
Arg: string: Message to display
-
Arg: string: Popup box caption
string promptBox
(
string message,
string default,
string caption
)
Show a simple prompt box
-
Return: string: Entered value or None if cancelled
-
Arg: string: Message to display
-
Arg: string: Default value
-
Arg: string: Popup box caption
string choiceBox
(
string message,
list entries,
string caption
)
Show a popup with selection combobox
-
Return: string: Selected value
-
Arg: string: Message to display
-
Arg: list: List of entries for combobox
-
Arg: string: Popup box caption
void logscript
(
string message
)
Write message to script log window
-
Return: void:
-
Arg: string: Message to be written