ctrlSetTooltip: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 25: Line 25:
|x3= <code>[[with]] [[uiNamespace]] [[do]]  
|x3= <code>[[with]] [[uiNamespace]] [[do]]  
{
{
bar = [[findDisplay]] 46 [[createDsplay]] "RscDisplayEmpty" [[ctrlCreate]] ["RscProgress", -1];  
bar = [[findDisplay]] 46 [[createDisplay]] "RscDisplayEmpty" [[ctrlCreate]] ["RscProgress", -1];  
bar [[ctrlSetPosition]] [0,0,1,0.01];  
bar [[ctrlSetPosition]] [0,0,1,0.01];  
bar [[ctrlCommit]] 0;
bar [[ctrlCommit]] 0;

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 createDisplay "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