Spartakus 1 Report post Posted January 16, 2017 (edited) "Title says it all. Not a huge deal but I prefer the aesthetic of clean looking action bars. Or if there's anyway someone could easily make a stand alone addon for this function, it'd be greatly appreciated. " just a copy/pasta from this thread https://forum.nostalrius.org/viewtopic.php?f=63&t=28838 cause the link doesn't seem to work for me. I know there are working macros for this but I'd like an addon. Edited January 16, 2017 by Spartakus 0 Share this post Link to post Share on other sites
Mr_Rosh 7 Report post Posted January 16, 2017 Here you go 0 Share this post Link to post Share on other sites
Spartakus 1 Report post Posted January 16, 2017 Thanks but the links are dead here too :S 0 Share this post Link to post Share on other sites
gashole 7 Report post Posted January 16, 2017 This will do that for you. To install, copy/paste the code below into new text files and save them as HideHotKey.toc and HideHotKey.lua. Once done, move them to a new folder called HideHotKey in your AddOns folder. HideHotKey.toc ## Interface: 11200 ## Title: HideHotKey HideHotKey.lua HideHotKey.lua local _G = getfenv(0) local buttons = { "ActionButton", "BonusActionButton", "MultiBarBottomLeftButton", "MultiBarBottomRightButton", "MultiBarLeftButton", "MultiBarRightButton", } for b = 1, getn(buttons) do for i = 1, NUM_ACTIONBAR_BUTTONS do _G[buttons[b]..i.."HotKey"]:Hide() _G[buttons[b]..i.."HotKey"].Show = function() end end end 1 Share this post Link to post Share on other sites
Spartakus 1 Report post Posted January 16, 2017 thanks it works! 0 Share this post Link to post Share on other sites