Suppose I have four images in a horizontal line. I would like to super impose some of the images( suppose Share0 and Share2) in the second row at the fixed position. It should look like moving style. I can do it with animation in powerpoint. How can I do it in beamer?
I have tried to do this using the following code but failed:
\begin{frame}{series of images}
\begin{center}
\begin{overprint}
\only<2>{\includegraphics[scale=0.40]{image1.pdf}}
\hspace{-0.17em}\only<3>{\includegraphics[scale=0.40]{image2.pdf}}
\hspace{-0.34em}\only<4>{\includegraphics[scale=0.40]{image3.pdf}}
\hspace{-0.17em}\only<5>{\includegraphics[scale=0.40]{image4.pdf}}
\only<2-5>{\mbox{\structure{Figure:} something}}
\end{overprint}
\end{center}
\end{frame}

