antmar904 Posted February 11, 2016 Posted February 11, 2016 (edited) Hi, I am trying to search for a user in my Global Address book in Lotus Notes. I can automate that process however I'm trying to pause the script until the search is done but I am unsure on how to get that information. Lotus Notes displays text on the lower left hand corner of the screen "Searching for "What ever user" but I am unsure on how to grab that data and pause the script until it goes away. I'm not sure WinWait would work for this. Any help is greatly appreciated. Edited February 11, 2016 by antmar904
water Posted February 11, 2016 Posted February 11, 2016 Lotus notes provides a programming API that can be called from AutoIt. Please search the forum for examples. My UDFs and Tutorials: Reveal hidden contents UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.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 (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
Radiance Posted February 11, 2016 Posted February 11, 2016 Using AutoIt Window Info I can't seem to grab the text Notes displays to me. Once it's done loading the "lightning bolt" symbol is gone so you MIGHT be able to do a PixelSearch() on that area.
antmar904 Posted February 11, 2016 Author Posted February 11, 2016 Thanks @water and @Radiance Ill see what I can find.
antmar904 Posted February 12, 2016 Author Posted February 12, 2016 (edited) Hi, So I found a UDF called "ImageSeach" but I cant get it to work. #include <ImageSearch.au3> HotKeySet("p", "checkForImage") global $y = 0, $x = 0 Func checkForImage() Local $search = _ImageSearch('LNSearch.bmp', 0, $y, $x, 0) If $search = 1 Then MsgBox(0, "Test", "Found you") EndIf EndFunc Here is the error I am getting: >"C:\Program Files\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "D:\Stuff\Scripts\SeachForImage.au3" >Exit code: 3221225477 Time: 2.896 Edited February 12, 2016 by antmar904
antmar904 Posted February 14, 2016 Author Posted February 14, 2016 Would imagesearch be able to help me determine when lotus notes is done searching?
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now