Hello all. I'm trying to create a script that will backup some of my files to a network drive. (See Script Below). The problem I'm having is that there are...
I am having a problem with this script. Opt("WinTitleMatchMode", 2) If WinExists("Microsoft Outlook") then WinActivate("Microsoft Outlook") Send("{CAPSLOCK...
Here is how I do it at work @ECHO OFF REM -------------WIN 2000 VERSION IF EXIST H:\NUL GOTO NETWORKED ECHO YOU ARE NOT CONNECTED TO THE NETWORK. ECHO PLEASE...
... Sorry, but not really useful for AutoIt. 1) It cost money; AutoIt is free. 2) It only seems to work on XP. AutoIt is supporting everything from Win95 to...
Here's mine - uses array to hold and manipulate input. Seems to work... ; Luhn Algorithm (Mod 10) Checker Dim $CCInput Dim $CCWork Dim $InputLen Dim $counter ...
I used a variation of autoit forum member Larry's code with the "controlclick" to click the OK buttons instead of the mouseclick on OK and better window title...
I believe that the code below is as concise as you'll get. $iNumToCheck = InputBox("Luhn", "Enter a number to check with the Luhn algorithm.") If IsLuhn(...
... what ... two things... make sure a window is active before sending global keystrokes or mouse clicks ... and an application acts how the programmer...
I need help again.... In my ver 2 script I did this routine: IniRead, user, c:\\user.ini, settings, username IniRead, dirno, c:\\user.ini, settings, dirnumber ...
I have a local user that is in the Administrators group that I would like to use with RunAsSet and keep getting an error that the userid or password is...
Silly me. Of course there's a more concise way. We don't need the intermediate $sResult at all; we can accumulate the $iResult in the first loop and do away...
If I use TrayIconHide to hide the icon associated with several AutoIt scripts, how can I use the Task Manager (or Process Explorer from www.sysinternals.com)...
Is there a way to pass arguments to the script. I have made a script to task defrag in win2k and i currently use a .ini to set the drive letter to defrag: ini:...
I want AutoIT to initiate a file version of an install is newer than one that is one a user's system. Otherwise, AutoIT will exit. How do I compare file...
Use this as an example for what you want. I have been an avid V2 user and have only began V3 scripting so I'm sure there is a better way to do this than the...
If you are referring to the autoit scripts themselves, and no tht windows they are interacting with then... Just use "compile" them. You will then see them...
Michael.Curley
Michael.Curley@...
Nov 5, 2004 10:25 pm
26015
When I try and run a compiled script from a network drive I always get an error stating that the path to the program I am running can not be found. This is...
I haven't had a chance to play with this myself aside from working around it using UNC paths (\\server\share\rest\of\path...) Sorry that's not much help but...
Hi I've been getting the forum news by RSS feeds without success. It replied: Warning: main(/home/jbennett/hiddensoft.com/forum/conf_global.php): failed to...
If you run the code below, the Splash window get larger each time the code loops. Any ideas why? ;----> Begin Code (watch wrap) <---- $ScriptTitleBar =...