| View previous topic :: View next topic |
| Author |
Message |
Loriss
Joined: 26 Jul 2004 Posts: 63
|
Posted: Sat Dec 11, 2004 10:23 pm Post subject: problem whit BlockInput and StatusBarWait |
|
|
Whit the 1024 release I Have notice that:
WinXP: "StatusBarWait" do not work correctly .
Win98: whit "BlockInput on", "StatusBarWait" and "WinWaitActive" do not work.
Instead, Whitout "BlockInput on" , they work fine. _________________ Loriss |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Sun Dec 12, 2004 3:21 am Post subject: Re: problem whit BlockInput and StatusBarWait |
|
|
| Loriss wrote: | Whit the 1024 release I Have notice that:
WinXP: "StatusBarWait" do not work correctly | The only change made was to increase the internal SendMessage timeout from 200 to 2000 milliseconds. StatusBarWait is currently working okay on my system. If anyone else uses StatusBarWait on Windows XP, is it working okay?
| Quote: | | Win98: whit "BlockInput on", "StatusBarWait" and "WinWaitActive" do not work. | I just tried StatusBarWait on Win98 SE and it seems okay with or without BlockInput on. With the exception of the timeout increase mentioned above, none of these three commands has been altered in recent versions.
If you can't discover the problem, perhaps you could post the specific sections of your script that is not working. |
|
| Back to top |
|
 |
Loriss
Joined: 26 Jul 2004 Posts: 63
|
Posted: Sun Dec 12, 2004 12:01 pm Post subject: |
|
|
This happen on my pc, working whit a script that open the prg, (The Downloader) . an prg for Metastock.
And winxp is SP2 .
On the status bar , after 4-5 secon is visble "For Help, press F1"
(sample)
BlockInput, on
SetTitleMatchMode,2
Run,Dlwin.exe,C:\Programmi\The DownLoader
StatusBarWait,For _________________ Loriss |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Sun Dec 12, 2004 3:03 pm Post subject: |
|
|
| Are you sure that StatusBarWait worked for Metastock with a prior version of AutoHotkey? Note that only status bars of class msctls_statusbar32 are supported. |
|
| Back to top |
|
 |
Loriss
Joined: 26 Jul 2004 Posts: 63
|
Posted: Sun Dec 12, 2004 11:49 pm Post subject: |
|
|
No , I have not Tried before.
In WinXP this is that I see in the Window spy:
>>>>>>>>>>( Window Title & Class )<<<<<<<<<<<
The DownLoader
ahk_class CDLWinApp
>>>>( TitleMatchMode=slow Visible Text )<<<<
For Help, press F1
Anyway, in Win98 Second Edition , StatusBarWait and WinWaitActive , work fine , if there is not "BlockInput on" .
Whit "BlockInput on", they do not Work . _________________ Loriss |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Mon Dec 13, 2004 3:17 pm Post subject: |
|
|
| Quote: | | In WinXP this is that I see in the Window spy: | With Window Spy running, hover the mouse over the window's status bar. If the control's ClassNN value isn't something that starts with msctls_statusbar32, it's not supported.
| Quote: | Anyway, in Win98 Second Edition , StatusBarWait and WinWaitActive , work fine , if there is not "BlockInput on".
Whit "BlockInput on", they do not Work | These currently work on my Win98 SE test system. Until I can reproduce the problem, there's no way to fix it. Even if I could reproduce the problem, there might not be a way to fix it because BlockInput is a "black box" call to the API; that is, AutoHotkey has no control over its internal behavior.
Thanks. |
|
| Back to top |
|
 |
|