Thread Tools Display Modes
11-09-10, 11:20 AM   #1
Zagrei
A Cobalt Mageweaver
 
Zagrei's Avatar
AddOn Compiler - Click to view compilations
Join Date: Nov 2009
Posts: 246
Change the 'Count' text on Dominos bars?

In my UIs, I always find that the count text (such as on potions/reagents) gets in the way, especially when trying to give a similar amount of padding to every aspect. It also makes the UI not be using only 1 font, which bugs me :P Is it possible to change this, and if so, HOW?!


(Here is a pic of what I mean. Notice the count text in the bottom left actionbars is limiting how slice I can get with the party frames.)
http://www.wowinterface.com/forums/a...4&d=1289320878


I was able to change the bag bar's count text by changing the LUA of bagbar.lua from this
Code:
local count = _G[b:GetName() .. 'Count']
count:SetFontObject('NumberFontNormalSmall')
count:SetPoint('BOTTOMRIGHT', 0, 2)
to this

Code:
local count = _G[b:GetName() .. 'Count']
count:SetFont('Interface\\Addons\\SharedMedia\\fonts\\HOOG0557.TTF', 8,"OUTLINEMONOCHROME")
count:SetPoint('BOTTOMRIGHT', 0, 2)

I have been unable to find such an option to change for the normal actionbars, however. Any help?
__________________
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Change the 'Count' text on Dominos bars?


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off