OnClientKey: Difference between revisions
Jump to navigation
Jump to search
UniOnDennis (talk | contribs) No edit summary |
m (typo) |
||
Line 14: | Line 14: | ||
==Cancel effect== | ==Cancel effect== | ||
{{New items|5620|1.4| | {{New items|5620|1.4| | ||
If this event is [[Event system#Canceling|canceled]], then all GTA and MTA binds, bound to the canceled key, won't be | If this event is [[Event system#Canceling|canceled]], then all GTA and MTA binds, bound to the canceled key, won't be triggered. | ||
}} | }} | ||
Revision as of 08:58, 13 February 2014
This event triggers whenever the user presses a button on their keyboard. This event can also be used to see if the client scrolls his mousewheel.
Parameters
string button, bool pressOrRelease
- button: This refers the button pressed.
- pressOrRelease: This refers to whether they were pressing or releasing the key, true when pressing, false when releasing.
Source
The source of this event is the client's root element.
Cancel effect
Example
This example will say in chatbox every time the user presses down a a key.
function playerPressedKey(button, press) if (press) then -- Only output when they press it down outputChatBox("You pressed the "..button.." key!") end end addEventHandler("onClientKey", root, playerPressedKey)
This example outputs if the client moves his mousewheel.
addEventHandler( "onClientKey", root, function(button,press) -- Since mouse_wheel_up and mouse_wheel_down cant return a release, we dont have to check the press. if button == "mouse_wheel_up" or button == "mouse_wheel_down" then outputDebugString( button .. " moved." ) return true end return false end )
See Also
GUI events
Input
GUI
- onClientGUIAccepted
- onClientGUIBlur
- onClientGUIChanged
- onClientGUIClick
- onClientGUIComboBoxAccepted
- onClientGUIDoubleClick
- onClientGUIFocus
- onClientGUIMouseDown
- onClientGUIMouseUp
- onClientGUIMove
- onClientGUIScroll
- onClientGUISize
- onClientGUITabSwitched
- onClientMouseEnter
- onClientMouseLeave
- onClientMouseMove
- onClientMouseWheel
Client event functions
- triggerLatentServerEvent
- triggerServerEvent
- Shared
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled