Jump to content

what happens if window not found


manit
 Share

Recommended Posts

hi ,

I have written a script to simulate keypresses and click on some windows 

The work is repetitive.

Here I activate 'foobar' and click on a place in it then press few down arrow keys . Then some keypresses in 'reboot' window ...

(1)It sometimes happen that am external window pops up taking focus away from action being performed by script . As a result ,say, 'reboot' window does not appear . How should I bring scipt to run from beginning (of while loop) again ?

(2)I used window info tool to find coordinates of place to click . Is it possible that window info tool keeps updating mouse coordinate even when I do not drag its finder ?

(3)I would also like to add functionality to do an action on window 'new IP' , if found , in the infinite while loop .

Please give directions.

Thanks.

#include <AutoItConstants.au3>
HotKeySet("{ESC}", "dummy")
AutoItSetOption("WinTitleMatchMode",2);
Local $hWnd, $x, $y, $pos, $reponse
While 1
$hWnd = WinGetHandle("foobar")
$pos = WinGetPos($hWnd)
$x = 360 ; 
$y = 77  ; 
WinActivate($hWnd)
MouseClick("left", $pos[0] + $x, $pos[1] + $y)
Send("{DOWN}")
WinWaitActive($hWnd)
Send("{DOWN}")
WinWaitActive($hWnd)
Send("{DOWN}")
WinWaitActive($hWnd)
Send("{DOWN}")
WinWaitActive($hWnd)
Send("{DOWN}")
Send("{DOWN}")
WinWaitActive($hWnd)
WinWaitActive($hWnd)
Send("{ENTER}")
$reboot_window = WinWait("Reboot")
WinWaitActive($reboot_window)
Send("{TAB}")
WinWaitActive($reboot_window)
Send("{SPACE}")
WinWaitActive($reboot_window)
Send("{TAB}")
WinWaitActive($reboot_window)
Send("{DOWN}")
Send("{DOWN}")
WinWaitActive($reboot_window)
Send("{TAB}")
WinWaitActive($reboot_window)
Send("{DOWN}")
WinWaitActive($reboot_window)
Send("{TAB}")
WinWaitActive($reboot_window)
Send("{SPACE}")
Sleep(1000)
$response = WinGetHandle("Reboot")
$pos = WinGetPos($response)
$x = 168 ; 530-362
$y = 258  ; 376-118
WinActivate($response)
MouseClick("left", $pos[0] + $x, $pos[1] + $y)
Sleep(50000)
WEnd
Func dummy()
EndFunc   ;==>dummy

Edited by manit
wasn't displayed properly before
Link to comment
Share on other sites

I suggest - if possible - to not use Send but ControlSend. So windows popping up do not influence your script.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...