I've been trying to get the mouse position relative to the entire desktop, but neither of my clumsy attempts work - what am I doing wrong?
var MouseXPos = desklet.ConvertToValue("%MOUSEX%");
var MouseYPos = desklet.ConvertToValue("%MOUSEY%");
alert(MouseXPos + "n" + MouseYPos)apparently, this just returns the position relative to the desklet
var MouseXPos = desklet.UI.Desktop.x
var MouseYPos = desklet.UI.Desktop.y
var MouseXPos = desklet.UI.Desktop.screenX
var MouseYPos = desklet.UI.Desktop.screenY
both of the above return undefined
Aqua-Soft Forums