OnDgsEditSwitched

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

This event is triggered each time the user switch the dgs edit with the key "tab" and after the switch operation finishes.

Parameters

element Previous
  • Previous: Previous edit

Source

The source of this event is the dgs edit switched to.

Example

DGS = exports.dgs

edit = DGS:dgsCreateEdit(0.3,0.3,0.2,0.05,"1",true)
edit2 = DGS:dgsCreateEdit(0.3,0.4,0.2,0.05,"2",true)
edit3 = DGS:dgsCreateEdit(0.3,0.5,0.2,0.05,"3",true)
edit4 = DGS:dgsCreateEdit(0.3,0.6,0.2,0.05,"4",true)

function onSwitch(Previous)
	local text = DGS:dgsGetText(Previous)
	outputChatBox("Previous:"..text)
end

addEventHandler("onDgsEditSwitched", root, onSwitch)

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