OnDgsWindowClose: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Cancel event)
 
(5 intermediate revisions by one other user not shown)
Line 2: Line 2:
__NOTOC__  
__NOTOC__  
This event is fired when a dgs-dxwindow is being closed.
This event is fired when a dgs-dxwindow is being closed.
Notice: You can cancel this event and set close animation.
 
Notice: You can cancel this event and set animation.


==Parameters==  
==Parameters==  
Line 9: Line 10:
==Source==
==Source==
The [[event system#Event source|source]] of this event is the dgs-dxwindow that is being closed.
The [[event system#Event source|source]] of this event is the dgs-dxwindow that is being closed.
==Cancel event==
When you cancel this event, the window is not destroyed.


==Example==  
==Example==  
This example outputs a message with the selected item when an item is selected.
This example shows how to make a simple closing animation.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
DGS = exports.dgs
DGS = exports.dgs


window = DGS:dgsDxCreateWindow(200,200,300,300,"test",false)
window = DGS:dgsCreateWindow(200,200,300,300,"test",false)


function windowClosed()
function windowClosed()
Line 24: Line 28:
end,1100,1)
end,1100,1)
end
end
addEventHandler("onClientDgsDxWindowClose",window,windowClosed)
addEventHandler("onDgsWindowClose",window,windowClosed)
</syntaxhighlight>
</syntaxhighlight>



Latest revision as of 18:48, 13 April 2021

This event is fired when a dgs-dxwindow is being closed.

Notice: You can cancel this event and set animation.

Parameters

None

Source

The source of this event is the dgs-dxwindow that is being closed.

Cancel event

When you cancel this event, the window is not destroyed.

Example

This example shows how to make a simple closing animation.

DGS = exports.dgs

window = DGS:dgsCreateWindow(200,200,300,300,"test",false)

function windowClosed()
	cancelEvent()
	DGS:dgsAlphaTo(window,0,false,"OutQuad",1000)
	setTimer(function()
		destroyElement(window)
	end,1100,1)
end
addEventHandler("onDgsWindowClose",window,windowClosed)

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