OnDgsElementLeave: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client event}} __NOTOC__ This event is fired when the user moves the mouse away from a DGS element even this DGS element is blocked by other DGS elements. '''But you have to set property enableFullEnterLeaveCheck of the DGS element to ''true'''''. ==Parameters== <syntaxhighlight lang="lua"> int absoluteX, int absoluteY </syntaxhighlight> * '''absoluteX''': the X position of the mouse cursor, in pixels, measured from the left side of the screen. * '''absoluteY'...")
 
No edit summary
Line 1: Line 1:
{{Client event}}
{{Client event}}
__NOTOC__  
__NOTOC__  
This event is fired when the user moves the mouse away from a DGS element even this DGS element is blocked by other DGS elements. '''But you have to set property [[enableFullEnterLeaveCheck]] of the DGS element to ''true'''''.
This event is fired when the user moves the mouse away from a DGS element even this DGS element is blocked by other DGS elements. '''But you have to set property [[DGS_General_Basic_Properties#enableFullEnterLeaveCheck|enableFullEnterLeaveCheck]] of the DGS element to ''true'''''.


==Parameters==  
==Parameters==  

Revision as of 11:52, 11 February 2023

This event is fired when the user moves the mouse away from a DGS element even this DGS element is blocked by other DGS elements. But you have to set property enableFullEnterLeaveCheck of the DGS element to true.

Parameters

int absoluteX, int absoluteY
  • 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 moved away from.

Example

This example shows a message when you move over a DGS element.

DGS = exports.dgs

local imageA = DGS:dgsCreateImage(300,300,400,400,_,false,_,tocolor(128,0,0,255))
local imageB = DGS:dgsCreateImage(0,0,400,400,_,false,imageA,tocolor(128,0,0,255))
DGS:dgsSetProperty(imageA,"enableFullEnterLeaveCheck",true)

addEventHandler( "onDgsElementLeave", imageA, function(aX, aY)
	outputChatBox( "You left DGS element at ("..tostring(aX)..", "..tostring(aY)..")")
end)