Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/26/2013 in all areas

  1. Jon

    AutoIt v3.3.10.0 Released

    AutoIt v3.3.10.0 has been released. Big thanks to everyone involved in this release, including past and present contributors, beta testers, moderators and MVPs. It really is a massive group effort! There's still a lot to do in future releases, but at least we have got a stable release out there that we can build on There are too many changes and fixes to list here, but some highlights include: 90+ bugs fixes and additions to the main AutoIt executables. 90+ bug fixes and additions to the user defined functions (UDFs). Much improved Unicode support within the regular expression engine for non-English character sets. Extensive AutoItX changes, including an easy to use .NET Assembly interface and a set of PowerShell CmdLets. Download it here. Complete list of changes: History
    4 points
  2. Yeah, it's there under _GetSavedSource() or now you can do it natively via FileInstall()... FileInstall(@ScriptFullPath, 'Script.au3') Though I still think the question is a little suspicious.
    1 point
  3. Oyvlei, I would organize the code as follows... local $path = @WorkingDir Local $search = FileFindFirstFile($path & "\test folder\*.txt") If $Search = -1 Then MsgBox(0, "", "Error: No files/directories matched the search pattern.") exit EndIf while 1 Local $file = FileFindNextFile($search) If @error Then ExitLoop switch not 0 case stringinstr($file,'train') if not fileexists($path & "\test folder\train\") then DirCreate($path & "\test folder\train\" ) ; ; do other train related processing ; case stringinstr($file,'car') if not fileexists($path & "\test folder\car\") then DirCreate($path & "\test folder\car\" ) ; ; do other car related processing ; case stringinstr($file,'boat') if not fileexists($path & "\test folder\boat\") then DirCreate($path & "\test folder\boat\" ) ; ; do other boat related processing ; case Else ; ; if necessary do no match type of processing ; endswitch wend FileClose($search) kylomas
    1 point
  4. OK, now I'm aware of that, thank you for your help
    1 point
  5. I also carry something that gets bigger and bigger and no woman complains about it (yet). Seriously, Win 7 is significantly bigger than Win 3.11 as well.
    1 point
  6. UEZ

    autoit 3.3.10.0 is HUGE

    Using this code give me 337kb exe. #AutoIt3Wrapper_UseUpx=y #AutoIt3Wrapper_UPX_Parameters=--best --lzma MsgBox(0, "Test", "Test") Still larger than the previous versions but AutoIt has more included features now. Br, UEZ
    1 point
  7. PACaleala

    Clipboard Pop-Up Help

    Hello IE is generating the pop-up (not your script). Check in IE : Tools - Internet Options - Security - Internet - Custom level - Scripting zone - Allow programmatic clipboard access. Most likely now IE has the option "Prompt" activated. Good luck
    1 point
×
×
  • Create New...