View Single Post
09-12-12, 10:09 PM   #4
10leej
A Molten Giant
 
10leej's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2011
Posts: 583
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")
__________________
Tweets YouTube Website