I am trying to position a figure on a page using textpos and then have a block appear over it in the next slide. I am inspired by the Gonzalo Medina's code given here. Here is what my code looks like, but the figure that is positioned on the page using textpos covers over the block as seen below -- block should cover that portion of the figure. Any suggestions?
\documentclass{beamer}
\usetheme{Madrid}
\usepackage[absolute,overlay]{textpos}
\begin{document}
\begin{frame}{III. Override pages}
\begin{enumerate}
\item Bookmark manager
\item History
\item New tab
\end{enumerate}
\begin{textblock*}{20mm}(50mm,30mm)%
\rule{2cm}{4cm}
\end{textblock*}
\only<2->{
\centering
\begin{block}{Block Title}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\end{block}
}
\end{frame}
\end{document}

