View Single Post
06/16/23, 02:04 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 5,009
What is the "Allies Ability Keybind Text"? Could you post a screenshot and mark it please.
Thank you

Edit:
Do you mean the companions ultimate box or the keybind at that box (green rectangle)?


The Y keybidn text's control name is:
CompanionUltimateButtonButtonText

So adding something like
Lua Code:
  1. CompanionUltimateButtonButtonText:SetHidden(true)

to the addon code, where the other action button's text are hidden, should do it (for keyboard mode, not sure about gamepad mode).

Edit2:
I've checked the code of the addon.
Try to edit the lua file and change the table "HAL.elements" at the top to this:

Code:
HAL.elements = {
    "ActionButton3ButtonText",
    "ActionButton4ButtonText",
    "ActionButton5ButtonText",
    "ActionButton6ButtonText",
    "ActionButton7ButtonText",
    "AUI_QuickSlotButton1ButtonText",
    "AUI_QuickSlotButton2ButtonText",
    "AUI_QuickSlotButton3ButtonText",
    "AUI_QuickSlotButton4ButtonText",
    "AUI_QuickSlotButton5ButtonText",
    "AUI_QuickSlotButton6ButtonText",
    "AUI_QuickSlotButton7ButtonText",
    "AUI_QuickSlotButton8ButtonText",
    "CompanionUltimateButtonButtonText" --new added for Companion keybind text removal
}

Not sure about gamepad mode but for keyboard it seems to work:

Last edited by Baertram : 06/16/23 at 02:57 AM.
  Reply With Quote