Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/12/2022 in all areas

  1. Try this patten: (?im)main_version\h*0x([[:xdigit:]]+)
    1 point
  2. version: 4.0.1 changes Fixed crash when creating too many objects (f86a0c4) Fixed could not modify the default object method property $oIDispatch() (58fa551)
    1 point
  3. You need to use 64-bit compiled script: #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_UseX64=y #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** Local $sExplorer = "explorer.exe" While ProcessExists($sExplorer) ProcessClose($sExplorer) WEnd Run($sExplorer)
    1 point
  4. Nine

    Screen scraping

    @Patrik96Here a function that you could try. If images are not too too big, you should get a decent response time. Func ClearAll($nColorPreserved, $nColorClear) Local $iSize = $iGS_Width * $iGS_Height $nColorPreserved = BitOR($nColorPreserved, 0xFF000000) $nColorClear = BitOR($nColorClear, 0xFF000000) For $i = 1 To $iSize If DllStructGetData($tGS_Struct, "color", $i) <> $nColorPreserved Then DllStructSetData($tGS_Struct, "color", $nColorClear, $i) Next EndFunc
    1 point
×
×
  • Create New...