OnClientMouseLeave: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 9: Line 9:
* '''absoluteX''':  the X position of the mouse cursor, in pixels, measured from the left side of the screen.
* '''absoluteX''':  the X position of the mouse cursor, in pixels, measured from the left side of the screen.
* '''absoluteY''':  the Y position of the mouse cursor, in pixels, measured from the top of the screen.
* '''absoluteY''':  the Y position of the mouse cursor, in pixels, measured from the top of the screen.
* '''enteredGUI''': is the GUI element that was switched from, or nil if it doesn't exist
* '''enteredGUI''': is the GUI element that was switched from, or ''nil'' if it doesn't exist.


==Source==
==Source==
Line 25: Line 25:


==See Also==
==See Also==
===GUI events===
{{GUI_events}}
{{GUI_events}}
===Client event functions===
===Client event functions===
{{Client_event_functions}}
{{Client_event_functions}}

Latest revision as of 14:32, 20 May 2018

This event is fired when the user moves the mouse away from a GUI element.

Parameters

int absoluteX, int absoluteY, element enteredGUI
  • absoluteX: the X position of the mouse cursor, in pixels, measured from the left side of the screen.
  • absoluteY: the Y position of the mouse cursor, in pixels, measured from the top of the screen.
  • enteredGUI: is the GUI element that was switched from, or nil if it doesn't exist.

Source

The source of this event is the GUI element that the mouse was moved from.

Example

This example shows a message when you move the mouse away from a GUI element.

addEventHandler("onClientMouseLeave", getRootElement(), function(aX, aY)
    outputChatBox("You're no longer pointing at a GUI element at (" .. tostring(aX) .. ", " .. tostring(aY) .. ")")
end)

See Also

Input

GUI


Client event functions