Download
(103Kb)
Download
Updated: 07-27-16 07:52 PM
Pictures
File Info
Compatibility:
Legion (7.0.3)
Minor patch (6.2.4)
Minor patch (6.2.3)
Fury of Hellfire (6.2)
The Adventure Continues (6.1)
Warlords of Draenor (6.0.3)
Warlords of Draenor Pre-Patch (6.0.2)
Updated:07-27-16 07:52 PM
Created:01-14-13 10:33 PM
Downloads:5,309
Favorites:18
MD5:

FixehTip  Popular! (More than 5000 hits)

Version: 2.7.4
by: Fixeh [More]

About

FixehTip is a simple addon that modifies the default look and functionality of your Tooltip.

Main features (most optional)

  • Full customizable mouse anchor
  • Can move and scale the Tooltip
  • Font outline
  • Guild rank
  • Target of target
  • Targeted by (number of people targeting something in raid)
  • Reaction colored background/border/health bar
  • Class colored class/name/border/health bar
  • Item quality colored background/border
  • Appended text for AFK/DND/Corpse/Ghost/Tapped
  • Instant fade
  • Can hide player title/server
  • Can hide health bar/border
  • Can hide PvP and faction text
  • Can change background/border/health color and alpha
  • Level colored by difficulty
  • Purple guild for players in your guild
Options: /fixehtip

2.7.4:
  • Updated for 7.0.3.
2.7.3 R2:
  • Code improvements.
  • Updated for 6.1.
2.7.3:
  • The mouse anchor is now "full". Works on raid frames, spells, etc.
  • Added a GUI font change option.
  • Reaction background and border colors are now separate options.
  • Can now change all status text in the GUI.
  • Added a Targeted by: option for raid (number of people targeting something).
  • Removed "Hide border". You can hide it by changing the border alpha to 0 in colors.
  • The addon should now work and display correctly in most languages.
  • There are now more out-of-gui text color options, and a health texture option at the top of FixehTip.lua.
  • Health bar bug fixes.
2.7.2:
  • Can place the health inside of the Tooltip.
  • Can hide the Tooltip in combat and optionally display it by holding shift.
  • Can hide faction and player race.
  • Class colored border.
  • Can display guild servers next to guilds.
  • New font section in options.
  • Updated for 6.0.
Optional Files (0)


Post A Reply Comment Options
Unread 03-24-15, 09:03 AM  
mikma
A Cyclonian
 
mikma's Avatar
AddOn Author - Click to view AddOns

Forum posts: 45
File comments: 267
Uploads: 23
Breaks garrison frame's tooltips.

http://pasteboard.co/22ViVfif.jpg
Last edited by mikma : 03-24-15 at 09:04 AM.
Report comment to moderator  
Reply With Quote
Unread 01-29-15, 12:42 AM  
Fixeh
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 4
Uploads: 3
Originally Posted by Auddax
Great addon, best Tooltip addon I've found. The only problem I have is that the tooltip is not anchored on the mouse when I mouseover my own character or my target. Everything else is anchored correctly on the mouse. Is there a way to fix this ? Thanks.
Latest version has a full mouse anchor.
Report comment to moderator  
Reply With Quote
Unread 10-25-14, 03:35 AM  
mikma
A Cyclonian
 
mikma's Avatar
AddOn Author - Click to view AddOns

Forum posts: 45
File comments: 267
Uploads: 23
Is it just me or does anyone else have weird tooltip-size issues when mouseovering hostiles in PvP battlegrounds? Sometimes the text takes about 1/10 of the size of tooltip, rest is blank.

I'll try to snap some screenshots if/when I enter a BG again.
Report comment to moderator  
Reply With Quote
Unread 10-20-14, 06:17 PM  
Auddax
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Originally Posted by Auddax
Great addon, best Tooltip addon I've found. The only problem I have is that the tooltip is not anchored on the mouse when I mouseover my own character or my target. Everything else is anchored correctly on the mouse. Is there a way to fix this ? Thanks.
If someone else is like me and would prefer to have the tooltip always anchored to the mouse, even for spells and when you mouseover your portrait or your target's portrait, change the following :

replace this at line 298
Code:
hooksecurefunc("GameTooltip_SetDefaultAnchor", function(self, parent)
 if (FixehTipSV.mouseAnchor) and (GetMouseFocus() == WorldFrame) and (self:IsOwned(UIParent)) then
  self:SetOwner(parent, "ANCHOR_CURSOR")
 else
  self:SetOwner(parent, "ANCHOR_NONE")
  self:ClearAllPoints()
  self:SetPoint(FixehTipSV.defaultAnchorLocation, UIParent, FixehTipSV.defaultAnchorLocation, FixehTipSV.defaultAnchorX, FixehTipSV.defaultAnchorY)
 end
end)
with this

