findDisplay: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(add. note about RscTitles)
(expanded note)
Line 33: Line 33:
<dd class="note">
<dd class="note">
findDisplay does ''not'' find displays defined under RscTitles (even when they are visible).<br>
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:
To access those types of displays, either assign the resource to a global variable, or pass its [[this]] value to a script, during the onLoad event:
e.g. <pre>class RscTitles {
e.g. <pre>class RscTitles {
   class MyRsc {
   class MyRsc {
     onLoad = "myDisplay = (_this select 0)";
     onLoad = "myDisplay = (_this select 0)"; // or
    // onLoad = "_this execVM 'myDialog.sqf'";
     ...
     ...
</pre>
</pre>

Revision as of 19:40, 15 June 2009

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

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

Syntax:
Display = findDisplay idd
Parameters:
idd: Number
Return Value:
Display

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, either assign the resource to a global variable, or pass its this value to a script, during the onLoad event: e.g.
class RscTitles {
  class MyRsc {
     onLoad = "myDisplay = (_this select 0)"; // or
     // onLoad = "_this execVM 'myDialog.sqf'";
     ...

You can then use the stored value as you would for regular dialogs, e.g.(myDisplay displayCtrl 1111) ctrlSetText "hello there");

Bottom Section