ctrlText: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (formatting)
m (Text replacement - " \| *(game[0-9]|version[0-9]|gr[0-9]|serverExec|mp|pr|descr|s[0-9]|p[0-9]{1,3}|r[0-9]|x1?[0-9]|seealso) *= +" to " |$1= ")
(6 intermediate revisions by 2 users not shown)
Line 2: Line 2:


|game1= ofp
|game1= ofp
|version1= 1.75
|version1= 1.75


|game2= ofpe
|game2= ofpe
|version2= 1.00
|version2= 1.00


|game3= arma1
|game3= arma1
|version3= 1.00
|version3= 1.00


|game4= arma2
|game4= arma2
|version4= 1.00
|version4= 1.00


|game5= arma2oa
|game5= arma2oa
 
|version5= 1.50
|version5= 1.51


|game6= tkoh
|game6= tkoh
|version6= 1.00
|version6= 1.00


|game7= arma3
|game7= arma3
|version7= 0.50
|version7= 0.50


|gr1= GUI Control
|gr1= GUI Control


|descr= Returns the text of a control of the currently active user dialog. This command can be used on static texts, buttons, edit lines and active texts as well as for images, where it returns the image path. Does not work on HTML control and returns empty string "".
|descr= Returns the text of a control of the currently active user dialog. This command can be used on static texts, buttons, edit lines and active texts as well as for images, where it returns the image path. Does not work on HTML control and returns empty string "". Since Arma 3 v2.05.147765 supported control types are:
* [[CT_STATIC]]
* [[CT_EDIT]]
* [[CT_XKEYDESC]]
* [[CT_XBUTTON]]
* [[CT_SHORTCUTBUTTON]]
* [[CT_STRUCTURED_TEXT]]
* [[CT_BUTTON]]
* [[CT_ACTIVETEXT]]


|s1= '''ctrlText''' idc
|s1= [[ctrlText]]  idc


|p1= idc: [[Number]] - control ID
|p1= idc: [[Number]] - control ID
Line 39: Line 40:
|r1= [[String]] - The text or image path is returned, dependent on the control type
|r1= [[String]] - The text or image path is returned, dependent on the control type


|s2= '''ctrlText''' controlName
|s2= [[ctrlText]]  controlName


|p21= controlName: [[Control]]
|p21= controlName: [[Control]]


|r2= [[String]] - The text or image path is returned, dependent on the control type
|r2= [[String]] - The text or image path is returned, dependent on the control type
 
 
|x1= <code>_text = [[ctrlText]] 100;</code>
|x1= <code>_text = [[ctrlText]] 100;</code>



Revision as of 23:04, 19 June 2021

Hover & click on the images for description

Description

Description:
Returns the text of a control of the currently active user dialog. This command can be used on static texts, buttons, edit lines and active texts as well as for images, where it returns the image path. Does not work on HTML control and returns empty string "". Since Arma 3 v2.05.147765 supported control types are:
Groups:
GUI Control

Syntax

Syntax:
ctrlText idc
Parameters:
idc: Number - control ID
Return Value:
String - The text or image path is returned, dependent on the control type

Alternative Syntax

Syntax:
ctrlText controlName
Parameters:
controlName: Control
Return Value:
String - The text or image path is returned, dependent on the control type

Examples

Example 1:
_text = ctrlText 100;
Example 2:
_text = ctrlText _control;

Additional Information

See also:
ctrlTextSecondaryctrlSetTextArma: GUI Configuration

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