View Single Post
03/30/14, 07:53 PM   #2
Seerah
Fishing Trainer
 
Seerah's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 648
I would do
Lua Code:
  1. local height = GuiRoot:GetHeight()
  2. myFrame:SetAnchor(TOP, GuiRoot, TOP, 0, height/4)


/edit: if you want the center of your frame to be at that point, then do this instead:
Lua Code:
  1. local height = GuiRoot:GetHeight()
  2. myFrame:SetAnchor(CENTER, GuiRoot, TOP, 0, height/4)
  Reply With Quote