Thread Tools Display Modes
06-07-08, 06:13 PM   #1
griffin224
Premium Member
 
griffin224's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2006
Posts: 105
Toggling Bongos3 Menu and Bag Bars

In MazzleUI_Core.lua replace:
function MazzleUI:BarsToggle()
if (BBagBar) then
-- Bongos1
if (BBagBar:IsVisible()) then
BBar.Hide(BBar.IDToBar("bags"), 1)
BBar.Hide(BBar.IDToBar("menu"), 1)
BBar.Hide(BBar.IDToBar("key"), 1)
else
BBar.Show(BBar.IDToBar("bags"), 1)
BBar.Show(BBar.IDToBar("menu"), 1)
BBar.Show(BBar.IDToBar("key"), 1)
end

elseif (BBar) then
-- Bongos2
BBar:Get("bags"):ToggleFrame()
BBar:Get("menu"):ToggleFrame()
end
end

with:
function MazzleUI:BarsToggle()
MazzleUI:Execute("/bongos toggle menu")
MazzleUI:Execute("/bongos toggle bags")
end

Note: this is if you have the modified version that lets you use either Bongos 1 or 2. Too hot to look through for the 2.4 version fix, feel free to post if you know it.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Toggling Bongos3 Menu and Bag Bars


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