Code:
hooksecurefunc("GameTooltip_SetDefaultAnchor", function(self, parent)
 if (FixehTipSV.mouseAnchor) then
  self:SetOwner(parent, "ANCHOR_CURSOR")
 else
  self:SetOwner(parent, "ANCHOR_NONE")
  self:ClearAllPoints()
  self:SetPoint(FixehTipSV.defaultAnchorLocation, UIParent, FixehTipSV.defaultAnchorLocation, FixehTipSV.defaultAnchorX, FixehTipSV.defaultAnchorY)
 end
end)
Last edited by Auddax : 10-20-14 at 06:18 PM.
Report comment to moderator  
Reply With Quote
Unread 10-15-14, 06:09 PM  
Auddax
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Great addon, best Tooltip addon I've found. The only problem I have is that the tooltip is not anchored on the mouse when I mouseover my own character or my target. Everything else is anchored correctly on the mouse. Is there a way to fix this ? Thanks.
Report comment to moderator  
Reply With Quote
Unread 09-11-14, 02:58 AM  
Fixeh
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 4
Uploads: 3
Re: suggestions

Originally Posted by garak8402
Hi, is there any chance of adding class color borders to the config? Also an option to hide tips in combat while using shift as a modifier to show/unhide. Tiptac does this, but after using this I don't have the need for a full-blown tooltip replacement. Great work, btw.
Added both. I'll upload it when 6.0 is released.
Report comment to moderator  
Reply With Quote
Unread 07-15-14, 06:50 AM  
garak8402
A Kobold Labourer

Forum posts: 0
File comments: 11
Uploads: 0
suggestions

Hi, is there any chance of adding class color borders to the config? Also an option to hide tips in combat while using shift as a modifier to show/unhide. Tiptac does this, but after using this I don't have the need for a full-blown tooltip replacement. Great work, btw.
Report comment to moderator  
Reply With Quote
Unread 01-31-14, 03:02 PM  
EndyNacht
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Probably the best and cleanest tooltip addon out there at the moment.
Report comment to moderator  
Reply With Quote
Unread 01-28-14, 05:22 PM  
Fixeh
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 4
Uploads: 3
Edit for 2.7.1:

Custom font instructions:

1) Open FixehTip.lua with WordPad or your editor of choice
2) Change this line:
Lua Code:
  1. local font = "Fonts\\FRIZQT__.ttf"
Last edited by Fixeh : 02-22-14 at 10:35 AM.
Report comment to moderator  
Reply With Quote
Unread 01-28-14, 05:42 AM  
irdaq
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
is it possible to change the font?
Report comment to moderator  
Reply With Quote
Unread 09-13-13, 05:11 AM  
Izamootoo
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Small request

Thanks for the addon, just come back to the game and redoing my ui and i found your mod when i was trying to find a replacement tooltip. I have one request though, could you give us an option not to class color the player/npc name in the tip? I'm not a fan of having the name of myself/seeing others names in their class color. If not i can live with it, but it'd make the mod perfect for me.

Thanks

P.S. If the option is there and i didn't see it, can you point me to where it is? Cheers again.
Report comment to moderator  
Reply With Quote
Unread 09-13-13, 01:28 AM  
Ruven
A Kobold Labourer
 
Ruven's Avatar

Forum posts: 0
File comments: 56
Uploads: 0
Is it possible to add a talent feature somewhere ? it would be really helpful to know if someone is holy or beastmaster etc.
Report comment to moderator  
Reply With Quote
Unread 07-10-13, 06:28 PM  
reale411
A Kobold Labourer

Forum posts: 0
File comments: 31
Uploads: 0
Faction

Can you please make an option to hide Horde/Alliance and PvP?
Last edited by reale411 : 07-10-13 at 06:29 PM.
Report comment to moderator  
Reply With Quote
Unread 06-24-13, 09:53 AM  
Ruven
A Kobold Labourer
 
Ruven's Avatar

Forum posts: 0
File comments: 56
Uploads: 0
ehm...how do you move the default tooltip window ? there doesn't seem to be anything about it in the menu or the lua code. Great addon btw, 100kb usage, and does more than addons with 2mb usage.
Report comment to moderator  
Reply With Quote
Unread 06-20-13, 01:31 AM  
Imithat
A Fallenroot Satyr
 
Imithat's Avatar
AddOn Author - Click to view AddOns

Forum posts: 27
File comments: 201
Uploads: 7
realy, realy cool thing!

thanks a lot!

i need the tooltip on the right / bottom side. Can you do this?

thx
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: