View Single Post
10-31-22, 02:40 PM   #9
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,327
Originally Posted by Deadlyz View Post
I wonder if it's possible to detach the default castbar and move it using screen coordinates. If it's possible would that require a lot of efforts?
You can replace the anchor adjustment section with this.
Lua Code:
  1. if self.spellbar then
  2.     self.spellbar:ClearAllPoints();
  3.     self.spellbar:SetPoint("TOPLEFT",self,"BOTTOMLEFT",43,-46);--   Default anchor on large frame with ToT shown
  4. end
Of course, you can change the anchor to whatever you want. This is just an example.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
  Reply With Quote