BIS fnc exportGUIBaseClasses: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <!-- (DIS)?CONTINUE Notes -->" to "")
m (Text replacement - "\[\[Arma 3 ([^ACHJKLMTZ|])([^|]+)\]\]" to "Arma 3: $1$2")
Line 26: Line 26:
|x1= <code>"all" [[call]] [[BIS_fnc_exportGUIBaseClasses]];</code>
|x1= <code>"all" [[call]] [[BIS_fnc_exportGUIBaseClasses]];</code>


|seealso= [[Arma: GUI Configuration]] [[Arma 3 Utilities]]
|seealso= [[Arma: GUI Configuration]] [[Arma 3: Utilities]]
}}
}}


Line 37: Line 37:
<dd class="notedate">Posted on September 28, 2018 - 14:37 (UTC)</dd>
<dd class="notedate">Posted on September 28, 2018 - 14:37 (UTC)</dd>
<dt class="note">[[User:killzone_kid|killzone_kid]]</dt>
<dt class="note">[[User:killzone_kid|killzone_kid]]</dt>
<dd class="note"> You can use [[Arma 3 Utilities]] to get the base class for your mission config. For example if you need <tt>RscPicture</tt> base, enter '''utils 2''' in the debug console and click '''LOCAL EXEC''', type <tt>RscPicture</tt> and press Enter, check '''Include Inherited''' box, then click '''COPY'''. The config is now copied to Clipboard and you can paste it in your [[description.ext]] and then derive your class from it.   
<dd class="note"> You can use [[Arma 3: Utilities]] to get the base class for your mission config. For example if you need <tt>RscPicture</tt> base, enter '''utils 2''' in the debug console and click '''LOCAL EXEC''', type <tt>RscPicture</tt> and press Enter, check '''Include Inherited''' box, then click '''COPY'''. The config is now copied to Clipboard and you can paste it in your [[description.ext]] and then derive your class from it.   
</dd>
</dd>

Revision as of 20:52, 7 April 2021

Hover & click on the images for description

Description

Description:
Description needed
Execution:
call
Groups:
GUIDiagnosticBroken Functions

Syntax

Syntax:
Syntax needed
Parameters:
mode: String - Mode, can be:
"Default" - Classic base classes like RscText or RscPicture
"3DEN" - Eden Editor base classes like ctrlStatic or ctrlStaticPicture
"all" - All GUI base classes, including more exotic ones
All modes are case sensitive. If the capitalization is disregarded the function will default to the "all" mode. In fact, there is no explicit "all" mode, rather it is the fallback if the mode is not one of "Default" or "3DEN".
Return Value:
Return value needed

Examples

Example 1:
"all" call BIS_fnc_exportGUIBaseClasses;

Additional Information

See also:
Arma: GUI Configuration Arma 3: Utilities

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



Posted on September 28, 2018 - 14:37 (UTC)
killzone_kid
You can use Arma 3: Utilities to get the base class for your mission config. For example if you need RscPicture base, enter utils 2 in the debug console and click LOCAL EXEC, type RscPicture and press Enter, check Include Inherited box, then click COPY. The config is now copied to Clipboard and you can paste it in your description.ext and then derive your class from it.