OnDgsMouseLeave: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 17: Line 17:
This example shows a message when you move the mouse away from a DGS element.
This example shows a message when you move the mouse away from a DGS element.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addEventHandler("onClientDgsDxMouseLeave", root, function(aX, aY)
addEventHandler("onClientDgsMouseLeave", root, function(aX, aY)
     outputChatBox("You're no longer pointing at a DGS element at (" .. tostring(aX) .. ", " .. tostring(aY) .. ")")
     outputChatBox("You're no longer pointing at a DGS element at (" .. tostring(aX) .. ", " .. tostring(aY) .. ")")
end)
end)

Revision as of 13:30, 20 January 2018

This event is fired when the user moves the mouse away from a DGS 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 DGS element that was switched from, or nil if it doesn't exist

Source

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

Example

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

addEventHandler("onClientDgsMouseLeave", root, function(aX, aY)
    outputChatBox("You're no longer pointing at a DGS element at (" .. tostring(aX) .. ", " .. tostring(aY) .. ")")
end)

See Also

DGS events

General

Check Box

Combo Box

Drag'N Drop

Edit

Grid List

Menu

Selector

Mouse

Radio Button

Switch Button

Tab

Animation

Plugin

Media

Color Picker

QRCode

Remote Image

Client event functions