View Single Post
10-26-23, 09:21 PM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,894
The .MemberFrame means it is a key of the PartyFrame ie. PartyFrame["MemberFrame1"] or _G["PartyFrame"]["MemberFrame1"]

But the (retail) member frames are part of a pool these days so,
Lua Code:
  1. for memberFrame in PartyFrame.PartyMemberFramePool:EnumerateActive() do
  2.     print(memberFrame.unit)
  3. end
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 10-26-23 at 09:26 PM.
  Reply With Quote