Hi,
I want to use a PDF file as the help file of another program.
I have found somewhere an incomplete description of the command line parameters of Acrobat Reader.
It described how to open a file and jump to its given page.
I have written the following batch file based on that.
rem Open pdf (prm1) with Acrobat reader at given page (prm2)
"%adobe_rdr%\AcroRd32.exe" /N "zoom=73&page=%2=OpenActions" %1
The following batch file opens the search dialog:
rem Open pdf (prm1) with Acrobat reader
rem and search for something (prm2)
"%adobe_rdr%\AcroRd32.exe" /N "zoom=73&navpanes=1=OpenActions&search=%2" %1
I need the simple find field instead of the complicated search window.
Regards
Ferenc