View Single Post
12-22-20, 07:01 PM   #2
DahkCeles
A Cliff Giant
 
DahkCeles's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2020
Posts: 73
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
  Reply With Quote