View Single Post
07-02-10, 02:41 AM   #10
mentalnutsy
A Cyclonian
AddOn Author - Click to view addons
Join Date: Apr 2008
Posts: 47
To hide the edit box i have used this and works like a charm for me instead of actualy hiding the edit box it just makes it invisible so to speak





Code:
	
for i = 1, NUM_CHAT_WINDOWS do
local editBoxleft = _G[format("%s%d%s", "ChatFrame", i, "EditBoxLeft")]
local editBoxright = _G[format("%s%d%s", "ChatFrame", i, "EditBoxRight")]
local editBoxmid = _G[format("%s%d%s", "ChatFrame", i, "EditBoxMid")]
			editBoxleft:SetAlpha(0)
			editBoxright:SetAlpha(0)
			editBoxmid:SetAlpha(0)
end

Last edited by mentalnutsy : 07-02-10 at 02:43 AM.
  Reply With Quote