Button T Directive

Syntax

%T= Bubble_Help_Text %

Arguments

Bubble_Help_Text

Character. The text of the bubble help or a variable containing the bubble help text.

Description

The T directive defines bubble help for a button.  When you have multiple directives in a Format string, you separate them with semi-colons ";".

Example

The following script shows how the contents of the bubble help can come from a variable.

dim copy as C
copy = "Press this button to copy your work."
ui_dlg_box("test",<<%dlg%
<%T=copy;I=$sys_warning%!copy> The tooltip for this button is an expression. It is contained in the 'copy' variable.;
;
;
%dlg%)

The following script produces a button with the bubble help.

result = ui_dlg_box("Bubble Help for Button",<<%dlg%
Expression:{sp}[.40expression];
{lf};
<%T=Please press me%10,3.Save> <10,3&Cancel>
%dlg%)
images/XD_Button_bubble_help.gif

See Also