MouseGetPos programm (HILFE)

03/31/2013 15:10 Cryliefly#1
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
03/31/2013 15:26 YatoDev#2
Code:
HotKeySet ("{F6}", "start")
HotKeySet ("{F5}", "end")

While 1
Sleep(10)
WEnd

Func start()
While 1
$position = MouseGetPos()
Tooltip ("Die Position ist : "&$position)
WEnd
EndFunc

Func end()
Exit
EndFunc
03/31/2013 15:29 Cryliefly#3
Danke =)
04/03/2013 10:57 FacePalmMan#4
tipp an fluttershy: mousegetpos gibt arrays aus
04/03/2013 15:32 YatoDev#5
Quote:
Originally Posted by FacePalmMan View Post
tipp an fluttershy: mousegetpos gibt arrays aus
tipp an dich : kommentier nicht alles so nutzlos ;)

Ich glaube kaum das dir sowas an deinem handy auffallen würde ;)
04/04/2013 11:07 FacePalmMan#6
Quote:
Originally Posted by »FlutterShy™ View Post
tipp an dich : kommentier nicht alles so nutzlos ;)

Ich glaube kaum das dir sowas an deinem handy auffallen würde ;)
hä? was meinst du jetzt damit? ich bin in epvp nur am pc online!
04/04/2013 20:50 Achat#7
Quote:
Originally Posted by FacePalmMan View Post
tipp an fluttershy: mousegetpos gibt arrays aus
Code:
Tooltip ("Die Position ist : "&MouseGetPos(0)&" "&MouseGetPos(1))
Ohne Array :P

MfG