Simbl wrote:Thank you, this worked!
One last question: Is it possible to hide the art bar (the gryphons) without hiding the action buttons? When i hide the art bar, the action buttons disappear as well, despite having their own object in the MoveAnything addon...
No MoveAnything can't hide the gryphons without modifications to its code.
Gryphons are textures not frames and they're missing some of the frame methods MoveAnything uses.
You can however make a very simple addon to do it.
Create a folder in your AddOns folder named
HideGryphonsCreate 2 text files inside it and rename them to:
-
HideGryphons.toc-
HideGryphons.luaMake sure you have file extensions showing and the filenames are exact without a .txt extension.
Copy paste this in HideGryphons.toc
- Code: Select all
## Interface: 11200
## Title: HideGryphons
## Notes: Hides the gryphons on the default action bars
HideGryphons.lua
and this in HideGryphons.lua
- Code: Select all
MainMenuBarLeftEndCap:Hide()
MainMenuBarRightEndCap:Hide()
Save both files and restart your game.