OnDgsTextChange

From Multi Theft Auto: Wiki
Revision as of 10:23, 20 April 2018 by Thisdp (talk | contribs) (→‎Example)
Jump to navigation Jump to search

This event is triggered when a dgs element text has changed (either by the user or by dgsSetText).

Parameters

element theElement

Source

The source of this event is the element which was changed.

Example

This example creates a dgs editbox and prints a message when it has changed

DGS = exports.dgs
editBox = DGS:dgsCreateEdit(0.3,0.1,0.4,0.1,"",true)
addEventHandler("onDgsTextChanged", editBox, function() 
   outputChatBox("The box now reads: " .. DGS:dgsGetText(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