ESOUI

ESOUI (https://www.esoui.com/forums/index.php)
-   AddOn Help/Support (https://www.esoui.com/forums/forumdisplay.php?f=164)
-   -   Need Help with Allies Button (https://www.esoui.com/forums/showthread.php?t=10603)

Imiona 06/15/23 03:24 PM

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

Baertram 06/16/23 02:04 AM

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:

Imiona 06/16/23 03:51 AM

Thx, it worked.


All times are GMT -6. The time now is 02:18 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2014 - 2022 MMOUI