link to particular page of pdf file?
Posted: Tue Jan 27, 2015 4:57 am
I want to link to a particular page of a pdf file. This link: http://blogs.adobe.com/tcs/2011/01/tcs- ... -more.html says that all I need to do is append #page=3 (for example) to accomplish this. However, it does not work. I can launch the document with this code:
but nothing happens when I use this code:
How can I do it?
Code: Select all
on mouseUp
launch document "/Users/erv/Documents/shannon1948.pdf"
end mouseUp
Code: Select all
on mouseUp
launch document "/Users/erv/Documents/shannon1948.pdf#page=3"
end mouseUp