WoW:API GameTooltip SetText: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (Move page script moved page API GameTooltip SetText to API GameTooltip SetText without leaving a redirect) |
(No difference)
|
Latest revision as of 04:45, 15 August 2023
← Widget API ← GameTooltip < SetText
SetText("text"[, red, green, blue[, alpha[, textWrap]]])
Sets the text of the tooltip.
Arguments[edit]
- "text"
- string - The text of the new tooltip. Variable can be used inplace of a string.
- red
- Optional - number range 0 to 1 - red color value for text string
- green
- Optional - number range 0 to 1 - green color value for text string
- blue
- Optional - number range 0 to 1 - blue color value for text string
- alpha
- Optional - number range 0 to 1 - specifies the opacity of text. Default is 1.
- textWrap
- Optional - boolean - 'true' to wrap the text string to fit the tooltip box. Default is 'false'.
Returns[edit]
- none
Example[edit]
GameTooltip:SetText("This is my awesome tooltip!", 0.5, 0.5, 0.5, 0.75, 1)
Would result in a semi transparent, greyish colored tooltip that would probably be wrapped to a second line due to the textWrap flag and its length.
Details[edit]
When using the flag the tooltip width is set at a preset size (about the size of the ability tooltips on spells.). Long tooltips will go off the side of the screen if this is not set. Alternatively you can simply use a "\n" in the "text" arg to force a new line.
If optional parameters are not specified the text defaults to Gold color, Full Opaque, and NON-wrapped.