View Single Post
04-16-20, 08:03 PM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,871
Assuming you're using the default unit frames:

PartyMemberFrame1
PartyMemberFrame2
PartyMemberFrame3
PartyMemberFrame4

or

Code:
for i=1, 4 do
    local frame = _G["PartyMemberFrame"..i]
--  do whatever for the current frame.
end
Typing /fstack and hovering the mouse over a frame will give you what details of the frame are available(/fstack to close again)

You can also extract the code for the Blizzard UI.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 04-16-20 at 08:07 PM.
  Reply With Quote