I have tried a great suggestion from a previous question I asked where I experienced a similar problem using \vphantom unfortunately it didn't work in the following example:
I have a frame with two columns:
left column will go from itemize text -> image 1 -> image 2
right column will go fromimage 3 -> image 3 -> image 4`
When I go from slide 1 to slide 2 the image 3 which should stay the same moves. Any tips on how to prevent this behaviour?
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{braket}
\usepackage{geometry}
\usepackage{empheq}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{animate}
%\usepackage[backend=biber,url=false,doi=false,isbn=false,firstinits=true]{biblatex}
\begin{document}
\begin{frame}{Stuff}{More stuff}
\begin{columns}[T]
\begin{column}[T]{0.5\textwidth}
\onslide<1>{
\begin{itemize}
\item text 1
\item text 2
\end{itemize} }
\includegraphics<2>[width=\textwidth]{measurement_1.png}
\includegraphics<3>[width=\textwidth]{measurement_2.png}
\end{column}
\begin{column}[T]{0.5\textwidth}
\includegraphics<1-2>[width=\textwidth]{meas3.png}
\includegraphics<3>[width=\textwidth]{meas4.png}
\end{column}
\end{columns}
\end{frame}
\end{document}


\parboxfrom your answer here: http://tex.stackexchange.com/a/83691/32374 to center-align everything :-) – darthbith Mar 04 '15 at 21:23\only: Yes. – Gonzalo Medina Mar 04 '15 at 21:28overlayareaone can get different vertical alignments in the frame. I edited my answer showing this with an example. – Gonzalo Medina Mar 04 '15 at 21:29overlayarea, I don't think anyways. Nonetheless, one can certainly fine-tune the alignment with the height argument :-) – darthbith Mar 04 '15 at 21:35overlayareais aminipageinside a\vbox. The difference then is the same as between a\parboxand aminipage, for example, the behaviour with regard to footnotes. Other than this, they are essentially the same. – Gonzalo Medina Mar 04 '15 at 21:36overlayareathere's no automatic vertical alignment to the center; the user has to fine-tune the parameters. – Gonzalo Medina Mar 04 '15 at 21:39