View Single Post
05-26-20, 03:32 PM   #7
Sylen
A Wyrmkin Dreamwalker
AddOn Author - Click to view addons
Join Date: Jan 2011
Posts: 50
This works fine for me. Looks like this: https://imgur.com/a/BW0cTJu

Lua Code:
  1. -- Scale the bars
  2. for i = 1, 12 do
  3.     _G["ActionButton"..i]:SetScale(1.04)
  4. end
  5. MultiBarBottomLeft:SetScale(1.04)
  6. MultiBarBottomRight:SetScale(1.04)
  7. PetActionBarFrame:SetScale(1.04)
  8. -- Move ActionBar
  9. ActionButton1:ClearAllPoints()
  10. ActionButton1:SetPoint("CENTER",-230,42)
  11. ActionButton1.SetPoint = function() end
  12. -- Move MultiBarBottomLeft
  13. MultiBarBottomLeft:ClearAllPoints()
  14. MultiBarBottomLeft:SetPoint("LEFT", ActionButton1, "LEFT", 0, 45)
  15. MultiBarBottomLeft.SetPoint = function() end
  16. -- Move MutltiBarBottomRight and make it one bar
  17. MultiBarBottomRight:ClearAllPoints()
  18. MultiBarBottomRight:SetPoint("LEFT", MultiBarBottomLeft, "LEFT", 0, 45)
  19. MultiBarBottomRight.SetPoint = function() end
  20. MultiBarBottomRightButton1:ClearAllPoints()
  21. MultiBarBottomRightButton1:SetPoint("LEFT", MultiBarBottomLeft, "LEFT", 0, 42)     
  22. MultiBarBottomRightButton1.SetPoint = function() end
  23. MultiBarBottomRightButton7:ClearAllPoints()
  24. MultiBarBottomRightButton7:SetPoint("LEFT", MultiBarBottomRightButton6, "LEFT", 42, 0)     
  25. MultiBarBottomRightButton7.SetPoint = function() end   
  26. -- Move StanceBar
  27. StanceButton1:ClearAllPoints()
  28. StanceButton1:SetPoint("LEFT", MultiBarBottomLeft, "LEFT", 0, 42)
  29. StanceButton1.SetPoint = function() end
  30. -- Move PetActionBar
  31. PetActionBarFrame:ClearAllPoints()
  32. PetActionBarFrame:SetPoint("CENTER", MultiBarBottomLeft, "CENTER", 30, 90)
  33. PetActionBarFrame.SetPoint=function()end
  34. -- Move PageButtons
  35. ActionBarUpButton:ClearAllPoints()
  36. ActionBarUpButton:SetPoint("CENTER",650,-15)
  37. -- Hide Blizzard Art
  38. MainMenuBarArtFrame.LeftEndCap:Hide()
  39. MainMenuBarArtFrame.RightEndCap:Hide()
  40. MainMenuBarArtFrameBackground:Hide()
  41. MainMenuBarArtFrame.PageNumber:Hide()
  42. StatusTrackingBarManager:Hide()
  Reply With Quote