View Single Post
10-03-22, 05:00 PM   #2
LudiusMaximus
A Rage Talon Dragon Guard
 
LudiusMaximus's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2018
Posts: 323
If you know the name of your frame (e.g. YourFrame), try this:

Lua Code:
  1. YourFrame:HookScript("OnShow",
  2.   function(self)
  3.     if not self:IsProtected() or not InCombatLockdown() then
  4.       self:SetPoint("BOTTOMRIGHT", UIParent, "BOTTOMRIGHT", -500, 500)
  5.     end
  6.   end)
__________________
~ Be the change you want to see in the world... of warcraft interface! ~
  Reply With Quote