Thread: rmod Layouts
View Single Post
Old 03/17/08, 10:11 PM   #67 (permalink)
finduluin
Von Kaiser
 
Night Elf Rogue
 
Sargeras (EU)
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.

Last edited by finduluin : 03/18/08 at 3:35 AM.

Save a forum,
Read a post-it.

Finduluin UI@Curse.com
 
User is offline.
Reply With Quote