Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/09/2017 in all areas

  1. Now you're just showing off.
    2 points
  2. Take the zip files in example section of iuiautomation thread. Github things is not written by me. The error you get is due to element not returning its size and as such a rectangle can not be drawn to higlight. What happens when you hover over the yellow circles with your mouse cursor. Anything then changing visually somewhere in screen. Status bar, information, tooltip etc.
    1 point
  3. Ps? local $Dir , $File _PsFileSearch_Rec("C:\Users" , "*.pdf") Func _PsFileSearch_Rec($Dir , $File) run('cmd /k "powershell "dir -Path ' & $Dir & ' -Filter ' & $File & ' -Recurse" | %{$_.FullName}') EndFunc ;PsFileSearch_Rec
    1 point
  4. mLipok, There is a working recursive file listing script in the "Recursion" tutorial in the Wiki. M23
    1 point
  5. The error is not what I expected, was expecting a COM error. Anyway looks like one of the Arrays is not formatted properly, @junkew might be able to help furthur
    1 point
  6. Try running the script uncompiled and take a screenshot of the error, the screenshot of the compiled script doesn't help very much.
    1 point
  7. @Earthshine UIAutomation should be available by default from Windows Vista and Server 2008 and you can get it on XP and Server 2003 by installing .NET Framework 3.0. So I doubt your server lacks something important, is it a hard crash (i.e Windows shows a "This program has crashed" dialog) or an error thrown by AutoIt?
    1 point
  8. As Grunty has demonstrated, AutoIT is not typed, when a type conversion appears requested, it does its best to sort it out for you. Here is my similar example: Opt('MustDeclareVars', 1) Global $var1 = "1" Global $var2 = "4" Global $var3 = "5" Global $var4 = $var1 & $var2 & $var3 MsgBox(1, "Concatenate", $var4) MsgBox(1, "Concatenate+1", $var4 + 1)
    1 point
  9. use & to join them local $v1 = 1, $v2 = 2, $v3 = 3 local $v4 = $v1&$v2&$v3 msgbox(1,"together",$v4)
    1 point
  10. Try findbmp in examples or imagesearch for 5x5 yellow pixels
    1 point
×
×
  • Create New...