Reputation: 10509
My app needs to know what is the document currently opened in adobe reader, and what is the current page in view. Is it possible to find that out?
My app is .net application, an runs with admin privileges.
Upvotes: 0
Views: 631
Reputation: 70369
This is possible using Adobe IAC which on Windows is basically COM.
From what I gather you need to call GetActiveDoc ()
on the Reader instance and then call GetAVPageView()
on the result and then call GetPageNum()
.
Upvotes: 1