ctrlSetText

From Bohemia Interactive Community
Revision as of 19:47, 24 September 2019 by Killzone Kid (talk | contribs) (moved note into description)
Jump to navigation Jump to search
Hover & click on the images for description

Description

Description:
Set the text of a control of the currently active user dialog or display. This command can be used for: static texts, buttons, edit lines and active texts as well as for images, where you can use it to set the image path. Read Dialog Control for more information about user dialogs and controls.

ctrlSetText [idc, text] syntax does not support CT_SHORTCUTBUTTON, but the alternative syntax controlName ctrlSetText text does.
Groups:
Uncategorised

Syntax

Syntax:
ctrlSetText [idc, text]
Parameters:
[idc, text]: Array
idc: Integer - control ID
text: String - text or image path, depending on the control type
Return Value:
Nothing

Alternative Syntax

Syntax:
controlName ctrlSetText text
Parameters:
controlName: Control
text: String
Return Value:
Nothing

Examples

Example 1:
ctrlSetText [100, "Hello world"]; // for Dialogs
Example 2:
_control ctrlSetText "Hello world."; // for Displays

Additional Information

See also:
ctrlText

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