findDisplay: Difference between revisions
Jump to navigation
Jump to search
(add. ArmA2 classification) |
(add. note about RscTitles) |
||
Line 28: | Line 28: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<dd class="notedate">Posted on 15 June 2008</dd> | |||
<dt class="note>'''[[User:Kronzky|Kronzky]]'''</dt> | |||
<dd class="note"> | |||
findDisplay does ''not'' find displays defined under RscTitles (even when they are visible).<br> | |||
To access those types of displays, assign the resource to a global variable during its onLoad event: | |||
e.g. <pre>class RscTitles { | |||
class MyRsc { | |||
onLoad = "myDisplay = (_this select 0)"; | |||
... | |||
</pre> | |||
You can then use the stored value as you would for regular dialogs, e.g.<code>(myDisplay displayCtrl 1111) ctrlSetText "hello there");</code> | |||
</dd> | |||
<!-- Note Section END --> | <!-- Note Section END --> |
Revision as of 18:10, 15 June 2009
Description
- Description:
- Find display by its IDD (which is defined in the description.ext or config).
If the specified display can't be found "No display" is returned (which can be tested with the isNull command.) - Groups:
- Uncategorised
Syntax
Examples
- Example 1:
_display = findDisplay 1
Additional Information
- See also:
- displayCtrl
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
- Posted on 15 June 2008
- Kronzky
-
findDisplay does not find displays defined under RscTitles (even when they are visible).
To access those types of displays, assign the resource to a global variable during its onLoad event: e.g.class RscTitles { class MyRsc { onLoad = "myDisplay = (_this select 0)"; ...
You can then use the stored value as you would for regular dialogs, e.g.
(myDisplay displayCtrl 1111) ctrlSetText "hello there");