DgsBlur

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

This function defocuses a focused DGS element. Used primarily for edit fields, memos, browser etc.

Syntax

bool dgsBlur ( element dgsElement )

DGS OOP Syntax Help! I don't understand this!

Method: DGSElement:blur(...)
Counterpart: dgsFocus

Required Arguments

  • dgsElement: the DGS element that you want to defocus

Returns

Returns true if the function was successful, false otherwise.

Example

DGS = exports.dgs

local edit= DGS:dgsCreateEdit ( 0.4, 0.4, 0.4, 0.08, "Test Edit", true )
DGS:dgsFocus(edit)
setTimer(function()
	DGS:dgsBlur(edit)
end,1000,1)

See Also

General Functions

General Events