OnClientChatClose
Jump to navigation
Jump to search
onClientChatClose
Triggered when the built-in client chat input is closed.
Availability
This event is available in client-side scripts.
Callback signature
onClientChatClose()
Parameters
This event does not pass parameters to its handler.
Examples
Handle the event:
addEventHandler("onClientChatClose", root, function()
outputDebugString("Chat input closed")
end)
Notes
- Escape closes chat before normal game-menu handling.