View Single Post
12-04-13, 06:39 AM   #4
Nimhfree
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 267
Part of my UI tweaks are to move the right-hand buttons into the middle and make them smaller with:

-- Move the two right-side action bars to the middle, making them
-- smaller and horizontal.
for j,v in ipairs{"Left","Right"} do
for i = 1,12 do
local n="MultiBar"..v.."Button"
local b,f=_G[n..i],1==i and StanceButton6 or n..i-1
b:SetScale(.8)
b:ClearAllPoints()
b:SetPoint("LEFT",f,"RIGHT",i==1 and 68 or 6,i==1 and (j-1)*40 or 0)
end
end

And then the pet buttons get moved as well:

-- Make the pet buttons not be overridden by the action bars
local f=PetActionButton1
f:SetMovable(1)
f:SetUserPlaced(true)
f:ClearAllPoints()
f:SetPoint("BOTTOM",MultiBarRightButton1,"TOP",12,10)

You can make them into macros (which was what I originally did) instead of using an addon. Of course you might want to move them about depending on what you prefer.
  Reply With Quote