Thread: Relative size
View Single Post
09-14-14, 08:20 AM   #2
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
Code:
frame:SetWidth(floor((frame:GetParent():GetWidth() / 2) + 0.5))
Or, you can position the frame so that it is resized automatically.

http://wowpedia.org/API_Region_SetPoint

For example:

Code:
local parent = frame:GetParent()
frame:SetPoint("TOPLEFT", parent)
frame:SetPoint("BOTTOMRIGHT", parent, "BOTTOM")
Now your frame fills up the left half of your parent's frame and resizes accordingly, because its top left corner is attached to the parent's top left corner, and the bottom right corner is attached to the bottom (centre) of the parent.

Of course, you don't need the GetParent() calls in these examples if you're creating the frame yourself.
  Reply With Quote