[DiscordArchive] what about a hover?
[DiscordArchive] what about a hover?
Archived author: Matth • Posted: 2021-12-08T10:31:48.700000+00:00
Original source
what about a hover?
Archived author: Lucifer • Posted: 2021-12-08T10:33:31.076000+00:00
Original source
just make gametooltip and call it *OnEnter event
Archived author: Matth • Posted: 2021-12-08T10:33:45.851000+00:00
Original source
ok!
Archived author: Lucifer • Posted: 2021-12-08T10:38:14.440000+00:00
Original source
for example gametooltip: <OnEnter> Event
```
function Tooltip_example()
GameTooltip:SetOwner(this, "ANCHOR_RIGHT");
GameTooltip:SetText(your text main);
GameTooltip:AddLine(text 2);
GameTooltip:AddLine(text3);
GameTooltip:AddLine(text4);
GameTooltip:Show();
end
```
<OnLeave> Event
```
function Tooltip_OnLeave()
GameTooltip:Hide()
end
```
Archived author: Lucifer • Posted: 2021-12-08T10:40:13.333000+00:00
Original source
for more just lookup https://wowwiki-archive.fandom.com/wiki/...ameTooltip
[Embed: Widget API]
Widget API | WoWWiki | Fandom
https://wowwiki-archive.fandom.com/wiki/Widget_API
Archived author: Matth • Posted: 2021-12-08T10:40:41.187000+00:00
Original source
GameTooltip:SetHyperlink thats what I'm looking for
Archived author: Lucifer • Posted: 2021-12-08T10:41:32.309000+00:00
Original source
GameTooltip:SetHyperlink(item:Here your item ID);