actionKeysImages: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[[cC]ategory:[sS]cripting [cC]ommands\|[a-z A-Z 0-9_]+\]\]" to "")
m (Text replacement - "\|x([0-9])= <sqf>([^\/: ]+)([^;])<\/sqf>" to "|x$1= <sqf>$2$3;</sqf>")
 
(13 intermediate revisions by the same 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
 
|game3= arma2
|version3= 1.00
 
|game4= arma2oa
|version4= 1.50
 
|game5= tkoh
|version5= 1.00
 
|game6= arma3
|version6= 0.50


|gr1= Interaction
|gr1= Interaction


| Returns a list of button images or names assigned to the given user action. A maximum of maxKeys keys is listed. You can find the action names in config class ControllerSchemes or [[:Category:Key Actions|user action names]].
|descr= Returns a list of button images or names assigned to the given user action.
A maximum of maxKeys keys is listed.
You can find the action names in config class ControllerSchemes or [[:Category:Key Actions|user action names]].


| [[Structured Text]] <nowiki>=</nowiki> '''actionKeysImages''' userAction
|s1= [[actionKeysImages]] userAction


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


| [[Structured Text]]
|r1= [[Structured Text]]
 
|s2= [[Structured Text]] <nowiki>=</nowiki> '''actionKeysImages''' [userAction, maxKeys]


|p21= [userAction, maxKeys]: [[Array]]
|s2= [[actionKeysImages]] [userAction, maxKeys]


|p22= userAction: [[String]]
|p21= userAction: [[String]]


|p23= maxKeys: [[Number]]
|p22= maxKeys: [[Number]]


|r2= [[Structured Text]]
|r2= [[Structured Text]]
 
|x1= <pre>_text = actionKeysImages "ReloadMagazine"</pre>
|x2= <pre>_reload = actionKeysImages ["ReloadMagazine",1]</pre>will return '''"R"''' (incl. the quotation marks!)
|  [[actionKeys]], [[actionKeysNames]], [[actionKeysNamesArray]], [[actionName]], [[inputAction]]
}}


|x1= <sqf>_text = actionKeysImages "ReloadMagazine";</sqf>


|x2= <sqf>_reload = actionKeysImages ["ReloadMagazine", 1] // will return "R" (incl. the quotation marks!)</sqf>


{{GameCategory|ofpe|Scripting Commands}}
|seealso= [[actionKeys]] [[actionKeysNames]] [[actionKeysNamesArray]] [[actionName]] [[inputAction]]
{{GameCategory|arma1|Scripting Commands}}
}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

Latest revision as of 23:43, 28 June 2022

Hover & click on the images for description

Description

Description:
Returns a list of button images or names assigned to the given user action. A maximum of maxKeys keys is listed. You can find the action names in config class ControllerSchemes or user action names.
Groups:
Interaction

Syntax

Syntax:
actionKeysImages userAction
Parameters:
userAction: String
Return Value:
Structured Text

Alternative Syntax

Syntax:
actionKeysImages [userAction, maxKeys]
Parameters:
userAction: String
maxKeys: Number
Return Value:
Structured Text

Examples

Example 1:
_text = actionKeysImages "ReloadMagazine";
Example 2:
_reload = actionKeysImages ["ReloadMagazine", 1] // will return "R" (incl. the quotation marks!)

Additional Information

See also:
actionKeys actionKeysNames 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