View Single Post
03-27-15, 12:40 PM   #1
gmarco
An Onyxian Warder
 
gmarco's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 362
ActionBar ToolTipDisable

Hi all,

I am asking if someone knows a very simple addon that can enable/disable tooltips on actionbars (it is not necessary it does it automagically in combat by itself, I can do manually :-)

I am asking because I am using a very cute, but simple actionbars addon that doesn't support this features and I really like to have it.

I have found a macro that do it and it works but it disables ALL the GameTooltip not only the actionbars ones.

Lua Code:
  1. /script GameTooltip.Temphide = function() GameTooltip:Hide() end; GameTooltip:SetScript("OnShow", GameTooltip.Temphide)
  2.  
  3. /stopmacro [btn:1]
  4.  
  5. /script GameTooltip:SetScript("OnShow", GameTooltip.Show);

I am trying to write a little addon myself but due the fact I have limited time in these days and also I don't have understood so much the GameTooltip frame I am still far from finishing. I'll ask later in the right area if there is nothing ready to be used :-)

Thanks :-)
__________________
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.
  Reply With Quote