View Single Post
04-10-20, 06:06 PM   #1
Kindosar
A Murloc Raider
Join Date: Feb 2020
Posts: 9
MultiBarLeft MultiBarRight move and scale

Hello, I'm in the process of making my own ui. It simply moves stuff around using the base ui, so its nothing complicated. That being said, I've encountered a couple things that I've not been able to figure out.

Through my research, I found this post: https://www.wowinterface.com/forums/...ad.php?t=56445

This post goes a bit over my head as I'm just getting into coding with LUA and the interacting with blizzard frames.

I'm aware that I can't scale the MultiBarLeft and MultiBarRight due to them being attached to the MinimapCluster, but I'm able to move them.

The idea that I'm having is to move them and anchor them to a bar so that I can increase the bars that I have at the bottom. For example:

Lua Code:
  1. MultiBarLeft: SetScale(1.5)
  2.        MultiBarLeftButton1:ClearAllPoints()
  3.        MultiBarLeftButton1:SetPoint("CENTER",ActionButton11,"LEFT",0,0) MultiBarLeftButton1.SetPoint = function() end

Moving the bar works, but the scale doesn't work.

What can I do to fix this issue?

Thank you in advance for your time and help.
  Reply With Quote