IsConsoleActive

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 returns whether the ingame console window is visible or not.

Syntax

bool isConsoleActive ()

OOP Syntax Help! I don't understand this!

Method: GuiElement:isConsoleActive(...)
Variable: .consoleActive


Returns

Returns true if the console is visible, false if not.

Example

This example does...

function consoleactiveCommand(arg)
    local active = (isConsoleActive() and "active.") or "not active."
    outputChatBox("Your console is " .. active)
end
addCommandHandler("consoleactive", consoleactiveCommand)

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