Page 1 of 1

ToolTips Macro

Posted: 22 Jan 2016, 20:56
by Jcsuperstar
Personally I hate tooltips popping up while im in combat...raiding or whatever. Sure there are addons that can take care of them or move them...less out of sight. I have too many addons as it is, so Thought I would share a macro I have to disable/enable them. Watched a couple streams, I don't understand how that doesn't bother people.
2 Macros....they are old from the days when there was a bug that would DC you when you hovered over something in the world.


Turn Off

Code: Select all

/script GameTooltip.Temphide = function() GameTooltip:Hide() end; GameTooltip:SetScript("OnShow", GameTooltip.Temphide);


Turn Off

Code: Select all

/script GameTooltip:SetScript("OnShow", GameTooltip.Show);