PDA

View Full Version : How to move target's target and so.



Sither
03-07-2008, 08:00 PM
How do you for instance move your target's target? So it's not on the right all the time.
I'd like to get it above my target.
And how do you get your party to be scaled together? So there's no space between em.

-Cheers

Limp
03-13-2008, 01:17 PM
I want to know it, too

auren
03-18-2008, 10:23 PM
Go to your layout.lua file and search for target

then go down to target within the children of the target section, and find



Anchor = { "LEFT", "$parent", "RIGHT", 8, 12 }



or some other points perhaps, then you want to change the anchors and points to fit it where you want in the ui. The first direction ("LEFT") refers to the point on the frame you are working with, "$parent" is pretty much universally used in nurfed - referring to the parent frame you are working on. The second direction ("RIGHT") refers to where you want the 1st point to go in reference to the frame you are working on. The final two points are for precise tweaking of the frame itself in an <x,y> coordinate plane.

I am not sure what layout you are actually using, but if you want the frame to be above your target, it would be something like:



target = { template = "Nurfed_Unit_mini", Anchor = { "BOTTOM", "$parent", "TOP", 5, 15 } },

a67rhf7823jn8747==