View Single Post
06-17-10, 09:45 AM   #4
Soulofsin_007
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: Apr 2008
Posts: 125
Dunno if this will help....but you can stop it from being moved like this.

Code:
-- Placing the frame
ChatFrame1:ClearAllPoints()
ChatFrame1:SetPoint("BOTTOMLEFT", UIParent, "BOTTOMLEFT", 30, 30)
ChatFrame1:SetUserPlaced(nil)

-- You may need to block it from being moved by other addons / BlizzUI
local dummy = function() end
ChatFrame1.ClearAllPoints = dummy
ChatFrame1.SetPoint = dummy
I don't remember who posted it originally or I would give them credit for it. Perfect way to stop the chat frame from being moved.

Edit: Here by Cargor

Last edited by Soulofsin_007 : 06-17-10 at 09:47 AM.
  Reply With Quote