OnDgsPositionChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 16: Line 16:
local window = DGS:dgsCreateWindow(200,200,600,400,"Test Window",false)
local window = DGS:dgsCreateWindow(200,200,600,400,"Test Window",false)


addEventHandler("onDgsGUIPositionChange",root,function()
addEventHandler("onDgsPositionChange",root,function()
outputChatBox("You have moved :"..DGS:dgsGetType(source))
outputChatBox("You have moved :"..DGS:dgsGetType(source))
end)
end)

Revision as of 13:32, 20 January 2018

This event is triggered each time the position of a DGS element changed.

Parameters

None

Source

The source of this event is the DGS element whose position has changed.

Example

This example would output to the chatbox what the player moved.

DGS = exports.dgs

local window = DGS:dgsCreateWindow(200,200,600,400,"Test Window",false)

addEventHandler("onDgsPositionChange",root,function()
	outputChatBox("You have moved :"..DGS:dgsGetType(source))
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