View Single Post
12-23-20, 05:47 PM   #4
artenides
A Defias Bandit
Join Date: Dec 2020
Posts: 3
Originally Posted by DahkCeles View Post
Your answer might be here:

https://www.townlong-yak.com/framexm...Roster.lua#361

I'm not in a guild, so I have no way to test... but would something like this do it?

Lua Code:
  1. function foo(guildIndex)
  2.     if (GuildFrame and GetGuildRosterInfo(guildIndex)) then
  3.         GuildFrame:Show()
  4.         SetGuildRosterSelection(guildIndex)
  5.         GuildFrame.selectedGuildMember = guildIndex
  6.         GuildFramePopup_Show(GuildMemberDetailFrame)
  7.     end
  8. end
This doesn't seem to work. I named the function OpenGuildMemberTab and called it with 1 that supposed to be the first member on the list but it didn't open the detail frame.
  Reply With Quote