Specifically, if possible, I’m looking to make a macro that would open the whole Professions spellbook.
/run PlayerSpellsUtil.TogglePlayerSpellsFrame(3)
Change the 3 to 1 or 2 if you want one of the other tabs.
If you want it to open to “two page mode”
/run PlayerSpellsUtil.TogglePlayerSpellsFrame(3) local m=PlayerSpellsFrame.MaximizeMinimizeButton.MaximizeButton if m:IsShown() then m:Click() end
2 Likes
Actually on trying this now I realize this opens the Talents and Spellbook.
Can this modified to open Professions?
Selective seeing, you had Professions and spellbook in your OP:
/run ToggleProfessionsBook()
1 Like
Awesome! tyty =D