|
You last visited: Today at 22:14
Advertisement
AutoIT. Error parsing function call.
Discussion on AutoIT. Error parsing function call. within the AutoIt forum part of the Coders Den category.
08/14/2015, 05:08
|
#1
|
elite*gold: 0
Join Date: Feb 2014
Posts: 35
Received Thanks: 1
|
AutoIT. Error parsing function call.
Hey,
Mein AutoIt Script zeigt mir beim ausführen folgenden Error an:
Line 33 (File"C:Users\Users\PC\Desktop\MausMove.au3"):
MouseMove ( 878, 654 [, speed = 3]
MouseMove ( 878, 654 [, speed = 3^ ERROR
Error:Error parsing function call.
Meine Frage. Was hab ich falsch gemacht?
HotKeySet ( "{F11}" , "Start" )
HotKeySet ( "{f12}" , "Ende" )
While (1)
Sleep (1000)
Wend
Func Start ()
While (1)
Sleep (3000)
Send ( "{c down}" )
Sleep(1000)
Send ( "{c up}" )
Sleep(100)
While (1)
$Mouse1 = PixelGetColor ( 184, 754 )
$Mouse2 = PixelGetColor ( 184, 754 )
$Mouse3 = PixelGetColor ( 184, 754 )
$Mouse4 = PixelGetColor ( 184, 754 )
$Mouse5 = PixelGetColor ( 184, 754 )
If $Mouse1 = 0x000000 Then
Sleep(10)
MouseMove ( 878, 654 [, speed = 3]
ExitLoop
EndIf
If $Mouse1 = 0x000000 Then
Sleep(10)
MouseMove ( 878, 654 [, speed = 3]
ExitLoop
EndIf
If $Mouse2 = 0x000000 Then
Sleep (10)
MouseMove ( 908, 654 [, speed = 3]
ExitLoop
EndIf
If $Mouse2 = 0x000000 Then
Sleep (10)
MouseMove ( 908, 654 [, speed = 3]
ExitLoop
EndIf
If $Mouse3 = 0x000000 Then
Sleep (10)
MouseMove ( 943, 654 [, speed = 3]
ExitLoop
EndIf
If $Mouse3 = 0x000000 Then
Sleep (10)
MouseMove ( 943, 654 [, speed = 3]
ExitLoop
EndIf
If $Mouse4 = 0x000000 Then
Sleep(10)
MouseMove ( 973, 654 [,speed = 3]
ExitLoop
EndIf
If $Mouse4 = 0x000000 Then
Sleep(10)
MouseMove ( 973, 654 [,speed = 3]
ExitLoop
EndIf
If $Mouse5 = 0x000000 Then
Sleep(10)
MouseMove ( 999, 654 [,speed = 3]
ExitLoop
EndIf
If $Mouse5 = 0x000000 Then
Sleep(10)
MouseMove ( 999, 654 [,speed = 3]
ExitLoop
EndIf
Sleep(500)
Wend
Sleep(2000)
WEnd
Endfunc
Func Ende ()
Exit
EndFunc
|
|
|
08/14/2015, 05:13
|
#2
|
elite*gold: 0
Join Date: Sep 2007
Posts: 500
Received Thanks: 146
|
Change:
Code:
MouseMove (878, 654, 3)
MouseMove (878, 654, 3)
MouseMove (908, 654, 3)
MouseMove (908, 654, 3)
MouseMove (943, 654, 3)
MouseMove (943, 654, 3)
MouseMove (973, 654, 3)
MouseMove (973, 654, 3)
MouseMove (999, 654, 3)
MouseMove (999, 654, 3)
Do this for every mouse move.
|
|
|
08/14/2015, 05:18
|
#3
|
elite*gold: 0
Join Date: Feb 2014
Posts: 35
Received Thanks: 1
|
Ty. I will try it.
It works. Ty.
|
|
|
08/28/2015, 09:15
|
#4
|
elite*gold: 2
Join Date: Jul 2009
Posts: 14,456
Received Thanks: 4,685
|
#closed
|
|
|
 |
Similar Threads
|
Fatal error: Call to undefined function curl_init()
09/21/2014 - Web Development - 2 Replies
Hey Leute,
wie kann ich den Error fixxen:
Fatal error: Call to undefined function curl_init() in /home/www/cwcity/hosting/e/x/exodium2/htdocs/pages /voten.php on line 10
In der 10. Zeile von voten.php steht:
$topl_curl = curl_init();
wie fix ich das?
Ich habe mir für meinen Metin2 Server ein Votescript geholt:
|
Fatal Error: Call to undefined function result()
08/14/2013 - Web Development - 2 Replies
Hi everyone... i am going to advance learning in php..its about bmi so in the code area.. i will not put the code in some area because it is a currently activity and i dont want my classmates to search and find this page out..
<?php
if isset($_POST) // if the button is submitted
if ... // if the height field area is empty
...//statement of it saying it is an error
elseif .... //if the weight field area is empty
...//statement of it saying it is an error
else //if the height and weight is...
|
Fatal error: Call to undefined function mysql_connect()
02/16/2010 - Metin2 Private Server - 3 Replies
hi elitepvpers
da ich bei einem problem einfach nicht weiterkomme, hoffe ich hier hilfe zu finden.
Ich habe auf FreeBsd Apache Mysql und Php installiert
nun möchte ich eine page damit online stellen, die z.b. ein registrierungsformular besitzt und diese daten dann in ne mysql datenbank eingibt. ist zum accounts machen für ein game.
wenn ich nun jedoch auf absenden gehe kommt folgender error:
|
All times are GMT +1. The time now is 22:15.
|
|