Re-write of _FileReadToArray()
Hi,_FileWriteFromArray now writes from both 1D and 2D arrays - so we thought it about time that _FileReadToArray could read both types as well. Here is a Beta version of the new function for testing...
View ArticleIs creating a GUI program with AutoIt quite the same as developing it in C++?
I think there's only a little difference when you create a GUI program with AutoIt from developing a GUI program by writing it in C++, mostly, if you're including cURL in your project.. Because...
View ArticleFile.au3 Variable Undeclared
i received this message in my console and I thought I should notify someone. "C:\Program Files\AutoIt3\Include\File.au3" (552) : ==> Variable used without being declared.: Local $hFileOpen =...
View ArticleOOP or functional.
Hi guys! I've been working in some projects, and looking/studying some UDF, and I found the AutoItObject...just...awesome... But now, I'm having some troubles making decisions, I am very indecisive,...
View ArticleWeird return from C++ dll
Getting an odd result from a DllCall. I'd expect 65 as a result. MsgBox(0,"Success", _Asc("A")) Func _Asc($char) $a_Asc = DllCall("AU3.dll", "uint", "_Asc", "str", $char) If @error Then...
View ArticleCrash after upgrading to 3.3.10.2
Hi, Prior to upgragind to version 3.3.10.2 this snippet of code worked but now it crashes. Any idea what's going on? $objWMIService = ObjGet("winmgmts:\\" & @ComputerName & "\root\CIMV2")...
View ArticlePerl Error: Could not start AutoItX3 Control through OLE
Hello, I am trying to use Win32::IEAutomation to do some IE automation. Here is the code example: #!/usr/bin/perl -w use strict; use Win32::IEAutomation; my $ie = Win32::IEAutomation->new(...
View ArticleStatus of ubyte in structures
AFAICT ubyte is accepted and treated the same as byte in structures, yet DllStructGetData documentation mentions it but DllStructCreate doesn't. So which documentation needs fixing and are there...
View ArticleDifferent boolean result from Execute in AU3 versus EXE
This small reproducing script shows: Result: 1 from AU3 (Run from full Scite by F5) Result: True from compiled EXE $test = '1 > 0' MsgBox(0,'Output', $test & @CRLF & 'Result: ' &...
View ArticleAutoIt v3.3.11.3 Beta
File Name: AutoIt v3.3.11.3 BetaFile Submitter: JonFile Submitted: 15 Jan 2014File Category: Beta3.3.11.3 (15th January, 2014) (Beta)AutoIt:- Fixed #2613: AutoIt crashes whenever an array value...
View ArticleQuestion about a possible feature request.
I'm sure this has been asked before but again I don't really know how to search for this because I don't know what it would be called. I was thinking that because we can do this: For $var in $array...
View ArticleRemoval of PlugIn
In the latest Stable, PlugIns were removed just because, as the changelog claims "no one uses it". That is plain wrong. People invested a lot of Work in PlugIns like the OpenGL PlugIns and Users used...
View ArticleScript working directory issue
AutoIt expandcollapse popupConsoleWrite("Original working directory: " & @CRLF & GetCurrentDirectory() & @CRLF & @CRLF) FileSaveDialog("", "", "", 0, "") ConsoleWrite("Working...
View ArticleMultiple if thens changing how the script runs... simultaneously
Hi I am currently working on a script and am still fairly new to Auto-it. I have only been using Auto-it for about a month and a half, and what I am trying to do is create a check system that depending...
View Articleautoit.exe
This might be a stupid question, but i'm gonna ask anyway, can I somehow build my own autoit3.exe If i'm not interested in having all the includes that autoit3.exe got, can I somehow make my own...
View ArticleReplaceStringInFile
AutoIt expandcollapse popupFunc _ReplaceStringInFiletmp($sFilePath, $sSearchString, $sReplaceString, $iCaseSensitive = 0, $iOccurance = 1) If StringInStr(FileGetAttrib($sFilePath), "R")...
View ArticleEmpty arrays
Hello, I wrote a script where I was using empty Arrays like below: Func SomeFunc() Local $Array[] ;do something with array EndFunc and the script was working perfectly, but now AutoIt is giving...
View ArticleCapture le texte du dernier champ actif de l'application "AR System...
Bonjour tout le monde. Aujourd'hui j'aimerais avoir des solution ou astuce pour les fonctions à utiliser pour prendre de l'information dans une autre fenetre. Mon code que j'utilisais dans autoit...
View ArticleAutoIt v3.3.10.2 / AutoIt3Wrapper installer fails
I've been using AutoIt for years and I love it, but the v3.3.10.2 installer fails while installing the AutoIt3Wrapper.I tried the installer several times and got the same result. I tried the zip and it...
View ArticleBeta Array.au3 code - testing and comments welcomed
Deadline of 1800 UTC 28 Jan 14 for bug reports, comments and suggestionsI have rewritten the Array.au3 include file to support 2D arrays where possible. I would be grateful if people would test it...
View Article