This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Since the TWW prepatch launched when mousing over Micromenu broker icon (using latest version of Titan Panel) the tooltip to select Achievements, Collections, Options, etc does not appear. Left clicking MM icon opens Character as default. Right clicking opens MM options. There don't appear to be any errors, just not getting the dropdown on mouseover to select anything.
Yep, I have the same issue =)
Part of the problem is that blizzard changed the names of those in the API. (SpellbookMicroButton and TalentMicroButton became ProfessionMicroButton and PlayerSpellsMicroButton, respectively. Replacing those two at least allows the drop down menu to work.) I was able to replace enough to at least see the menu without erroring and making the other items selectable, but I don’t have all the stuff to fix the code. I think they even made “Game Menu” a protected function, as I can find no way to fix it nor did I see any changes to how it is called. Probably needs a hook script.
replace lines 177 through 218 with the following:
if ProfessionMicroButton then local y, x = tooltip:AddLine() tooltip:SetCell(y, 1, path.."spells.tga", myProvider) tooltip:SetCell(y, 2, _G.ProfessionMicroButton.tooltipText) tooltip:SetLineScript(y, "OnMouseUp", MouseHandler, _G.ProfessionMicroButton) end if PlayerSpellsMicroButton then local y, x = tooltip:AddLine() tooltip:SetCell(y, 1, path.."talents.tga", myProvider) tooltip:SetCell(y, 2, _G.PlayerSpellsMicroButton.tooltipText) tooltip:SetLineScript(y, "OnMouseUp", MouseHandler, _G.PlayerSpellsMicroButton) end
To post a comment, please login or register a new account.