Skip to main content

(71) _TALKMSG_SP

Effect

Opens a basic textbox with a given message.

Syntax

_TALKMSG_SP(file, index, text_sound_effect?)
ArgumentDescriptionTypesRequired
fileThe file containing the message that gets shownStringRequired
indexThe label index for the message that gets shownWork, FloatRequired
sound_effectIf equal to 1, the text clicking sound effect plays when the textbox opensWork, FloatOptional

Example

_LDVAL(@LOCALWORK1, 4)
_TALKMSG_SP('dp_dummy_file', @LOCALWORK1)
_TALK_CLOSE()

The above script will set the work variable @LOCALWORK1 to 4.

Then, a textbox is opened with the text contained in the label at index 4 in the dp_dummy_file message file.

Finally, the textbox is closed.