Suman
Suman

Reputation: 15

How to action on excel popup windows by Autoit

am struggling since 2 days to action popup window of excel, how to write Autoitenter code here script to action on this popup windows

I tried below code but this is not working

WinWaitActive("Microsoft Excel") // enter the title of the pop up
Send("{ENTER}") / press enter

Upvotes: 0

Views: 189

Answers (1)

Girish Bellamkonda
Girish Bellamkonda

Reputation: 501

Use below line to "Match any substring in the title" at the starting of script.

AutoItSetOption ("WinTitleMatchMode", 2)

Upvotes: 1

Related Questions