View Single Post
07-24-14, 03:29 PM   #7
Resike
A Pyroguard Emberseer
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,290
Originally Posted by ObbleYeah View Post
Can i hijack this thread to ask if it's possible to move the boss unit frames without causing taint - since they don't have the right-click + move option?
Could try this:

Lua Code:
  1. local a = {Boss1TargetFrame:GetPoint()}
  2. Boss1TargetFrame:ClearAllPoints()
  3. Boss1TargetFrame:SetPoint(a[1],a[2],a[3],a[4]-22, a[5]-70)
  4. Boss1TargetFrame:SetMovable(true)
  5. Boss1TargetFrame:SetUserPlaced(true)
  6. Boss1TargetFrame:SetMovable(false)

I think this would work with the TargetFrame or pretty much any protected frames too.

At least i'm using this in:

http://www.wowinterface.com/forums/s...ad.php?t=49385

However i'm not finished with the "in combat" testing yet.

Last edited by Resike : 07-24-14 at 05:26 PM.
  Reply With Quote