Thread Tools Display Modes
08-03-10, 01:59 AM   #1
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
Quick Question...

How do I hide the party frames? the HidePartyFrame() doesn't work... and I was curious as to what I can do to add to my oUF Layout to hide my party frames as I'm using VuhDo? Thanks

edit - I plan to add party frames and raid frames in the future, but for now I'd like to hide the default party frames.

Last edited by Ferous : 08-03-10 at 06:04 AM.
  Reply With Quote
08-03-10, 02:14 AM   #2
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
How do I hide the party frames? the PartyFrame:Hide() doesn't work... and I was curious as to what I can do to add to my oUF Layout to hide my party frames as I'm using VuhDo? Thanks

edit - I plan to add party frames and raid frames in the future, but for now I'd like to hide the default party frames.
Code:
HidePartyFrame()
  Reply With Quote
08-03-10, 02:49 AM   #3
yj589794
A Rage Talon Dragon Guard
AddOn Author - Click to view addons
Join Date: Mar 2009
Posts: 314
If you are using VuhDo at the moment for your party and raid frames, surely you should use the option within that addon to hide the default party frames?
  Reply With Quote
08-03-10, 06:00 AM   #4
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
Originally Posted by Freebaser View Post
Code:
HidePartyFrame()
Doesn't work, I've tried this in the past.

Originally Posted by yj589794 View Post
If you are using VuhDo at the moment for your party and raid frames, surely you should use the option within that addon to hide the default party frames?
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!

Last edited by Ferous : 08-03-10 at 06:06 AM.
  Reply With Quote
08-03-10, 07:54 AM   #5
haste
Featured Artist
 
haste's Avatar
Premium Member
Featured
Join Date: Dec 2005
Posts: 1,027
If you want to hide your oUF party frames, then just hide the header.
If you want to hide the Blizzard party frames, then calling: oUF:DisableBlizzard('party') should do the trick.
__________________
「貴方は1人じゃないよ」
  Reply With Quote
08-03-10, 05:13 PM   #6
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
Originally Posted by haste View Post
If you want to hide your oUF party frames, then just hide the header.
If you want to hide the Blizzard party frames, then calling: oUFisableBlizzard('party') should do the trick.
Ah, awesome, thanks Haste

Works like a charm, the oUFisableBlizzard('party')

edit - lol funny it shows smilie face.

Last edited by Ferous : 08-03-10 at 05:16 PM.
  Reply With Quote
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
08-03-10, 06:07 PM   #8
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
Originally Posted by Freebaser View Post
It needs an event tied to it
Code:
local frame = CreateFrame"Frame"
frame:RegisterEvent("PARTY_MEMBERS_CHANGED")
frame:SetScript("OnEvent", function()
    HidePartyFrame()
end)
Ah okay Thanks. The oUFisable('party') works too though, Thanks though Freeb
  Reply With Quote

WoWInterface » Featured Projects » oUF (Otravi Unit Frames) » Quick Question...


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off