Difference between revisions of "findDisplay"
Jump to navigation
Jump to search
m (VBS2 scripting category removal) |
m (Text replace - "</dt>" to "") |
||
Line 32: | Line 32: | ||
<dd class="notedate">Posted on 15 June 2008</dd> | <dd class="notedate">Posted on 15 June 2008</dd> | ||
− | <dt class="note>'''[[User:Kronzky|Kronzky]]''' | + | <dt class="note>'''[[User:Kronzky|Kronzky]]''' |
<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> | ||
Line 46: | Line 46: | ||
<dd class="notedate">Posted on 17 March 2010</dd> | <dd class="notedate">Posted on 17 March 2010</dd> | ||
− | <dt class="note>'''[[User:Hendo|Hendo]]''' | + | <dt class="note>'''[[User:Hendo|Hendo]]''' |
<dd class="note"> | <dd class="note"> | ||
I posted a tutorial on finding and using displays [[User:Hendo:Tutorials:Display|here.]] | I posted a tutorial on finding and using displays [[User:Hendo:Tutorials:Display|here.]] |
Revision as of 14:28, 21 October 2011
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");
- Posted on 17 March 2010
- Hendo
- I posted a tutorial on finding and using displays here.