Script/addon for right bar placement

Hi there,

I’m looking for help with finding or creating a script or addon that will allow me to move both the right action bars, specifically turn them horizontal and place them above bottom left and bottom right bars.

I’d considered addons like ‘moveAnything’ but I don’t think it has the functionality to rotate the action bars. I’m taking this route to avoid using an addon like bartender or dominos.

Any help would be greatly appreciated, thanks in advance.

Vael.

I use the following to put them horizontal in the middle above the others:

	--	Move the two right-side action bars to the middle, making them
	--	smaller and horizontal.
	for j,v in ipairs{"Left","Right"} do
		for i = 1,12 do
			local n="MultiBar"..v.."Button"
			local b,f=_G[n..i],1==i and StanceButton6 or n..i-1
			b:SetScale(.8)
			b:ClearAllPoints()
			b:SetPoint("LEFT",f,"RIGHT",i==1 and 71 or 6,i==1 and (j-1)*40 or 0)
		end
	end