jurec72 Posted December 27, 2019 Share Posted December 27, 2019 Hello, I am working on Desktop App where inside there is cmd line(terminal) once I enter commands there, it gives information I need and the problem I have to get this information. Because it is not visible or hidden text! I tried a lot but nothing work, maybe smbd. has an idea how to get that text from the blue screen inside the App. expandcollapse popup>>>> Window <<<< Title: Workspace Network Class: SWT_Window0 Position: 648, 176 Size: 662, 610 Style: 0x96CF0000 ExStyle: 0x00100100 Handle: 0x00000000000E0262 >>>> Control <<<< Class: SunAwtCanvas Instance: 1 ClassnameNN: SunAwtCanvas1 Name: Advanced (Class): [CLASS:SunAwtCanvas; INSTANCE:1] ID: Text: Position: 7, 99 Size: 497, 395 ControlClick Coords: 180, 38 Style: 0x56000000 ExStyle: 0x00000000 Handle: 0x00000000000B027A >>>> Mouse <<<< Position: 843, 364 Cursor ID: 0 Color: 0x000080 >>>> StatusBar <<<< >>>> ToolsBar <<<< >>>> Visible Text <<<< Click and Click Profiles Finder Clipboard 0 >>>> Hidden Text <<<< Please wait... Command Line On screenshot, there is no text, but info above is from the window where a lot of text. P.S. I am new to AutoIt and this is my first post, thank you for understanding if smth. not right!=) Link to comment Share on other sites More sharing options...
Nine Posted December 27, 2019 Share Posted December 27, 2019 In the edit menu, is there a possibility of clipboard copy ? Is there a logging file tool ? “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
jurec72 Posted December 27, 2019 Author Share Posted December 27, 2019 There is Select All in Edit menu, CTRL+C working, I tried this way, but could not click on the Edit menu btn and then to select all! This is also an option! This is just App that installed on Desktop and to run it just click on exe file! (Not sure if I answered correctly to "Is there a logging file tool?") Link to comment Share on other sites More sharing options...
Nine Posted December 27, 2019 Share Posted December 27, 2019 Try sending keys first : Local $hWnd = WinActivate ("Place Window title or class here") If Not $hWnd Then Exit MsgBox (0,"","Bad title or class") WinWaitActive ($hWnd) Send ("!e") Sleep (500) Send ("a") Sleep (500) Send ("^c") Sleep (500) MsgBox (0,"",ClipGet ()) jurec72 1 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
jurec72 Posted December 27, 2019 Author Share Posted December 27, 2019 I tried to resolve my issue for two or three days, you did it for 5 min. Thank you so much! Now I can get text and can continue working! Wish you all the best! Link to comment Share on other sites More sharing options...
Nine Posted December 27, 2019 Share Posted December 27, 2019 Happy new year ! jurec72 1 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
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