Thread Tools Display Modes
06/15/23, 03:24 PM   #1
Imiona
 
Imiona's Avatar
Join Date: Feb 2017
Posts: 16
Need Help with Allies Button

Hey

I found this neat Addon, but it doesnt hide the Allies Ability Keybind Text since it wasnt updated for a long Time (but still working).

Can someone tell me what to edit in the lua to also hide the Allies Text?

Thx
  Reply With Quote
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: 4,989
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
06/16/23, 03:51 AM   #3
Imiona
 
Imiona's Avatar
Join Date: Feb 2017
Posts: 16
Thx, it worked.
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » Need Help with Allies Button


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off