View Single Post
11-30-12, 09:51 PM   #2
Ekaterina
A Theradrim Guardian
AddOn Author - Click to view addons
Join Date: Oct 2010
Posts: 65
Have you tried changing the script to:

Lua Code:
  1. if pressed then
  2. if self:IsVisible() then
  3. self:Hide()
  4. else
  5. self:Show()
  6. end
  7. end

to ensure that there isn't a problem with the reference to the frame?

Do you have any other scripts set? Is the chat background parented to a frame other than UIParent? Are any other frames parented or anchored to the chat background?

Last edited by Ekaterina : 11-30-12 at 09:57 PM. Reason: additional questions
  Reply With Quote