Application.SetSysTrayTooltip

boolean Application.SetSysTrayTooltip (

string TooltipText,

boolean Show = false )

Description

Sets the application's system tray icon tooltip text and optionally shows it.

Note: This action requires that you specify that the application contains a system tray icon. This setting can be configured on the Appearance tab of Project > Settings in the Taskbar area.

Parameters

TooltipText

(string) The tooltip text to display for the system tray icon.

Show

(boolean) Whether to immediately show the new tooltip text, or wait until the user accesses it.

VALUE

DESCRIPTION

true

Show the new tooltip text immediately. This means that the system tray icon will gain focus and the tooltip will be shown.

false

Set the new tooltip text, but don't show the tooltip window until the user accesses it. (Default)

Returns

(boolean) True if the action was successful, and false if it failed. You can use Application.GetLastError to determine whether this action failed, and why.

ResultVariable

When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.

See also: Related Actions