Thread Tools Display Modes
12-11-12, 10:06 AM   #1
Rusken
A Theradrim Guardian
AddOn Compiler - Click to view compilations
Join Date: Dec 2009
Posts: 61
Addon that can change the size of spell book, character tab etc?

Is there an addon that can do this out there?
I know that it can be done in settings with UI scale, i do however want it smaller then what the ingame UI scale can give me.
Also, are there any addon out there that can change the look of my spellbook etc? Not skinner.

Cheers!
  Reply With Quote
12-11-12, 10:24 AM   #2
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
You might be able to simply use something like:

Code:
local f = CreateFrame("Frame")
f:RegisterEvent("PLAYER_LOGIN")
f:SetScript("OnEvent", function()
	if InCombatLockdown() then
		f:RegisterEvent("PLAYER_REGEN_ENABLED")
	else
		SpellBookFrame:SetScale(0.5)
		CharacterFrame:SetScale(0.5)
		f:UnregisterEvent("PLAYER_REGEN_ENABLED")
	end
end)
As for changing the look, try my Aurora addon.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Addon that can change the size of spell book, character tab etc?


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