
Edano
-
Posts
589 -
Joined
-
Last visited
-
Days Won
1
Community Answers
-
Edano's post in Issue with corrupt text with ControlSend was marked as the answer
an idea: before sending enter, read the control again and check if the string is correct, if not then repeat.
Edit: does it happen in the pdf or html part ?
-
Edano's post in My final obstical was marked as the answer
;http://www.autoitscript.com/forum/topic/153523-my-final-obstical/ ;Post #1 ;D:\DOKUME~1\ADMINI~1\LOKALE~1\Temp\SLICER\Avatar\photo-thumb-81575.png ;by NomadByNature ;Script grabbed by SLICER by Edano here: http://www.autoitscript.com/forum/topic/152402-slicer-autoit-forum-script-grabber/?p=1093575 HotKeySet("{ESC}", "Terminate") While 1 Do sleep(2000) MouseClick("left", 362, 146) Sleep(3000) Until PixelGetColor (977, 239) <> 0xDAE1DF MouseClick("left", 520, 287) Sleep(3000) MouseClick("left", 697, 334) Local $timer=TimerInit() Do Sleep(2000) Until PixelGetColor (1037, 477) <> 0xCF6B66 Or TimerDiff($timer)>240000 MouseClick("left", 1037, 477) WEnd Func Terminate() Exit 0 EndFunc -
Edano's post in If, Then, Repeat, Having issues was marked as the answer
no, the function is correct, it loops until the color is not 0xcccccc anymore. maybe you should check the coordinates and the color, but the script does what you said.
<> means IS NOT
-
Edano's post in PDF have spaces was marked as the answer
first stringreplace (string," ","%%")
second stringreplace (string," ","")
third strtingreplace(string, "%%"," ")
-
Edano's post in String Extraction Problem was marked as the answer
;http://www.autoitscript.com/forum/topic/153496-string-extraction-problem/ ;Post #1 ;D:\DOKUME~1\ADMINI~1\LOKALE~1\Temp\SLICER\Avatar\default_large.png ;by reb ;Script grabbed by SLICER by Edano here: http://www.autoitscript.com/forum/topic/152402-slicer-autoit-forum-script-grabber/?p=1093575 global $Info[4] $Info[0] = '"dana, Arial, Helvetica, sans-serif" ><b>Your account balance(s) as of Apr=il 17, 2012</b></font><br /><br/></td>' $Info[1] = 'dana, Arial, Helvetica, sans-serif" ><b>Your account balance(s) as of Jun=e 03, 2013</b></font><br /><br/></td>' $Info[2] = 'dana, Arial, Helvetica, sans-serif" ><b>Your account balance(s) as of Aug=ust 02, 2012</b></font><br /><br/></td>' $Info[3] = 'dana, Arial, Helvetica, sans-serif" ><b>Your account balance(s) as of Jan=uary 20, 2012</b></font><br /><br/></td>' ;~ $Info[4] = ' for $i = 0 to 3 $date = $Info[$i] $t=StringSplit($date,"of ",1) If $t[0]>1 Then $ret=StringSplit($t[2],"<") ConsoleWrite($ret[1] & " " & $i & @CRLF) EndIf Next -
Edano's post in Problem with HotKeySet for Right Brace "}" was marked as the answer
another try, on my keyboard, "}" is altgr+0 (zero). so i would try
HotKeySet("^!0","capture_rbrk")
depending on your keyboard
-
Edano's post in function not declaring default variable value? was marked as the answer
func _messagego($enckey) if not IsDeclared("enckey") Then $enckey = "Default" endfunc so it works
-
Edano's post in Help needed with this simple code using _IEFormGetObjByName was marked as the answer
.
i think you have a simple spelling mistake
Local $oForm = _IEFormGetObjByName($oIE, "qbqf") .
you look for form "gbqf", but you enter "qbqf".
could that be ?
E.