Thread: !Beautycase
View Single Post
10-18-11, 10:59 PM   #8
itsjustadrian
A Murloc Raider
Join Date: Sep 2011
Posts: 7
I was recently tinkering with !BeautyCase trying to get it to work with SUF. I was having the same problems so I perused through the comments section of the addon and found this snippet of code.

Code:
-- borders for all SUF Frames

local SUFUnits = ShadowUF.Units
local CreateUnit = SUFUnits.CreateUnit

function SUFUnits.CreateUnit(...)
	local frame = CreateUnit(...)
	CreateBorder(frame, 10, 1, 1, 1)
	return frame
end
Put that in a new addon (I named mine ZUI since it has to load AFTER SUF and addons load alphabetically).

I have a question of my own concerning BeautyCase however. How do you get it to set up with Raven (buffs addon)? Do you have to create frames for each button for example RavenButton1, RavenButton2, etc. or is there a way to take over functions like Shadowed Unit Frames.

Thanks everyone.
  Reply With Quote