HelpText — Client
GetResourceName
Returns the helptext resource name.
local name = Bridge.HelpText.GetResourceName()
-- Returns: string (always "default")Description:
Returns the name of the HelpText module resource. Used for internal identification. Always returns "default" for the built-in HelpText module.
ShowHelpText
Displays a help text notification on screen.
Bridge.HelpText.ShowHelpText(text)| Parameter | Type | Description |
|---|---|---|
| text | string | Text to display |
HideHelpText
Hides the currently displayed help text.
Bridge.HelpText.HideHelpText()