Difference between revisions of "GetControl"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Geckbot
(Automated import of articles)
 
imported>Odessa
(clarified/expanded)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
'''GetControl'''
{{Function
{{Function
  |origin = FOSE1
  |origin = FOSE1
  |summary = Returns the key assigned to a control
  |summary = Returns the key (as its [[IsKeyPressed|int code]]) assigned to a control, specified by it's [[TapControl|int code]].
  |name = GetControl
  |name = GetControl
  |returnType = int
  |returnType = KeyCode:int
  |arguments =  
  |arguments =  
   {{FunctionArgument
   {{FunctionArgument
Line 11: Line 10:
   }}
   }}
}}
}}
==Example==
<pre>
int iPOVKey
set iPOVKey to GetControl 13
</pre>
==See Also==
*[[TapControl]]
*[[IsKeyPressed]]
*[[TapKey]]
*[[HoldKey]]
[[Category:Functions_(FOSE)]]
[[Category:Functions_(FOSE)]]

Latest revision as of 05:45, 16 January 2015

< [[::Category:Functions|Category:Functions]]

A function added by the Fallout Script Extender.

Description

Returns the key (as its int code) assigned to a control, specified by it's int code.

Syntax

[help]
(KeyCode:int) GetControl controlCode:int

Example

int iPOVKey
set iPOVKey to GetControl 13

See Also