I'm using rBars now and after an evening searching everywhere.... I'm not able to figure how to hide Tooltips on the action bars. :'(
I've check in Bartender but I think it calls too complex functions to do it (or it uses libraries it don't use).
Here is the screen with a tooltip I want to remove (from a totally OOC faded rBar) :
I've found this in the last rBars.lua Zork posted :
-- Handle range indicator
if ( this.rangeTimer ) then
this.rangeTimer = this.rangeTimer - elapsed;
if ( this.rangeTimer <= 0 ) then
ActionButton_UpdateUsable();
this.rangeTimer = TOOLTIP_UPDATE_TIME;
end
end
if ( not this.updateTooltip ) then
return;
end
this.updateTooltip = this.updateTooltip - elapsed;
if ( this.updateTooltip > 0 ) then
return;
end
if ( GameTooltip:IsOwned(this) ) then
ActionButton_SetTooltip();
else
this.updateTooltip = nil;
end
Perhaps there is an hint to clear the buttons from their tooltips there... But not sure :?
Let me know if I missed something.
[edit]
In the same way... How to fade the MainBar after a shapeshift (normal to stealth in my case) ?
I fade the MainMenuBar to 0, but, when stealthed, the actionbar is showing nonetheless.
Thanks.