OnDgsMouseHover

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This event will be triggered continuously when a dgs element is being hovered.

Parameters

int tick, int absoluteX, int absoluteY
  • tick: A number indicates how long the dgs element has been hovered in millisecond.
  • 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.

Source

The source of this event is the DGS element that was pointed at.

Example

This example keeps showing a message when you move over a DGS element.

addEventHandler( "onDgsMouseHover", root, function(tick, aX, aY)
	outputChatBox( "You're hovering on a DGS element at ("..tostring(aX)..", "..tostring(aY).."), and there has been "..tick.." ms")
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