View Single Post
07-16-07, 09:04 AM   #7
Admiral
A Deviate Faerie Dragon
Join Date: Jul 2007
Posts: 11
Okay, this is a final follow-up. This is not a Mazzle problem, and there isn't a perfect fix. However the people who develop Auctioneer did have some do-it-yourself style solution options.

And somebody might read this thread, have the same questions I did, and wonder whatever became it...

Auctioneer uses it's own tooltip called EnchToolTip, which bases it's size on the Global UI size as MazzleFizz suggested above. You can't control it with TinyTip (that I know of).

Auctioneer does have an embed command which merges their toop tip into a 'normal' one, but you lose some the options and features..

Or these were some other suggestions, copied from their forums.

Copied from their Forum:

Auctioneer does not contain any scaling code whatsoever. We neither scale up nor down.

Since it seems like your other addon wishes to resize auctioneer to a size that is too small for you, you may wish to investigate instead the embedded tooltip mode so that your tooltip is embedded in the real tooltip.

The other two options that are available to you are:

Create a macro to rescale the auctioneer tooltip manually. Something like:
/run EnhancedTooltip:SetScale(1.20)
and play with that 1.2 number until it looks like the resizing done by the other addon has been reversed.

Alternatively, you could open up EnhTooltip/Tooltip.lua in a text editor and change every occurance of SetFont(STANDARD_TEXT_FONT, ...) so that ... becomes ...+3

eg:
return line:SetFont(STANDARD_TEXT_FONT, fontSize)
would become:
return line:SetFont(STANDARD_TEXT_FONT, fontSize+3)

you would have to do this in about 5 places throughout that file.
  Reply With Quote