Please someone help. I spent 2 days on this problem: I am trying to show the movie at the same time as an item in an item list. How can I show the movie with the first item?
If I had an image instead of a movie I would write it like this:
\includegraphics<1>[width=\textwidth]{img1.jpg}
But for a movie it is not working. It shows the movie after all the items in the list are shown.
\includemovie<1>[poster]{3.25cm}{3.25cm}{movie1.jpg}
This doesn't work neither:
\visible<2->{\includemovie[poster]{3.25cm}{3.25cm}{movie1.jpg}}
Full working code snipet (if you have the images in your working directory):
\begin{frame}
\frametitle{Overlay Specification}
\begin{columns}
\begin{column}{5cm}
\begin{itemize}
\item<1-> Figure 1
\item<2-> Figure 2
\item<3-> Figure 3
\end{itemize}
\vspace{3cm}
\end{column}
\begin{column}{5cm}
\includegraphics<1>[width=\textwidth]{img1.jpg}
\includegraphics<2>[width=\textwidth]{img2.jpg}
\includegraphics<3>[width=\textwidth]{img3.jpg}
\end{column}
\end{columns}
\end{frame}
But now I replace the first figure with a movie and it is not working anymore?
\begin{frame}
\frametitle{Overlay Specification}
\begin{columns}
\begin{column}{5cm}
\begin{itemize}
\item<1-> Figure 1
\item<2-> Figure 2
\item<3-> Figure 3
\end{itemize}
\vspace{3cm}
\end{column}
\begin{column}{5cm}
\leavevmode
\visible<2->{\includemovie[poster]{3.25cm}{3.25cm}{images/predoc_oral/bullet_lg.mpg}}
\includegraphics<2>[width=\textwidth]{img2.jpg}
\includegraphics<3>[width=\textwidth]{img3.jpg}
\end{column}
\end{columns}
\end{frame}
(I posted the same question here but the webpage couldn't print the chevrons character, making my question not understandable.)

:)– Paulo Cereda Jan 2 '12 at 9:50\includegraphics<1>{...}by\visible<2->{\includemovie...}. Shouldn't it be rather replaced by\visible<1>{\includemovie...}– AlexG Jan 2 '12 at 10:41\visible<1>{\includemovie...}But event this doesn't work ... Any ideas? Oh... and this should be included in order for the file to work:\documentclass[10pt]{beamer}\usepackage{graphicx}\usepackage{movie15}\begin{document}... MORE CODE (from above...)\end{document}BTW I can't figure out how to put linebreaks in this comment... sorry about that... – mhatthei Jan 3 '12 at 6:30figureenvironments in a presentation. This creates floating objects whose final placement is hard to predict. – AlexG Jan 3 '12 at 7:44