GuiBlur

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 defocuses a focused GUI element. Used primarily for edit fields and memos.

Syntax

bool guiBlur ( element guiElement )

OOP Syntax Help! I don't understand this!

Method: GuiElement:blur(...)


Required Arguments

  • guiElement: the GUI element that you want to defocus

Returns

Returns true if the function was successful, false otherwise.

Example

local edit= guiCreateMemo ( 0.4, 0.4, 0.4, 0.08, "it's edit!", true )
guiBlur(edit)

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows

Input

GUI