View Single Post
08-03-10, 05:14 PM   #7
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2008
Posts: 135
Originally Posted by Ferous View Post
Doesn't work, I've tried this in the past.



I have no idea, I will see!

-Edit: Yes, Vuhdo Does allow of hiding Party frames.

Freeb, that doesn't work, I tried it in the past, I couldn't remember what it was so I made it up in my original post, I'll Update. Sorry

eidt - I want to add party / raid frames in the future but the simple script of HidePartyFrame() doesn't work. So... The question, I was curious about was.. Am I doing something wrong? Do I have to enter it in a certain way? Do I have to enter in something else? Thanks And yes, I've googled this, and I came up with the same thing. THanks agan And sorry to be bothersome!
It needs an event tied to it
Code:
local frame = CreateFrame"Frame"
frame:RegisterEvent("PARTY_MEMBERS_CHANGED")
frame:SetScript("OnEvent", function()
    HidePartyFrame()
end)
  Reply With Quote