ctrlText: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
 
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *T([a-z ])" to "$1 - t$2")
 
(67 intermediate revisions by 14 users not shown)
Line 1: Line 1:
back to [[Scripting_Reference#C|COMREF]]
{{RV|type=command


<h2 style="color:#000066"> '''ctrlText ''idc'''''</h2>
|game1= ofp
|version1= 1.75


|game2= ofpe
|version2= 1.00


'''Operand types:'''
|game3= arma1
|version3= 1.00


'''idc:''' [[Number]]
|game4= arma2
|version4= 1.00


'''Type of returned value:'''
|game5= arma2oa
|version5= 1.50


[[String]]
|game6= tkoh
|version6= 1.00


'''Description:'''
|game7= arma3
|version7= 0.50


Return text shown in control with id '''idc''' of topmost user [[dialog]].
|gr1= GUI Control


Can be used for static texts, buttons, edit lines and active texts.
|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


'''Example:'''
|p1= idc: [[Number]] - control ID


_message = '''ctrlText''' 100
|r1= [[String]] - the text or image path is returned, dependent on the control type
 
|s2= [[ctrlText]]  controlName
 
|p21= controlName: [[Control]]
 
|r2= [[String]] - the text or image path is returned, dependent on the control type
 
|x1= <sqf>_text = ctrlText 100;</sqf>
 
|x2= <sqf>_text = ctrlText _control;</sqf>
 
|seealso= [[ctrlTextSecondary]] [[ctrlSetText]] [[Arma: GUI Configuration]]
}}

Latest revision as of 16:50, 8 November 2023

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:
ctrlTextSecondary ctrlSetText Arma: 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