Fael
Believer
Need someone to fix this. It hides the right action bars and shows up on mouseover. I do not want to use bartender or any action bar mod so do not recommend them. Basically putting this script into an addon, this currently works on Cata patches, but on Live it does not. If anyone knows how to fix it up it will be greatly appreciated.
Code:
MultiBarRight:SetAlpha(0)
MultiBarRight:EnableMouse(true)
MultiBarRight:SetScript("OnEnter", function(self) MultiBarRight:SetAlpha(1) end)
MultiBarRight:SetScript("OnLeave", function(self) MultiBarRight:SetAlpha(0) end)
MultiBarRight:SetFrameLevel(0)
for i = 1, 12, 1 do
_G["MultiBarRightButton"..i]:HookScript("OnEnter", function(self) MultiBarRight:SetAlpha(1) end)
_G["MultiBarRightButton"..i]:HookScript("OnLeave", function(self) MultiBarRight:SetAlpha(0) end)
end;
MultiBarLeft:SetAlpha(1)
MultiBarLeft:EnableMouse(true)
MultiBarLeft:SetScript("OnEnter", function(self) MultiBarRight:SetAlpha(1) end)
MultiBarLeft:SetScript("OnLeave", function(self) MultiBarRight:SetAlpha(0) end)
MultiBarLeft:SetFrameLevel(0)
for i = 1, 12, 1 do
_G["MultiBarLeftButton"..i]:HookScript("OnEnter", function(self) MultiBarRight:SetAlpha(1) end)
_G["MultiBarLeftButton"..i]:HookScript("OnLeave", function(self) MultiBarRight:SetAlpha(0) end)
end;