What I’m trying to do
I am running the latest version of Obsidian on Windows10. And I have a 100 page PDF setup as an Obsidian attachment file. I know it is possible to setup a hyperlink within Obsidian that will automatically open up a PDF file to page 1 within an external app such as Acrobat Reader. But is it possible to create an Obsidian hyperlink that opens the same PDF file to a specific page number? For example page 45 and not the default page 1. Is there any extension code that can be added to the Obsidian hyperlink that will target a specific page inside a PDF? Any advice welcome.
Things I have tried
I Googled “Obsidian open PDF to specific page number” and found the link below:
https://helpx.adobe.com/acrobat/kb/link-html-pdf-page-acrobat.html
But I cannot get the HTTP code below modified to work correctly on a PDF that is stored locally on my C:/ drive:
<A HREF=“http://www.example.com/myfile.pdf#page=45” ‘>’
Below is my modification attempt that does not work:
<A HREF=“C:\Root\obsidian\MyNotes\myfile.pdf#page=45” ‘>’
Any advice in fixing my modified Obsidian link to a PDF target page will be greatly welcomed.