View Single Post
01-02-19, 03:08 AM   #5
Ansi
An Aku'mai Servant
 
Ansi's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 33
Originally Posted by Daarc View Post
You can move default MultiBarRight. Here is a small addon that I wrote for myself.
Code:
local _, actionRight = ...

function actionRight()
    for i = 2, 12 do 
        local n = "MultiBarRightButton" 
        local btn = _G[n..i] 
        btn:ClearAllPoints() 
        btn:SetPoint("LEFT", n..i - 1, "RIGHT", 6, 0) 
    end

    MultiBarRight:ClearAllPoints()
    MultiBarRight:SetPoint("TOPLEFT", MainMenuBar, "BOTTOMLEFT", 5, 135)
    MultiBarRight.SetPoint = function() end
end

actionRight()
Oh, this is perfect! Thanks a lot Now I just need to move the Bottom Right Bar instead of Right Bar :P
__________________
twitter.com/ansirox
  Reply With Quote