actionKeysNames: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
(Return value in example)
 
(64 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma |= Game name
|game1= ofpe
|version1= 1.00


|1.00|= Game version
|game2= arma1
____________________________________________________________________________________________
|version2= 1.00


| Returns a list of button names assigned to the given user action. You can find the action names in config class ControllerSchemes or [[:Category:Key Actions|user action names]]. |= Description
|game3= arma2
____________________________________________________________________________________________
|version3= 1.00


| '''actionKeysNames''' userAction |= Syntax
|game4= arma2oa
|version4= 1.50


|p1= userAction: [[String]] |= Parameter 1
|game5= tkoh
|version5= 1.00


| [[String]] |= Return value
|game6= arma3
____________________________________________________________________________________________
|version6= 0.50


|s2= '''actionKeysNames''' [userAction, maxKeys] |= Syntax 2
|gr1= Interaction


|p21= [userAction, maxKeys]: [[Array]] |= Parameter 1
|descr= Returns a list of button names assigned to the given user action.
Action names can be found in config class {{hl|ControllerSchemes}} or [[:Category:Key Actions|user action names]].


|p22= UserAction: [[String]] |= Parameter 2
|s1= [[actionKeysNames]] userAction


|p23= maxKeys: [[Number]] - Maximum number of keys to return |= Parameter 3
|p1= userAction: [[String]]


|r2= [[String]] |= Return value
|r1= [[String]]
____________________________________________________________________________________________


|s3= '''actionKeysNames''' [userAction, maxKeys, inputDevicePriority]            ''(Since Arma 3 v1.35.127928)''|= Syntax 2
|s2= [[actionKeysNames]]  [userAction, maxKeys, inputDevicePriority]


|p41= [userAction, maxKeys, inputDevicePriority]: [[Array]] |= Parameter 1
|p21= userAction: [[String]]


|p42= UserAction: [[String]] |= Parameter 2
|p22= maxKeys: [[Number]] - maximum number of keys to return


|p43= maxKeys: [[Number]] - Maximum number of keys to return |= Parameter 3
|p23= inputDevicePriority: [[String]] - result sorted by inputDevicePriority with values:
* {{hl|"Mouse"}}
* {{hl|"Keyboard"}}
* {{hl|"Stick"}}
* {{hl|"Gamepad"}}
* {{hl|"Tracker"}}
* {{hl|"Combo"}} (mouse and keyboard combinations)
* {{sic|{{hl|"Controler"}}}} (any controller other than mouse or keyboard)
Other values are considered as:
* {{hl|"Unsorted"}}
|p23since= arma3 1.36


|p44= inputDevicePriority: [[String]] - Result sorted by inputDevicePriority with values 'Mouse','Keyboard','Stick','Gamepad','Trackir','Combo' (mouse and keyboard combinations),'Controler' (any controller other than mouse or keyboard). Other values are considered as 'Unsorted'.
|r2= [[String]]


|r3= [[String]] |= Return value
|x1= <sqf>_list = actionKeysNames "ReloadMagazine"; // """R"" or ""XBox X"""</sqf>
____________________________________________________________________________________________
 
|x1= <code>_list = [[actionKeysNames]] "ReloadMagazine"; //"R"</code> |= Example 1
____________________________________________________________________________________________


| [[actionKeys]], [[actionKeysImages]], [[actionKeysNamesArray]], [[actionName]], [[inputAction]] |= See also
|seealso= [[actionKeys]] [[actionKeysImages]] [[actionKeysNamesArray]] [[actionName]] [[inputAction]]
}}


{{Note
|user= WGL.Q
|timestamp= 20100120201400
|text= The return type is a stacked string. A string inside a string. To compare use first single and inside double quotes:<br>
<sqf>if (actionKeysNames "User1" == '"W"') then { /* ... */ };</sqf>
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on 20:14, 20 January 2010 (CET)
<dt class="note">'''[[User:WGL.Q|kju]]'''
<dd class="note">The return type is a stacked string. A string inside a string. To compare use first single and inside double quotes:<br>
if ((actionKeysNames "User1") == '"W"') then ...
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|ACTIONKEYSNAMES]]
[[Category:Scripting Commands OFP Elite |ACTIONKEYSNAMES]]
[[Category:Scripting Commands ArmA|ACTIONKEYSNAMES]]
[[Category:Command_Group:_Interaction|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on October 26, 2014 - 11:26 (UTC)</dd>
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
<dd class="note">
inputDevicePriority 'Controler' is not a spelling mistake in description.
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 02:20, 4 August 2023

Hover & click on the images for description

Description

Description:
Returns a list of button names assigned to the given user action. Action names can be found in config class ControllerSchemes or user action names.
Groups:
Interaction

Syntax

Syntax:
actionKeysNames userAction
Parameters:
userAction: String
Return Value:
String

Alternative Syntax

Syntax:
actionKeysNames [userAction, maxKeys, inputDevicePriority]
Parameters:
userAction: String
maxKeys: Number - maximum number of keys to return
since Arma 3 logo black.png1.36
inputDevicePriority: String - result sorted by inputDevicePriority with values:
  • "Mouse"
  • "Keyboard"
  • "Stick"
  • "Gamepad"
  • "Tracker"
  • "Combo" (mouse and keyboard combinations)
  • "Controler"sic (any controller other than mouse or keyboard)
Other values are considered as:
  • "Unsorted"
Return Value:
String

Examples

Example 1:
_list = actionKeysNames "ReloadMagazine"; // """R"" or ""XBox X"""

Additional Information

See also:
actionKeys actionKeysImages actionKeysNamesArray actionName inputAction

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
WGL.Q - c
Posted on Jan 20, 2010 - 20:14 (UTC)
The return type is a stacked string. A string inside a string. To compare use first single and inside double quotes:
if (actionKeysNames "User1" == '"W"') then { /* ... */ };