This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
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.
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_compartmentI 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)
funcOnLeave = function(button)
MenuUtil.HideTooltip(button)
})
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.