DgsFocus

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function focuses a defocused DGS element. Used primarily for edit fields, memos, browser etc.

Syntax

bool dgsFocus ( element dgsElement )

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

Method: DGSElement:focus(...)
Counterpart: dgsBlur

Required Arguments

  • dgsElement: the DGS element that you want to focus

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)

See Also

General Functions

General Events