I'd like that the presentation goes to a specific page after the last page, as it would be the natural next page.
I know : \hypersetup{pdfstartpage=1}
But it works only to go back to the first page.
My point is to loop on a set of selected slides to make a looping animation at the end of the presentation. I know how to make the set of selected slides, how to change the \transduration, the last point is how to initiate the loop.
\documentclass{beamer}
\hypersetup{pdfstartpage=1,pdfpagemode=FullScreen,colorlinks=true}
\pdfcatalog{
/AA <<
/WC <<
/S/JavaScript/JS (app.fs.loop=false;)
>>
>>
}
\pdfpageattr{
/AA <<
/O <<
/S/JavaScript/JS (app.fs.loop=true;)
>>
>>
}
\begin{document}
\begin{frame}[label=bob]
\begin{enumerate}[<+->]
\item a
\item b
\item c
\end{enumerate}
\end{frame}
% save current value of \pdfpageattr
\edef\pdfpageattrOrig{\the\pdfpageattr}
% append page duration to the page attributes (do it manually)
\begingroup
\edef\x{\endgroup
\pdfpageattr{\the\pdfpageattr /Dur 0.2}%
}%
\x
\againframe<2->{bob}
\end{document}
