> 
> Wondering if any of the gurus here could do a PowerPro version?  :)


You need the latest beta 4.5.10.  Assign following script to hot 
key.  Activate hot key to show cross har.  Activate again to erase. 
Move mouse to update

;---------------------------------

static bShowing,xpos,ypos,ev
if (!bShowing) do

//not showing, draw initial cross hair and set up timer
ev = event.createms(100,0,cb("@update"))
bShowing=1
xpos=xmouse
ypos=ymouse
win.crosshair(xpos,ypos)


else    //if called when showing,cancels
if (event.exists(ev))
ev=event.destroy(ev)
win.crosshair(xpos,ypos)   //overdrawing erases last
bShowing=0
endif
quit


// call here to query mouse pos and update
@update 
static xpos, ypos,bShowing
if (!bShowing) // should never happen
quit

local xnow=xmouse
local ynow=ymouse
if (xnow != xpos || ynow != ypos) do
win.crosshair(xpos, ypos)  //erases previous
xpos=xnow
ypos=ynow
win.crosshair(xpos,ypos)
endif
quit






Attention: PowerPro's Web site has moved: http://www.ppro.org 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/power-pro/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/power-pro/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to