Search the Community
Showing results for tags 'controlgettext'.
-
Hello all! I have had some issues reading text from different types of windows, occasionally, specifically with controlgettext. **Before I begin, I know there are better ways to do what I attempt in the example below. That's not the point of this post. The point is my issues with controlgettext. I am about to cite an example with an application you may be familiar with called SpeedFan (v4.52). My problem is not specific to speedfan, it is simply the most recent and easily reproducible example I can think of. So, the goal of the script below is to get a string of text containi
-
Dear Team, I am working on windows based application in which i have to read the error msg which is coming on the bottom of the the windows application screen.its a kind of status bar msg but not status bar because when i find it using AutoIT finder the complete panel of the screen is getting selected. PFA and request you to give your inputs on it. OS: Windows XP Java: 1.7 AutoIT: 3.1.3 I tried jubula and sikuli and java OCR also but unable to get text of that panel.
- 3 replies
-
- status bar read
- status bar get text
- (and 3 more)
-
Hello again all! Everyone has been a great help with my work so far, but I have come across something that hopefully has a simple solution. I have a window that the Info tool can grab all control info from and easily identify the text of said controls. The window in question is below. The text I am trying to grab are the acct, history and chart numbers. The output of the info tool is as follow: >>>> Window <<<< Title: Admission/Registration Confirmation Screen Class: LSPANEL Position: 587, 307 Size: 764, 461 Style: 0x94C40000 ExStyle: 0x00000100 Handle: 0x00000
-
i try get text from Quinnect application: see details here: http://www.remoteutilities.com/support/kb/50/ and the download is here: http://www.remoteutilities.com/download/QAgent.exe here is my code: WinActivate ('Quinnect',"") WinWaitActive ('Quinnect',"") $hHandle = WinGetHandle('Quinnect') $var = ControlGetText($hHandle, '', '[CLASS:TPanel; INSTANCE:5]') ConsoleWrite($var & @CRLF) but i get in Console "pnState". i want get the "Ready for connection" text. thanks for any your help