Party Frame Texture Name

Hello was wondering if anyone is able to help with hiding the names on the Party Frames, not the raid frame ones & also looking to change the texture color if possible

My old version doesn’t work with 10.0
for i=1,4 do _G["PartyMemberFrame"..i.."Name"]:Hide()end

I used /fstack ingame and found the name to be
PartyFrame.randomnumbers.Name

it also states that the source is Interface/FrameXML/PartyFrameTemplates.xml:357

Any help, please? :slight_smile:

Try this.

for frame in PartyFrame.PartyMemberFramePool:EnumerateActive() do
    frame.Name:Hide()
end

And what texture color do you want to change?

this seems to be working, I’ll play around with it today, I managed to get the frames darkened too with this

for frame in PartyFrame.PartyMemberFramePool:EnumerateActive() do
    frame.Name:Hide()
	frame.Texture:SetVertexColor(0,0,0)
	frame.PetFrame.Texture:SetVertexColor(0,0,0)
end

Thank you very much :smiley:

interested in that aswell, i cant seem to make this code work tho. Is that all your code or did you put anything else to hide names?

no that’s all I’m using, but maybe you’re referring to the raid style party frames, for that I found this

Script does not work anymore

hooksecurefunc("CompactUnitFrame_UpdateName", function(frame) 
    if frame.optionTable == DefaultCompactUnitFrameOptions then 
        frame.name:Hide() 
    end 
end)

Thank you, I got both to work. Do you know how i could use this to hide role icons aswell by any chance?

edit after testing: these scripts do bug out my frames, it sometimes disappears, are they working for you without any problems?

and in case blizz raids this xd…pre 10.0 frames were actually so much better, idk why blizz had to change it. Cant even set up profiles anymore. Atleast i was not able to find an option for it. Now i have to change my raid frames depending on 10-40 player content. Quite annoying and if your frames are on the left side and you want to access the grey bar to change stuff you first have to move your raid frames away…nah pls blizz, revert this. This is a big downgrade to what we had

The raid profile frames grab new frames as they are needed, making them not as straight forward to access as the normal party frames. The party ones are all loaded when the game loads, but the raid frames don’t all exist before players join your group.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.