Using \animategraphics of the animate package, I would like to move from one image to the next by clicking on the next slide button instead of clicking on the image (as in script below).
\documentclass{beamer}
\usepackage{hyperref}
\usepackage[step]{animate}
\mode<presentation>
\title{Title}
\date{\today}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Bio}
\begin{block}{Background}
Development assistance\\
Project management and evaluation
\animategraphics[height=5cm]{1}{image/image}{1}{2}
\end{block}
\end{frame}
\end{document}
Is is possible to automatically to create a new slide for each image?