ctrlSetText: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) |
Killzone Kid (talk | contribs) (moved note into description) |
||
Line 13: | Line 13: | ||
| 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. | | 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. |DESCRIPTION= | Read [[Dialog Control]] for more information about user dialogs and controls. | ||
<br><br>{{Warning | <tt>[[ctrlSetText]] [idc, text]</tt> syntax does not support [[CT_SHORTCUTBUTTON]], but the alternative syntax <tt>controlName [[ctrlSetText]] text</tt> does. }} |DESCRIPTION= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 36: | Line 38: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|x1= < | |x1= <code>[[ctrlSetText]] [100, "Hello world"]; // for Dialogs</code> |EXAMPLE1= | ||
|x2= < | |x2= <code>_control [[ctrlSetText]] "Hello world."; // for Displays</code> |EXAMPLE2= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 48: | Line 50: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<!-- Note Section END --> | <!-- Note Section END --> | ||
</dl> | </dl> | ||
Line 66: | Line 63: | ||
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]] | ||
Revision as of 18:47, 24 September 2019
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.
- 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
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.5
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: Uncategorised
- Scripting Commands: Local Effect
- Scripting Commands OFP 1.99
- Scripting Commands OFP 1.96
- Scripting Commands ArmA
- Command Group: GUI Control
- Scripting Commands ArmA2
- Scripting Commands Arma 3
- Scripting Commands Take On Helicopters