WoW:Removing Blizzard default frames: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
Line 14: Line 14:
5. Menu Menu Bar - Menu bar which has various WOW Options, Character Info, Social etc.
5. Menu Menu Bar - Menu bar which has various WOW Options, Character Info, Social etc.
   -- /script MainMenuBar:Hide()
   -- /script MainMenuBar:Hide()
 
[[Category: HOWTOs]]
--[[User:Smartidiot|smartidiot]] 12:15, 12 Jan 2005 (EST)
--[[User:Smartidiot|smartidiot]] 12:15, 12 Jan 2005 (EST)

Revision as of 14:18, 15 April 2005

1. Player Window - The Player window in the upper left that always shows for yourself is PlayerFrame.

  -- /script PlayerFrame:Hide()

2. Party Window - The windows that show for group members are PartyMemberFrameX, where X = 1..4. All these can be hidden at once by the function HidePartyFrame(), provided by the default party frame lua code.

  -- /script HidePartyFrame()
  -- /script PartyMemberFrameX:Hide()

3. Experience Bar - This is the long green bar on the default UI.

  -- /script MainMenuExpBar:Hide()

4. Main Action Bar - Main bar which has a row of shortcuts

  -- /script RemoveMainActionBar()

5. Menu Menu Bar - Menu bar which has various WOW Options, Character Info, Social etc.

  -- /script MainMenuBar:Hide()

--smartidiot 12:15, 12 Jan 2005 (EST)