About file process, is this possible?
Let say I have a network file \\myserver\myfolder\myfile.exe mapped as R:\myfolder\myfile.exe This folder is shared and myfile.exe is accessed by many computers at the same time. I would like to...
View ArticleActivate window inside a VM from Host
Hi, I'm running a script from Host and want to control a window insde a virtual machine, using VMware Player. Mouseclick, everything works, except for the screen coordinates and pixel...
View ArticleConvert from or to Big and Little Endian
I found this page: http://www.autoitscript.com/wiki/Snippets_%28_Math_%26_Numbers_%29#Integer2Binary.28.29_.26_Binary2Integer.28.29_.7E_Author_-_UEZ And it has some great code listed. But I can't...
View ArticleListview... VERY slow to load item :(
Fill listview is (very) slow (I think more than 10000 lines & 10 col) loooooook !
View Articleupdater script
Hello World.I have a script that people throughout the company use called Freeze. Whenever I put out a new version, I put it along with other files into a self-extracting executable (winzip file). Upon...
View ArticleWindows 8... no drag and drop, other problems...
Has anyone else run into problems using tools that worked properly in other versions of windows that now do not work in Windows 8? One of my custom applications will no take a drag and drop into a...
View ArticleOutlook EX UDF _Itemreply
alright this is the last step I need and I just can't seem to figure it out. So the first step of what I am doing is to parse and email and get the information into a mainframe system. I will then...
View ArticleIs there equivalent of vbscript Array() function
Does Autoit have an equivalent for the VBscript function Array() ? See: http://www.w3schools.com/vbscript/func_array.asp Andre
View Articleassigning 1D array to 1D range in Excel
This code works: Dim $aArray[] = ["cars","bikes","boats"] $oWB.Activesheet.Cells(1,1).Resize(1,3) = $aArray but this does not work: $oWB.Activesheet.Cells(1,1).Resize(1,3) = ["cars","bikes","boats"] I...
View Articlelooking for array assignment syntax
Hi Fellow code-naughts. How is it going. I m trying to do this: Dim $myArray[4] ;long arduous codes insert here $myArray = [1, 2, 3, 4] ; <======= and obviously this gives you an error....
View ArticleBest way to tackle this issue
Hi all, I am working on automating a web application that is very mouse and keyboard intensive to do even simple task. I have made great progress using the Send and MouseClick x,y type of coding. I...
View ArticleMissing user context menu - user.context.menu
I had configured the AutoIT Editor to have a right click context menu that had several of my favorite commands. I had to re-install everything when my hard disk went south and now I don't see my stuff...
View Articleif statements
I'm not sure how you write multiple arguement with the if statements: If windows exist then sleep for 1second, click at coordinates, then go to next function. Here's what I have so first, but doesn't...
View ArticleEncrypt And Decrypt Ini File
Help Me To Encrypt Ini File And Decrypt To Input.. My Code AutoIt expandcollapse popup#include <ButtonConstants.au3> #include <EditConstants.au3> #include...
View ArticleGet list of file from a webserver
I know how to read a list of files on specific folder on a local/network drive and put it in a array, but how to do the same on a specific folder on a webserver? PS: doesn't want to open any...
View ArticleMouseClick X/Y not accurate?
In this code I have "MouseClick("Left",190,174)" however it persistantly clicks at 190,204. The X & Y values are based off of Window Info. Why would the mouse click be off that much? I do have...
View ArticleStatusBarWait
In AutoHotKey there is a StatusBarWait function that is nice. I cannot find an equivilent function in AutoIt. Am I missing that or does it just not exist?
View ArticleWhat is the best way to show a multiline text in a GUI?
Hello I used GUICtrlCreateEdit function to show my "sometext.txt" file contents in a GUI. But it does not give me a good interface and i have some problems with it. One of problems in...
View ArticleHelp finding a site that supports automatic uploading/downloading of files
Does anyone know of a site that supports automatic uploading/downloading of files with an AutoIT script?
View ArticleControlGetText function returns the hidden text of a control
Hi, I am trying to get the text from the control using the ControlGetText function, but I am facing an issue which returns me the hidden text rather than the current text. Also set the option...
View Article