09/03/11 22:25:12 NuVSrS420
>>437
引数の参照渡し(ByRef)を使ってみるとか。
#persistent
SetTimer, timer
return
MouseGetScreenPos(ByRef x, ByRef y){
CoordMode, Mouse, Screen
MouseGetPos, x, y
CoordMode, Mouse, Relative
}
timer:
MouseGetScreenPos(sx, sy)
MouseGetPos, x, y
tooltip, x%x%`ny%y%`n`nsx%sx%`nsy%sy%
return