View Single Post
11-30-09, 01:41 AM   #105
Katae
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Jun 2007
Posts: 208
Here's a simple macro I just wrote for the x-y coords of the cursor.

Code:
/script local x,y=GetCursorPosition() local scale=UIParent:GetEffectiveScale() print(format(" x=%d y=%d",x/scale,y/scale))
  Reply With Quote