actionKeysNames: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<dd class="notedate">Posted on ([^<>]+) " to "<dd class="notedate">Posted on $1</dd> ")
(Return value in example)
(27 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma1
|game1= ofpe
|version1= 1.00


|1.00
|game2= arma1
|version2= 1.00


|gr1= Interaction
|game3= arma2
|version3= 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]].
|game4= arma2oa
|version4= 1.50


| '''actionKeysNames''' userAction
|game5= tkoh
|version5= 1.00


|p1= userAction: [[String]]
|game6= arma3
|version6= 0.50


| [[String]]
|gr1= Interaction


|s2= '''actionKeysNames''' [userAction, maxKeys]
|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]].


|p21= [userAction, maxKeys]: [[Array]]
|s1= [[actionKeysNames]] userAction


|p22= UserAction: [[String]]
|p1= userAction: [[String]]


|p23= maxKeys: [[Number]] - Maximum number of keys to return
|r1= [[String]]


|r2= [[String]]
|s2= [[actionKeysNames]]  [userAction, maxKeys, inputDevicePriority]


|s3= '''actionKeysNames''' [userAction, maxKeys, inputDevicePriority] {{Since|arma3|1.35.127928|y}}
|p21= userAction: [[String]]


|p31= [userAction, maxKeys, inputDevicePriority]: [[Array]]
|p22= maxKeys: [[Number]] - maximum number of keys to return


|p32= UserAction: [[String]]
|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


|p33= maxKeys: [[Number]] - Maximum number of keys to return
|r2= [[String]]


|p34= inputDevicePriority: [[String]] - Result sorted by inputDevicePriority with values:
|x1= <sqf>_list = actionKeysNames "ReloadMagazine"; // """R"" or ""XBox X"""</sqf>
* <tt>"Mouse"</tt>
* <tt>"Keyboard"</tt>
* <tt>"Stick"</tt>
* <tt>"Gamepad"</tt>
* <tt>"Tracker"</tt>
* <tt>"Combo"</tt> (mouse and keyboard combinations)
* <tt>"Controler"{{sic}}</tt> (any controller other than mouse or keyboard)
Other values are considered as:
* <tt>"Unsorted"</tt>


|r3= [[String]]
|seealso= [[actionKeys]] [[actionKeysImages]] [[actionKeysNamesArray]] [[actionName]] [[inputAction]]
 
}}
|x1= <code>_list = [[actionKeysNames]] "ReloadMagazine"; //"R"</code>


| [[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>
}}
}}
<dl class="command_description">
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on 20:14, 20 January 2010 (CET) </dd>
<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>
{{GameCategory|ofpe|Scripting Commands}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

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 { /* ... */ };