GoldenMike Posted August 20, 2013 Posted August 20, 2013 I just picked up some SEO software and it looks like it is an embedded browser inside a window. All I want to do is extract the text out for ease of use, and I can't seem to connect or get inside the window. The AutoIt Window Info Tool, shows the Class: ApolloRuntimeContentWindow. I can confirm that the windows exists, but can't get any further than that. The finder tool is also showing the entire inside contents the same and showing no visible or hidden text where there clearly is some. Has anyone else had experience with this before? Any and all suggestions are welcome. Thanks, Mike
dragan Posted August 20, 2013 Posted August 20, 2013 When you used the AutoIt Window Info tool, were you able to get the class of the embed browser control? Was it "Internet Explorer_Server"? Or something like that? If so... you could try this: #include <IE.au3> Local $YourWindowTitle = 'Some Window Title' ;<--- change this Local $oIE = _IEAttach($YourWindowTitle, "embedded", 1) ;<--- change instance if needed Local $readText = _IEBodyReadText($oIE) MsgBox(0, 'body text:', $readText)
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