Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/20/2013 in all areas

  1. Jon

    AutoIt v3.3.9.9 Beta

    File Name: AutoIt v3.3.9.9 Beta File Submitter: Jon File Submitted: 20 Jul 2013 File Category: Beta 3.3.9.9 (20 July, 2013) (Beta) AutoIt: - Added: FuncName(). - Fixed: Subtle bugs with Ping() Aut2Exe: - Changed: FileInstall() files are now stored in the Resources section along with the script. No overlays are used anymore. - Changed: Default changed to not use UPX. UDFs: - Added: Example for _VersionCompare. - Fixed #2320: Incorrect return values for certain IE functions. Click here to download this file
    2 points
  2. Jos

    Resource updates

    I have split off you support question from the Beta thread. So tell me, what are you expecting to happen? Which version of AutoIt3Wrapper are you using as you need to use the latest available Beta version for anything to work? There will be a warning when compiling your script with the latest AutoIt3 Beta that states: > #pragma Compile(out, YourFileName) and/or #pragma Compile(x64, true/false) found: - Ignoring all #AutoIt3Wrapper_OutFile* and #AutoIt3Wrapper_Compile_both #directives! >Running AU3Check (3.3.9.9) from:C:\Program Files (x86)\AutoIt3\Beta +>21:14:33 AU3Check ended.rc:0 >Running:(3.3.9.9):C:\Program Files (x86)\AutoIt3\Beta\aut2exe\aut2exe.exe /in "D:\Development\AutoIt3\programs\test\test\test2.au3" /out "myProg.exe" /nopack /comp 2 +>21:14:42 Aut2exe.exe ended.D:\Development\AutoIt3\programs\test\test\myProg.exe. rc:0 >21:14:42 Performing the Program Resource Update steps: > #pragma Compile() found that updates the VERSION Resources. - Ignoring all #AutoIt3Wrapper_* #directives that would normally update the VERSION section! > #pragma Compile() found that updates the MANIFEST Resources. - Ignoring all #AutoIt3Wrapper_* #directives that would normally update the MANIFEST section! >21:14:42 Program Resource updating finished successfully. > #pragma Compile(UPX, true/false) found. - Ignoring all #AutoIt3Wrapper_UseUPX #directive! +>21:14:42 Created program (pragma):myProg.exe Which means that the AutoIt3Wrapper resource directive will be ignored as AUT2EXE is doing the resource updating! Jos
    1 point
  3. It looks like this choice was mortog's I agree with searching strings, so regex should work too Local $array[4] = ["1", "3", "6", "9"] Local $string = "1,2,3,4,5,6,7,8,9" Local $bFound = False For $i = 0 To UBound($array)-1 If StringRegExp($string, '(^|,)' & $array[$i] & '(,|$)') Then $bFound = True ExitLoop EndIf Next MsgBox(0, "Return", "Found = " & $bFound)
    1 point
  4. Oh hell, HAVE TO POST IT. http://youtu.be/katzz57tmm4
    1 point
  5. Jos

    AutoIt v3.3.9.8 Beta

    This is not the place for requests and doubt anything will get added at this point. What is wrong with sticking to the #autoIt3Wrapper directives for scripts that require these specials? Jos
    1 point
  6. AZJIO

    Detect an USB device

    WM_DEVICECHANGE
    1 point
  7. Jon

    AutoIt v3.3.9.9 Beta

    The funny thing is, this is always how I wanted to do it. But when I wrote the first version it was on Windows 98 and that doesn't have all the resource handling functions. Should have changed it when I dropped 9x support really.
    1 point
×
×
  • Create New...