Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

GameTooltip Example

GameTooltip

ADDON:ImportObject(18) -- GameTooltip
-- ADDON:ImportObject(OBJECT.GameTooltip)
ADDON:ImportObject(13) -- TextStyle
-- ADDON:ImportObject(OBJECT.TextStyle)

local gametooltip = UIParent:CreateWidget("gametooltip", "gametooltipExample", "UIParent")
gametooltip:SetExtent(400, 400)
gametooltip:AddAnchor("CENTER", "UIParent", 0, 0)
gametooltip:AddLine("LEFT TEXT", "font_main", 20, "left", ALIGN_LEFT, 0)
gametooltip:AddLine("CENTER TEXT", "font_main", 20, "left", ALIGN_CENTER, 0)
gametooltip:AddAnotherSideLine(0, "RIGHT TEXT", "font_main", 20, ALIGN_RIGHT, 0)
gametooltip:Show(true)

GameTooltip Example