Enhancement Request: Add to Blizzard "AddOns Button Drop Down" #197


  • Enhancment
Open
  • NoctusMirus created this issue Jul 28, 2024

    I was wondering if we could get a way to access options that doesn't clutter the minimap and i wont have to come searching for ....

     

    figured this area of the blizz ui would work. more details:

    https://warcraft.wiki.gg/wiki/Addon_compartment

     

    hope this helps. please ask if there's any clarity needed.

  • NoctusMirus added a tag Enhancment Jul 28, 2024
  • NoctusMirus posted a comment Aug 4, 2024

    Unfortunately i haven't really worked with LUA.
    (i have PowerShell, Perl, Python, Bash, Java, C, and LISP, experience.)
    Maybe if i look and things i can propose changes that help?

    An attempt with manual registration style from https://warcraft.wiki.gg/wiki/Addon_compartment
    I did a test with it at the end of the "Interface/AddOns/HandyNotes/HandyNotes.lua" file and it appears to work. Hope This Helps!

    -----------------------------------------------------------------

    AddonCompartmentFrame:RegisterAddon({

    text = "Handy Notes",

    notCheckable = true,

    func = function(button, menuInputData, menu)

    LibStub("AceConfigDialog-3.0"):Open("HandyNotes")

    end,

    funcOnEnter = function(button)

    MenuUtil.ShowTooltip(button, function(tooltip)

    tooltip:SetText("Handy Notes")

    end)

    end,

    funcOnLeave = function(button)

    MenuUtil.HideTooltip(button)

    end,

    })


    Edited Aug 4, 2024
  • NoctusMirus posted a comment Aug 10, 2024

    is this stored on github? if so let me know the link and i'll make a fork/pr for you to then peruse and decide on


To post a comment, please login or register a new account.