Display Tooltip depending on IF statement

Kladkul

Member
Hail ProgressTalkers,

Here's a brief overview of what I'm doing: I've got a browse in a window that will display a list of 1 or 2 things. 1 (Checkbox unchecked) it will display type1, or 2 (Checkbox checked) it will display type1 and type2. If the user selects type2 and tries to download it to a .txt it is not allowed.

Is there a way to display a tooltip based on an IF statement? My first thought would be to create a function but can that be used in the tooltip option. Any ideas would be appreciated.
 

RKR

Member
IF <condition> THEN ASSIGN <widget-handle>:TOOLTIP = "Your tooltip text".
ELSE <widget-handle>:TOOLTIP = "".
 
Top