I'm having troubles with a presentation. I want to create something like this
\documentclass{beamer}
\usepackage{ulem} % To strikeout text
\begin{document}
\begin{frame}
\begin{itemize}
\onslide<1->{
\item item 1
\item item 2
\item item 3}
\begin{overprint}
\onslide*<2>{\item item 4}
\onslide<3>{\item \sout{item 4} $\to$ Actually we'll going to put here another item: item 5}
\end{overprint}
\end{itemize}
\end{frame}
\end{document}
but the frames move up and down in a strange way. Can you please help me to make the frames stay fixed?