Search the web
Sign In
New User? Sign Up
AutoItList · AutoIt Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 28130 - 28159 of 31663   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
28130
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...
tyler
compgeekboy
Offline Send Email
Oct 1, 2005
7:39 am
28131
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...
Steve Shepherd
wheelchair1956
Offline Send Email
Oct 1, 2005
3:03 pm
28132
... 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...
larrydalooza
Offline
Oct 1, 2005
3:04 pm
28133
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...
tyler
compgeekboy
Offline Send Email
Oct 1, 2005
3:13 pm
28134
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...
Gene
gtsears
Offline Send Email
Oct 1, 2005
5:47 pm
28135
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...
Matt Roth
xanajet
Offline Send Email
Oct 1, 2005
9:11 pm
28136
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 ......
tyler
compgeekboy
Offline Send Email
Oct 1, 2005
10:09 pm
28137
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...
Gene
gtsears
Offline Send Email
Oct 2, 2005
5:06 pm
28138
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...
Gene
gtsears
Offline Send Email
Oct 2, 2005
8:02 pm
28139
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@...
Send Email
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...
Sensei J. Richard Kir...
Tutor2000
Offline Send Email
Oct 3, 2005
1:58 am
28141
That function does exist in ver3 (at my request) but the only way I think you have to do it in ver 2 is to run a separate script Rick ... ...
Sensei J. Richard Kir...
Tutor2000
Offline Send Email
Oct 3, 2005
2:01 am
28142
Figured it out - I'm a dweeb Rick ... "C:\CalendarByKirkham\modules\rkcontrol.ini","Now","Title",top.document.form.title.value ... ...
Sensei J. Richard Kir...
Tutor2000
Offline Send Email
Oct 3, 2005
8:34 am
28143
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...
Jeremy Mlazovsky
mlazovjp
Online Now Send Email
Oct 3, 2005
12:45 pm
28144
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...
Thomas Birkenbach
tbirkenbach
Offline Send Email
Oct 3, 2005
9:16 pm
28145
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...
Terwelp, Jeff
kotafootball
Offline Send Email
Oct 3, 2005
9:37 pm
28146
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...
francoistrouffon
francoistrou...
Offline
Oct 3, 2005
10:57 pm
28147
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...
Gene
gtsears
Offline Send Email
Oct 3, 2005
11:27 pm
28148
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...
tyler
compgeekboy
Offline Send Email
Oct 4, 2005
3:37 am
28149
Tom, Try having one of two possible solutions: Runwait: ; ------------------------------ AdlibEnable( "_Adlib_PopUpExists" ) RunWait ( $YourUpgradeProgram ) ;...
Van Renier
van_renier
Offline Send Email
Oct 4, 2005
5:34 am
28150
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...
Jeremy Mlazovsky
mlazovjp
Online Now Send Email
Oct 4, 2005
1:30 pm
28151
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? ... ...
Jeremy Mlazovsky
mlazovjp
Online Now Send Email
Oct 4, 2005
3:51 pm
28152
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...
Gene
gtsears
Offline Send Email
Oct 4, 2005
11:44 pm
28153
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...
mydred101
Offline Send Email
Oct 5, 2005
6:33 am
28154
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...
SLee
shibleemehdi
Offline Send Email
Oct 5, 2005
7:01 am
28155
Hi, I've got a shortcut (mypath\wanadoo.lnk) for remote access connection (dialup) which works fine when I doubleclick it. I've tried : ...
rené
renemgi
Offline Send Email
Oct 5, 2005
10:38 am
28156
... 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....
Paul Seward
sewardpm
Offline Send Email
Oct 5, 2005
11:45 am
28157
--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...
Paul Seward
sewardpm
Offline Send Email
Oct 5, 2005
11:50 am
28158
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...
Jeremy Mlazovsky
mlazovjp
Online Now Send Email
Oct 5, 2005
1:03 pm
28159
$iLoopCounter = 400 While $iLoopCounter > 0 Your while looping code goes here $iLoopCounter = $iLoopCounter - 1 WEnd If you just want it to wait for a...
Gene
gtsears
Offline Send Email
Oct 5, 2005
1:41 pm
Messages 28130 - 28159 of 31663   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help