AutoIt v3 is a freeware BASIC-like scripting language designed for automating the Windows GUI and general scripting.
-1
votes
0answers
41 views
Search multiple strings in file using autoit script
I have file called Test.txt contains
Introduction
License
Installation Directory
Frequently Asked Questions (FAQ)
Credits
History ChangeLog
History of and Developers
Running Scripts
Script Editors
...
0
votes
1answer
52 views
Search string in file and print next 5th line in file using autoit
I have a text file contains nearly 20 lines wanted to search a string in file and print next 5th line in file using autoit, any one can help me to solve this
#include <File.au3>
#include ...
0
votes
1answer
23 views
Repeat the job without repeat typing the script for each value
I need help ; Thank
Using "Autoit"
I have this Autoit script working good but how I can make it repeat the job without repeat typing the script for each value ?
Value1 = usernameA work with ...
0
votes
1answer
27 views
AutoIt recent files menu
I have a user's choice which is set as recent files:
$loc = FileSelectFolder("Choose file location...", "\")
$file = FileOpenDialog("Choose file...", $loc, "Jar Files (*.jar*)")
...
0
votes
1answer
32 views
AutoHotkey filling webforms with firefox or google chrome
I have seen some information about using AutoHotKey with internet explorer for form filling through COM interface.
Is there any possibility to do something like this using firefox or chrome?
Thanks ...
0
votes
1answer
83 views
How to automate the “Windows Security” window: “Windows can't verify the publisher of this driver software”
This should be a simple question that should have a simple solution...yet nothing that I have tried works. My question is why? Is there a security feature in Microsoft preventing sending keys to ...
0
votes
1answer
32 views
How to get toolbar button indexes for AutoIt automation
I am trying to automate a third-party program to industrialize a user process at work. Basically, we're looking for a one-touch solution to set a given test's required settings in Racelogic's ...
-1
votes
0answers
57 views
How to handle back to back HTTP Authentication using “Autoit” with “java” code? [on hold]
I have tried many scenarios for this, it is still not working. I have tried below source code for as well, but it didn't work:
WinWaitActive("Authentication Required", "", 20)
...
0
votes
2answers
42 views
Autoit change name on window and use it in WinActivate
I have a function that starts some files and then change their names to their ids:
Global $PID2 = Run("java " & $chosen & ' -jar "spigot-1.6.2-R0.1.jar"', "E:\Spill\Alle ...
0
votes
1answer
55 views
Autoit use variable instead of directory name
I just wonder how to set this up. The user should select a jar file through:
Case $fileitem
$file = FileOpenDialog("Choose file...", "\", "Jar Files (*.jar*)")
Then file in $file should ...
0
votes
1answer
23 views
Writing and reading combo in Autoit
I made this function:
Func ReadStats()
$Read1 = IniRead("C:\Config.ini", "Checkbox", "Check1", "1")
$Read2 = IniRead("C:\Config.ini", "Checkbox", "Check2", "1")
$Read3 = IniRead("C:\Config.ini", ...
0
votes
1answer
36 views
Use AutoIt to call another AutoIt compiled executable with parameters
I was trying to create a program that would use multiple tooltips, but I came across a problem: I can only use one at a time, because after that, the new one will replace the previous.
I came up with ...
0
votes
1answer
43 views
AutoIt write checkbox state to file
I have two checkboxes named $Checkbox1 and $Checkbox2. Also I have a combo named Combo1. How can I make the program to create a file with custom name which saves state of the checkboxes and the combo ...
1
vote
1answer
43 views
Autoit Java argument in run command through $chosen variable
I made a combo:
$Combo1 = GUICtrlCreateCombo("Java Memory", 24, 872, 145, 25, $CBS_DROPDOWNLIST)
GUICtrlSetData(-1, "-Xmx1024M|-Xmx2048M|-Xmx3072M|-Xmx4096M")
Then I added something to read it:
...
0
votes
1answer
35 views
WinWait inside remote desktop connection
In my script I need to connect to a server through RDC, then open an application say abc and wait for a window to appear having title as "Information". I am using:
WinActive("abc")
Sleep(1000)
...