autoit Questions

2

Solved

I have seen information about using AutoHotkey with Internet Explorer for form filling through COM interface. Is there any possibility to do this using Firefox or Chrome?
Bimestrial asked 1/8, 2013 at 12:45

6

Solved

I would like to know if its possible to WinWaitActive for WindowWithThisTitle and WindowWithThatTitle at the same time. I'm executing a command and there could be a window telling me that the conne...
Initiation asked 14/8, 2010 at 0:9

2

Solved

I maintain Autoit project used for automated testing of swing app. Those tests have now about 70 files. It's get pretty hard to maintain all this code without following some "best practices" ...
Valencia asked 2/2, 2012 at 8:53

4

I am trying to handle the basic authentication pop up for my Selenium webdriver scripts using AutoIt. I wrote a script for Firefox and Internet Explorer but it doesn't work for Chrome. When I trie...
Violaviolable asked 14/10, 2013 at 9:54

1

Solved

I'm trying to use cmd.exe through AutoIt script. When I run(c:\windows\system32\cmd.exe) and try to launch manage-bde the error is not recognized as an internal or external command, operable pro...
Birl asked 10/7, 2018 at 8:9

3

Solved

My AutoIt script generates an error that I want to handle. A way that any error goes to a custom function will also do. In VBA I use OnErrorGoTo, but I am unable to find something similar in AutoIt...
Payload asked 30/11, 2015 at 9:33

2

Solved

My AutoIt script sends a list of clicks and key-presses to automate an old closed source application. It has bugs so I want to know how I can debug AutoIt scripts. Or at least output the script's ...
Blackboard asked 5/12, 2015 at 18:26

5

Solved

Check out this list. I need each one turned into a variable and set equal to 0. Example: ;1-Methyoxy-2-Propanol would be: $OneMethoxyTwoPropanol = 0 ;and 1,2-BUTADIENE would be: $OneTwoButadiene ...
Overexert asked 16/3, 2016 at 23:42

3

I want to write text to console/Windows command prompt in AutoIt. I made a test script as shown below: Func Test() ConsoleWrite("Hello") EndFunc Test() I saved the script as test.au3. When I r...
Curriery asked 13/1, 2016 at 8:7

1

Solved

How can I put ConsoleWrite() into GUICtrlCreateEdit()? #include <EditConstants.au3> #include <GUIConstantsEx.au3> $Form1 = GUICreate("Test", 257, 182, 192, 124) GUISetFont(12, 400, 0...
Peti asked 2/11, 2017 at 12:49

3

Solved

Chemicals have a trade name (which is what it is commonly referred to as) and an actual chemical name. I need to look up a trade name, find its proper chemical name, then get properties of that che...
Challenge asked 27/2, 2016 at 9:29

2

Solved

I want to automatically define incrementing variable names. So instead of this: $Var1 = 'This is variable one :P' $Var2 = 'This is variable two :P' I'd like this (pseudo code): For $i = 1 to U...
Mazda asked 20/9, 2011 at 8:14

1

I have a long text which needs to be converted to small strings so I can include it to an AutoIt script. If I include multi-line text it shows error unterminated string. So I should have: "numberc...
Euphorbiaceous asked 2/6, 2017 at 22:18

4

How do I issue commands to Windows comand prompt using AutoIt? What didn't work (I used Sleep() to make sure it is not skipping because of fast execution): ;Run application Run("cmd.exe")...
Heterophyte asked 7/6, 2013 at 8:32

4

From here I downloaded: SciTE4AutoIt3.exe SciTE.exe But AutoIt Recorder is not in the tools menu. Also tried downloading AutoIt Recorder, though I could not. How to get AutoIt Recorder?
Celina asked 15/9, 2014 at 9:50

3

Solved

How to send an email with AutoIt? Just need a clean example and explanation, containing: to from subject message
Dramatization asked 12/10, 2010 at 20:29

3

Solved

I downloaded the latest version and ran full installation using default settings. Then I downloaded SciTE4AutoIt3.exe. I created and saved a new .au3 file. When I click the AU3Recorder option in To...
Plunkett asked 29/7, 2015 at 20:58

1

Solved

I am writing a script in AutoIt to test a windows application, and I am using the _Assert function to verify certain actions. In the documentation I found there is a parameter to say whether or no...
Elegant asked 5/6, 2015 at 18:38

4

I'm using AutoIt to automate GUI operations (connecting to the machine that's running the to-be-automated app, using RDP). Whenever I minimize the RDP window (using mRemote) no further AutoIt...
Lumber asked 3/4, 2011 at 8:12

1

Solved

I have a string: string1 string2 - string3 string4. I need it split in two at the - (note the space on either side of the "-"). I have the following code which isn't working as expected: #include ...
Horologist asked 19/5, 2015 at 11:43

1

Solved

I have to convert a hexadecimal number to decimal, but don't know how. In the AutoIt documentation (pictured below) some constants (being assigned hexadecimal values) are defined: 0x00200000 hex...
Dunnage asked 18/5, 2015 at 13:36

1

Solved

I have a grid like the image below which I want to put in an array in this format: ;x = wall(black cells and grey boxes), s= start (red circle), g = goal(blue circle), 0 = available path(everyth...
Antibiotic asked 3/5, 2015 at 17:45

1

Solved

I am having a bad time with the standalone version of 7-Zip. I want to compress a folder with a password. I tried: 7za a my_folder -pmy_password. It's compressing all the files in which 7za.exe is ...
Choiseul asked 28/12, 2014 at 11:8

2

I have the following code to capture and process the Run command output. How do I modify it such that the Run command window displays output and at the same time the output gets logged? Replacing @...
Sabatier asked 9/5, 2013 at 14:12

1

Solved

This code was causing errors at runtime but would compile. Local $acceptable[] = ["Chrome",_ "Firefox",_ "IE"] It works if I move it all on one line. However, I want to declare many elements. ...
Corticate asked 1/12, 2014 at 12:49

© 2022 - 2024 — McMap. All rights reserved.