CustomLabel:setHoverable

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 sets for Custom Label hoverable - when mouse enter label, it changes color to default color of established scheme.

Syntax

nil CustomLabel:setHoverable(bool Hoverable)

Required Arguments

  • Hoverable - Boolean value - is color depends with color scheme when mouse enter on label.

Example

Code Example for Dark Theme
Code Example for Light Theme

This example creates three labels with different styles - Default (Dark/Light by Color Scheme), Hoverable (When mouse entering, color sets to Schematic), and Colored (Using auto changeable color of current Scheme):

local Window = CustomWindow.create(50, 50, 150, 115, "Example")

local Label = CustomLabel.create(5, 25, 140, 25, "Default Label", false, Window)
local LabelHoverable = CustomLabel.create(5, 55, 140, 25, "Hoverable Label", false, Window)
local LabelColored = CustomLabel.create(5, 85, 140, 25, "Colored Label", false, Window)

LabelHoverable:setHoverable(true)
LabelColored:setSchematicalColor(true)

Window:setColorScheme(Themes.Dark.Red)
Window:setCloseEnabled(true)

LabelHoverable:addEvent("onClientGUIClick", function()
	Window:setColorScheme(Themes.Light.Red)
end)

LabelColored:addEvent("onClientGUIClick", function()
	Window:setColorScheme(Themes.Dark.Red)
end)

See Also

Resource Wiki with content located here: Resource:CustomWidgets

Custom Widgets

This methods working for all elements except CustomDialogs and CustomTooltips

Set Functions

Get Functions

Event Functions


Custom Windows

Create Function

Set Functions

Get Functions

Event Functions


Custom Buttons

Create Function

Set Functions

Get Functions

Event Functions


Custom Progress Bars

Create Function

Set Functions

Get Functions

Event Functions


Custom Scroll Bars

Create Function

Set Functions

Get Functions


Custom Edit Boxes

All functions, what has mark CustomEditBox available for CustomEdit, CustomMemo and CustomSpinner.

Create Functions

Set Functions

Get Functions

Event Functions


Custom Check Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Combo Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Tabbed Panels

Create Function

Set Functions

Get Functions

Event Functions


Custom Labels

Create Function

Set Functions

Get Functions

Event Functions


Custom Dialogs

Create Function

Event Functions


Custom Tool Tips

Create Function

Set Function

Get Function


Custom Loadings

Create Function

Set Functions

Get Functions


Custom Scroll Panes

Create Function

Set Functions

Get Functions

Event Functions


Custom Table Views

Create Function

Set Functions

Get Functions

Event Functions


Custom Static Images

Create Function

Set Function

Get Function

Event Functions


Custom Text Boxes

Create Function

Set Function

Get Function


Custom Events


Other about Custom Widgets