OnDgsCheckBoxChange

From Multi Theft Auto: Wiki

This event is triggered each time the dgs check box state has changed.

Parameters

bool state

Source

The source of this event is the dgs check box.

Example

DGS = exports.dgs

local cb1 = DGS:dgsCreateCheckBox(300,300,200,30, "CheckBox Test 1", false)
local cb2 = DGS:dgsCreateCheckBox(300,320,200,30, "CheckBox Test 2", false)

function onStateChanged(state)
	if source == cb1 and state == true then
		outputChatBox("Selected CheckBox 1")
	end
end
addEventHandler("onDgsCheckBoxChange", root, onStateChanged)

See Also

DGS events

Plugin

Media

Color Picker

Client event functions