View Single Post
06/27/18, 09:18 AM   #7
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
I just tested this and it works, i'm able to move the HUD of the BGs:

If the BG HUD is shown enter into the chat:
Code:
/script BATTLEGROUND_HUD_FRAGMENT.control:SetMouseEnabled(true)
After that enter this.
Code:
/script BATTLEGROUND_HUD_FRAGMENT.control:SetMovable(true)
And now you are able to drag&drop the HUD of the BG if you click the shown keybind row on top of the HUD with the mouse and keep it pressed while moving the mouse.

You can try to combine the 2 scripts in one row like this:
Code:
/script BATTLEGROUND_HUD_FRAGMENT.control:SetMouseEnabled(true) BATTLEGROUND_HUD_FRAGMENT.control:SetMovable(true)
  Reply With Quote