Can you give me a little more information on where to find the JavaScript command and its usage to get MenuItem info?
Ok, I have a few applications written in MSAccess in which we get data in pdf format. In order to parse the data and create records out of it for import into the database, I have written a procedure that uses MenuItemExecute with "CopyFileToClipboard", paste the clipboard contents into Word, and parse the data in Word to create a comma-delimited file fit for importing into the database. This has been working for years without a glitch until recently, I don't know what changed, but on the computer with v9, it suddenly started to paste a picture format instead of a text format. In other words, whereas Word used to see a text format from invoking CopyFileToClipboard, it no longer does and we are getting a picture instead. So I changed the approach and instead of using CopyFileToClipboard, I am now invoking SelectAll and Copy. Well, the problem with this is that whenever there are more than 1 pages in the Pdf document, we only get the first page. Playing around with the user interface of acrobat, I realize that if I check Continuous (or in v9 Single Page Continuous) on the View menu, then the entire document gets selected with SelectAll. I have tried MenuItemExecute ("Continuous") to no avail. Hence my question.
The computers in question are Windows 7 (Acrobat v9), and 8 (v4). Somehow, believe it or not, it still works on my Win8 box.
Thanks