View Single Post
07-26-16, 04:55 AM   #7
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 1,740
Lua Code:
  1. frame.ignoreFramePositionManager = true --optional but sometimes helpful for Blizzard frames
  2. frame:SetMovable(true)
  3. frame:SetUserPlaced(true)
  4. frame:ClearAllPoints()
  5. frame:SetPoint("CENTER",0,0)
  6. frame:SetMovable(false) --not sure if you need this line
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)

Last edited by zork : 07-26-16 at 04:59 AM.
  Reply With Quote