View Single Post
02-11-21, 09:12 PM   #5
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
They changed the button in Shadowlands so unless they upgraded those addons they may not work.
https://www.townlong-yak.com/framexm...andingPage.lua

This is the bit of code I use in nUI to place the icon where I want on the screen. It changes dependant on which one you are currently active with.
Lua Code:
  1. hooksecurefunc("GarrisonLandingPageMinimapButton_UpdateIcon", function(self)
  2.             GarrisonLandingPageMinimapButton:SetParent(Minimap)
  3.             GarrisonLandingPageMinimapButton:ClearAllPoints()
  4.             GarrisonLandingPageMinimapButton:RegisterForDrag();
  5.             GarrisonLandingPageMinimapButton:SetScript( "OnDragStart", nil );
  6.             GarrisonLandingPageMinimapButton:SetScript( "OnDragStop", nil );
  7.             GarrisonLandingPageMinimapButton:SetSize(30,30)
  8.             GarrisonLandingPageMinimapButton:SetPoint("CENTER", Minimap, "BOTTOMLEFT", -15, 15)
  9.             GarrisonLandingPageMinimapButton:SetFrameStrata( Minimap:GetFrameStrata() );
  10.             GarrisonLandingPageMinimapButton:SetFrameLevel( Minimap:GetFrameLevel()+5 );            
  11.         end);
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote