View Single Post
03-11-11, 04:18 AM   #2
gfxamk
A Murloc Raider
 
gfxamk's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2009
Posts: 7
look at the core.lua of the stuf addon.do a search for
Code:
uf:SetPoint
and you should find
Code:
uf:SetPoint("TOPLEFT", UIParent, "TOPLEFT", dbuf.x, dbuf.y)
change that to something like
Code:
uf:SetPoint("TOPLEFT", UIParent, "BOTTOM", dbuf.x, dbuf.y)
or better make an anchorframe perhaps 1x1 pixel and then move the unitframes with your anchor.
Code:
uf:SetPoint("CENTER", YourAnchorFrameName, "CENTER", dbuf.x, dbuf.y)
perhaps you need to adjust the x/y postioning, depends on how you do it
  Reply With Quote