ctrlSetTooltip: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Undo revision 99405 by Demellion (talk) works fine for me)
(example)
Line 19: Line 19:
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>_control ctrlSetTooltip "tooltip"</pre> |= Example 1
|x1= <code>_control [[ctrlSetTooltip]] "tooltip"</code> |= Example 1
|x2= <code>(([[findDisplay]] 10000) [[displayCtrl]] 10001) '''ctrlSetTooltip''' "ThisIsAGoodTip"
|x2= <code>(([[findDisplay]] 10000) [[displayCtrl]] 10001) '''ctrlSetTooltip''' "ThisIsAGoodTip"
</code> |= Example 2
</code> |= Example 2
|x3= <code>[[with]] [[uiNamespace]] [[do]]
{
bar = [[findDisplay]] 46 [[createdDsplay]] "RscDisplayEmpty" [[ctrlCreate]] ["RscProgress", -1];
bar [[ctrlSetPosition]] [0,0,1,0.01];
bar [[ctrlCommit]] 0;
bar [[progressSetPosition]] 0.75;
bar [[ctrlSetTooltip]] "lalalalalalalala";
};</code> |= Example 3
____________________________________________________________________________________________
____________________________________________________________________________________________


|  |= See also
|[[ctrlSetTooltipColorBox]], [[ctrlSetTooltipColorShade]], [[ctrlSetTooltipColorText]] |= See also


}}
}}

Revision as of 23:45, 13 April 2017

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Sets tooltip text of given control.
Groups:
Uncategorised

Syntax

Syntax:
control ctrlSetTooltip text
Parameters:
control: Control - Any control type, (except for CT_STATIC & CT_STRUCTURED_TEXT, although Arma 3 now supports these too)
text: String
Return Value:
Nothing

Examples

Example 1:
_control ctrlSetTooltip "tooltip"
Example 2:
((findDisplay 10000) displayCtrl 10001) ctrlSetTooltip "ThisIsAGoodTip"
Example 3:
with uiNamespace do { bar = findDisplay 46 createdDsplay "RscDisplayEmpty" ctrlCreate ["RscProgress", -1]; bar ctrlSetPosition [0,0,1,0.01]; bar ctrlCommit 0; bar progressSetPosition 0.75; bar ctrlSetTooltip "lalalalalalalala"; };

Additional Information

See also:
ctrlSetTooltipColorBoxctrlSetTooltipColorShadectrlSetTooltipColorText

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section