Re: [O] Open PDF under Windows on specific page using PDF-XChange Viewer

2013-03-20 Thread Otto Pichlhöfer
AW t-online.de> writes: > For the record: > > #+begin_src emacs-lisp > (add-to-list 'org-file-apps > '("\\.pdf::\\([0-9]+\\)\\'" . "\"C:/Program Files/Tracker Software/PDF > Viewer/PDFXCview.exe\" /A page=%1 %s")) > #+end_src > > (add-to-list 'org-file-apps '("\\.\\(doc\\|docx\\|pdf\\|dct\

Re: [O] Open PDF under Windows on specific page using PDF-XChange Viewer

2013-03-19 Thread AW
Am Dienstag, 19. März 2013, 11:32:26 schrieb Thomas Holst: > Hello Alexander, > > · AW wrote: > > [... snip ...] > > #+begin_source lisp > > (delete '("\\.pdf\\'" . default) org-file-apps) > > > > (add-to-list 'org-file-apps '("\\.pdf::\\([0-9]+\\)\\'" > > . "PDFXCview /A 'page'=%1 \"%s\

Re: [O] Open PDF under Windows on specific page using PDF-XChange Viewer

2013-03-19 Thread Thomas Holst
Hello Alexander, · AW wrote: > [... snip ...] > #+begin_source lisp > (delete '("\\.pdf\\'" . default) org-file-apps) > (add-to-list 'org-file-apps '("\\.pdf::\\([0-9]+\\)\\'" > . "PDFXCview /A 'page'=%1 \"%s\" ")) > #+end_source for me the following works under Win7: #+begin_src emacs

[O] Open PDF under Windows on specific page using PDF-XChange Viewer

2013-03-19 Thread AW
Dear all, under Windows 7, Emacs 24.2 and orgmode 7.9.4 I would like to have a hyperlink to an external pdf. The pdf should be opened by a software called PDVXchange viewer /at a certain page/. The command on the command line in windows is: PDFXCview /A page=10 filename.pdf This works on the co