OnClientPaste

From Multi Theft Auto: Wiki
Revision as of 16:23, 10 June 2019 by FileEX (talk | contribs) (Created page with "{{Client event}} __NOTOC__ This event triggers when user paste whatever ('''CTRL + V'''). '''This event isn't triggers if menu or console is visible or if any browser is focu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This event triggers when user paste whatever (CTRL + V). This event isn't triggers if menu or console is visible or if any browser is focused, or if cursor is invisible.

Parameters

string clipboardText
  • clipboardText: a string representing the pasted value from clipboard.

Source

The source of this event is the client's root element.

Example

Example show what player paste from clipboard.

addEventHandler("onClientPaste", root, function(text)
    outputChatBox("Clipboard value: "..text, 255,255,255)
end)

See Also

Client event functions