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.
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()
.
精彩评论