As I (semi) understand it, all on-screen text in any Windows application is drawn by the same drawtext functionality. It is possible to hook onto this method and view (or even change) every bit of text being drawn to the display.

How does OS X put text on the screen? Is there a similar way to hook into this API and view all text being drawn, no matter what application or process it is associated with?

EDIT - maybe something to do with Core Text?

link|improve this question

72% accept rate
Do you want to hook up to Windows or Mac OS X .. sounds like you're asking about both? Are you writing a password sniffer? :P – Seth Jan 12 '10 at 23:31
Lol absolutely not - I'm trying to read text from a table view in a non-cocoa Mac application. The table is updated with a new text row every second or so, which I want to read in. There is no way to access it using universal assistance or any other query - my only success so far is automating a 'command-c' copy and reading the pasteboard. I figure if I can view every bit of text being written to the screen, I might be able to identify those that end up in the application in question, and read from there instead. – Ben Packard Jan 13 '10 at 8:18
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.