wollte ein MouseGetPos Programm scripten bekomm das irnwie nich hin das der Output die MousePosition ist
Quote:
HotKeySet ("{F6}", "start")
HotKeySet ("{F5}", "end")
While 1
Sleep(10)
WEnd
Func start()
While 1
MouseGetPos ($position)
Tooltip ("Die Position ist : "&$position)
WEnd
EndFunc
Func end()
Exit
EndFunc