The viewer does not regularly check changes on the disk, so the short answer is: no (unfortunately)
However, you can use your browser to view the pdf file inside your own html web page, which regularly updates the page using javascript.
so (including buttons for switching between manual and automatic lighting):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=windows-1252"> <title>my pdf</title> <script type="text/javascript"> var timer = null; function refresh(){ var d = document.getElementById("pdf"); </script> </head> <body> <button onclick="manualRefresh()">manual refresh</button> <button onclick="autoRefresh()">auto refresh</button> <div id="pdf"></div> </body> <script type="text/javascript">refresh();</script> </html>
Just save this code for example. 'pdfrefresher.html' in the same folder as your pdf. For the src of the embed object, you use only the file name, for example. 'myPdfFile.pdf' (not a disk or directory). In the code you can adjust the width and height of the embedded object and the timeout (in milliseconds).
Remi
source share