stolie Posted June 27, 2005 Posted June 27, 2005 Hi I would like to be able to pause a scipt until the text "Done" appears in the ClassName as seen below, HOWEVER the word DONE does not actaully appear in the "Control Under Mouse" section. Can this be acheived? Can i have some hints please? >>>>>>>>>> Control Under Mouse <<<<<<<<<<< Size: X: 0 Y: 440 W: 612 H: 24 Control ID: ClassNameNN: SSPanelWndClass2 Text: Alternatevly, there is a progress bar, is there a way for the script to pause until the progress bar is finished? Thanks in advance
jpm Posted June 27, 2005 Posted June 27, 2005 HiI would like to be able to pause a scipt until the text "Done" appears in the ClassName as seen below, HOWEVER the word DONE does not actaully appear in the "Control Under Mouse" section. Can this be acheived? Can i have some hints please?>>>>>>>>>> Control Under Mouse <<<<<<<<<<<Size: X: 0 Y: 440 W: 612 H: 24Control ID: ClassNameNN: SSPanelWndClass2Text: Alternatevly, there is a progress bar, is there a way for the script to pause until the progress bar is finished?Thanks in advance<{POST_SNAPBACK}>if progress bar has a title then is easy to writeWinWaitActive("progressbar") WinWaitClose("progressbar")
stolie Posted June 27, 2005 Author Posted June 27, 2005 if progress bar has a title then is easy to writeWinWaitActive("progressbar") WinWaitClose("progressbar")<{POST_SNAPBACK}>Thanks for your help. Pardon my ignorance, but, what do i exactly do. The text "Progress Bar" Always appear as follows; (internet explorer within web scraper)==============================================>>>>>>>>>>>> Window Details <<<<<<<<<<<<<Title: Datapage Editor - Web Scraper Plus+Class: ThunderRT6FormDCSize: X: -4 Y: -4 W: 808 H: 574>>>>>>>>>>> Mouse Details <<<<<<<<<<<Screen: X: 649 Y: 551Cursor ID: 2>>>>>>>>>>> Pixel Color Under Mouse <<<<<<<<<<<RGB: Hex: 0xB2B4BF Dec: 11711679>>>>>>>>>>> Control Under Mouse <<<<<<<<<<<Size: X: 618 Y: 443 W: 107 H: 16Control ID: ClassNameNN: ProgressBar20WndClass1Text: Progress Bar>>>>>>>>>>> Status Bar Text <<<<<<<<<<<>>>>>>>>>>> Visible Window Text <<<<<<<<<<<Progress Bar21 Jun 2005 Command2HiLite >Enum Frames>>>>>>>>>>> Hidden Window Text <<<<<<<<<<<21 Jun 2005 ==============================================
jpm Posted June 27, 2005 Posted June 27, 2005 If you do not have a specific window for displaying a progress bar, perhaps the following works$title="Datapage Editor - Web Scraper Plus+ " $text="Progress Bar" WinWaitActive($title, $text) WinWaitClose($title, $text)
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