DgsFocus

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

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