BIS fnc openFieldManual: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Fix category and description)
Line 2: Line 2:
____________________________________________________________________________________________
____________________________________________________________________________________________


| a3 |= Game
| arma3 |= Game


|1.36|= Game Version (number surrounded by NO SPACES)
|1.36|= Game Version (number surrounded by NO SPACES)
Line 8: Line 8:
____________________________________________________________________________________________
____________________________________________________________________________________________


|  
| Opens Field Manual in briefing (SP, MP Server, MP Client) and players's map or journal.
*Opens Field Manual in briefing (SP, MP Server, MP Client) and players's map or journal.<br>
Selects the topic and hint passed as parameters.
*Selects the topic and hint passed as parameters.<br>
Can apply a (search) filter if desired. |= Description
*Can apply a (search) filter if desired. |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


| ["topic", "hint", _display, "filter"] [[call]] [[BIS_fnc_openFieldManual]]|= Syntax
| [topic, hint, display, filter] call [[BIS_fnc_openFieldManual]] |= Syntax


|p1= [[String]] "topic" - Class name of a topic that will be selected in the opened Field Manual (e.g. "Damage") |= Parameter 1
|p1= topic: [[String]] - Class name of a topic that will be selected in the opened Field Manual (e.g. "Damage") |= Parameter 1
|p2= [[String]] "hint" - Class name of a hint that will be selected in the opened Field Manual (e.g. "HitDamage") |= Parameter 2
|p3= [[Display]] _display (Optional) - Desired parent [[Display]] to open the Field Manual display under |= Parameter 3
|p4= [[String]] "filter" (Optional) - Pre-filled search field filter in the opened Field Manual (recommended to use localized string) |= Parameter 4


| Nothing |= Return Value
|p2= hint: [[String]] - Class name of a hint that will be selected in the opened Field Manual (e.g. "HitDamage") |= Parameter 2


|p3= display: [[Display]] - (Optional) desired parent [[Display]] to open the Field Manual display under |= Parameter 3


|mp= |= Multiplayer Behaviour
|p4= filter: [[String]] - (Optional) pre-filled search field filter in the opened Field Manual (recommended to use localized string) |= Parameter 4
 
| [[Nothing]] |= Return Value
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 35: Line 34:
<dl class="command_description">
<dl class="command_description">
<!-- BEGIN Note Section -->
<!-- BEGIN Note Section -->
<!-- For example:
 
<dd class="notedate">Posted on Month Day, Year - Time (UTC)</dd>
<dt class="note">'''[[User:User Name|User Name]]'''</dt>
<dd class="note">This is an example note. It is true and verifiable, and contains a little code snippet.
<code>[[if]] ([[_this]] == anExample) [[then]] { [[hint]] "Leave it here for others to read"; };</code></dd>
-->
<!-- END Note Section -->
<!-- END Note Section -->
</dl>
</dl>


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
<!-- Appropriate categories go here -->
[[Category:Arma 3: Functions|{{uc:openFieldManual}}]]
[[Category:Arma 3: Functions|{{uc:{{PAGENAME}}}}]]
[[Category:Functions|{{uc:openFieldManual}}]]
[[Category:Functions|{{uc:openFieldManual}}]]

Revision as of 19:07, 21 April 2018

Hover & click on the images for description

Description

Description:
Opens Field Manual in briefing (SP, MP Server, MP Client) and players's map or journal. Selects the topic and hint passed as parameters. Can apply a (search) filter if desired.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[topic, hint, display, filter] call BIS_fnc_openFieldManual
Parameters:
topic: String - Class name of a topic that will be selected in the opened Field Manual (e.g. "Damage")
hint: String - Class name of a hint that will be selected in the opened Field Manual (e.g. "HitDamage")
display: Display - (Optional) desired parent Display to open the Field Manual display under
filter: String - (Optional) pre-filled search field filter in the opened Field Manual (recommended to use localized string)
Return Value:
Nothing

Examples

Example 1:
["Damage", "HitDamage"] call BIS_fnc_openFieldManual;

Additional Information

See also:
See also needed

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

Bottom Section