WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   nUI: Technical Support (https://www.wowinterface.com/forums/forumdisplay.php?f=92)
-   -   How do I get rid of Blizzards UI action bars (https://www.wowinterface.com/forums/showthread.php?t=44332)

Aeropain 09-12-12 07:45 PM

How do I get rid of Blizzards UI action bars
 
1 Attachment(s)
Here's a SS of what I want to get rid of. I cannot seem to find the option or setting to get rid of Blizzards stock UI; the one with the eagles on both sides etc..

myrroddin 09-12-12 08:37 PM

Get an addon like Bartender4 or Dominos. I haven't used Dominos but Bartender4 has an option to hide the Blizzard artwork.

Fizzlemizz 09-12-12 08:46 PM

If you don't want a full bar replacement, I believe "Lucidity plus" uses the Blizzard bars but will hide the artwork.

10leej 09-12-12 10:09 PM

I made a post for this on the UI and Macro Forums a couple weeks ago

http://us.battle.net/wow/en/forum/topic/6398610316#7


script is this
Lua Code:
  1. --Simple addon that hides all sorts of Blizzard Art
  2. local a = CreateFrame("Frame")
  3. a:SetScript("OnEvent",function(self,event)
  4.     if event == "PLAYER_LOGIN" then
  5.         MainMenuBarLeftEndCap:Hide()
  6.         MainMenuBarRightEndCap:Hide()
  7.         MainMenuBarTexture0:Hide()
  8.         MainMenuBarTexture1:Hide()
  9.         MainMenuBarTexture2:Hide()
  10.         MainMenuBarTexture3:Hide()
  11.         BonusActionBarFrameTexture1:SetAlpha(0)
  12.         BonusActionBarFrameTexture2:SetAlpha(0)
  13.         BonusActionBarFrameTexture3:SetAlpha(0)
  14.         BonusActionBarFrameTexture4:SetAlpha(0)
  15.         MainMenuMaxLevelBar0:Hide()
  16.         MainMenuMaxLevelBar1:Hide()
  17.         MainMenuMaxLevelBar2:Hide()
  18.         MainMenuMaxLevelBar3:Hide()
  19.         MainMenuBarBackpackButton:Hide()
  20.         MinimapBorder:Hide()
  21.     end
  22. end)
  23.  
  24. a:RegisterEvent("PLAYER_LOGIN")
  25. a:RegisterEvent("PLAYER_ENTERING_WORLD")
  26. a:RegisterEvent("ADDON_LOADED")

Phanx 09-12-12 10:31 PM

It looks like you are already using an action bar addon; it should have an option to hide the Blizzard bar. What action bar addon are you using?

zork 09-13-12 01:49 AM

I guess it's Bartender. That displays the Blizzard texture by default. Can be disabled in the Bartender config.

Xrystal 09-13-12 02:07 AM

The problem you are showing is that there is a loading problem with nUI, usually due to another addon stopping nUI's full process by erroring out.

Try nUI on its own and see if that stops that display. It should if you have the latest one.

Then slowly add in your other addons until it breaks again. That will then help identify which addon is breaking it. Once you do that and identify which ones are doing it check to see if they have been updated for 5.0.4 or 5.0.5 and test to see if they error out without nUI installed.

In either case can someone move this to nUI's forum.


All times are GMT -6. The time now is 07:36 PM.

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