1. #1
    Deleted

    Blizzards new Addon InGame Screen

    Im looking for a way to make a macro or script to call the new ingame Addon Screen.Broker_MicroMenu (http://www.curse.com/addons/wow/brok...ther-downloads) has a screenshot showing Addon but when you install the addon itself it doesnt have the button to click on. tia

  2. #2
    Deleted
    I took a look in the code for the linked addon, not sure if its a typo or recent change on blizzards end, but lines 308 to 312 of Broker_MicroMenu.lua need to be updated to read:

    Code:
    if _G.GameMenuButtonAddons then
       local y, x = tooltip:AddLine()
       tooltip:SetCell(y, 2, _G.GameMenuButtonAddons:GetText())
       tooltip:SetLineScript(y, "OnMouseUp", MouseHandler, _G.GameMenuButtonAddons)
    end
    ie GameMenuButtonAddons instead of GameMenuButtonAddOns
    Last edited by mmoc995fcf8eda; 2014-10-29 at 03:50 PM.

  3. #3
    Deleted
    Quote Originally Posted by Redlorr View Post
    ie GameMenuButtonAddons instead of GameMenuButtonAddOns
    Thats it. Thanks alot!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •