Hello, How do you know what message the window is coming from? For example, lets say I had a window in another, and both windows had buttons, how do I know if...
Hi everyone With the following logic, I can press on the Next button (which is button 12) and the next GUI will appear. If I then press on the Back button...
... had buttons, how do I know if that window sent it or the top one sent it? The question is still a bit fuzzy... but all I could figure is that you could...
lol, thanks. Is there a list of all functions in user32.dll? I have seen a number of them, but haven't really been able to find what I need out of there. Tyler...
This may lead to a challenged question... I'm beginning work on a routine to find a record as the user types in the name, address, zip code, etc. I was...
My computer recently got LOTS of spyware, adware, and a trojan. Every few minutes I would getan AUTOIT ERROR about programs that I never even put on there!! it...
well, some one wasn't smart enough, and tried to delete a file that wasn't there. Tyler Littlefield. Check out our website: http://tysplace.the-leetest.net ......
I posted nearly this same question on the Forum, there have been 3 responses so far, one stupid, one in awe of the stupid one and one from MHz questioning my...
I think that in in keeping with trying to inhibit keyloggers I could make it work if IsPressed() only had one more key defined, the comma key. Other than what...
Hello, I am trying to use the AutoIt.Error event, but with little luck. It does not show up an error message anymore, an AutoIt error that is, but it activates...
Philip Bennefall
philip_bennefall@...
Oct 2, 2005 10:48 pm
28140
Hi guys I can't figure out why I'm getting Object doesn't support this method top.document.form on line 59 the first time it's mentioned. When I ' it out I get...
I know that with MsgBox you can set it so that it is always on top by adding 262144 to the Flag parameter. Is there any way to set an InputBox so that it is on...
I'm trying to write a script that will install/update some software components. I've noticed on WinNT workstations that a message box MAY come up, prompting...
Tom, Could you please post your script? I would suggest calling the installation program with RunWait(), as opposed to Run(), to ensure that AutoIt is still...
Hi, I am attempting to use AutoItX 3 with a Visual Basic 6.0 program that I will distribute using a windows installer. I am trying to find out if the...
Would it be ridiculous to let the GUI check for the existence of the InP Box, & if it does exist use WinSetOnTop, all as a part of the routine that generated...
Hello list, Below is an exact or close to exact print out of a window that I am getting, Can someone tell me how to fix this error? Thanks, graphic 181 AutoIt...
Tom, Try having one of two possible solutions: Runwait: ; ------------------------------ AdlibEnable( "_Adlib_PopUpExists" ) RunWait ( $YourUpgradeProgram ) ;...
Well, like someone else suggested, it is possible that you canmake the script last longer and then catch the message box that way. Worst-case scenario: Write a...
Not necessarilly, but how would I implement that? I would need a second thread to be checking for the existence of the InputBox. AdLibEnable, maybe? ... ...
Well, I thought a GUI always ran a loop waiting for the next thing to happen. I thought you could just set a flag before the InP Bx for the loop to find. If...
Hi, I'm really stupid and new to this. How do I make something like: MouseClick("left", 441, 396, 1, 0) Sleep(3000) Loop 400 or so times or for a certain...
Simple try this: *For $x = 1 to 400* ** * MouseClick("left", 441, 396, 1, 0) Sleep(3000)* ** *Next $x* It will loop for 400 times and it will wait 3 seconds...
... Do you 100% have to use the shortcut? Or would dialing the phonebook directly be easier? If so, win98 comes with a little application that may be useful....
--On 05 October 2005 12:46 +0100 Paul Seward <paul.seward@...> ... I've just remembered, there's a rasdial.exe as well. Calling that might be useful...
My GUI is designed like this: There is a main window with edit fields, but they are locked/read-only. The user has to click on a button, which brings up an...
$iLoopCounter = 400 While $iLoopCounter > 0 Your while looping code goes here $iLoopCounter = $iLoopCounter - 1 WEnd If you just want it to wait for a...