I was reading the answer to this question Mixing overprint with blocks of enumerations
[I recopy the code so you dont' have to follow the link]
\documentclass{beamer}
\usetheme{Warsaw}
\begin{document}
\begin{frame}{Test}
\begin{center}
text before
\pause
\begin{overlayarea}{\textwidth}{3.3cm}
\only<2-3>{%
\begin{block}{Some title here}
\begin{enumerate}[<+->]
\item One
\item Two
\end{enumerate}
\end{block}}
\only<4-7>{%
\begin{block}{Some title here}
\begin{enumerate}[<+(2)->]
\item CHicken
\item Duck
\item Rooster
\end{enumerate}
\end{block}}
\end{overlayarea}
text after
\end{center}
\end{frame}
\end{document}
and I noticed the use of a number between parentheses in the default incremented overlay specification in the second enumerate environment. (see the presence of [<+(2)->]) Only then will the items of the second numbered list in the overlayarea environment be uncovered incrementally.
Why is that needed ? It seems to imply that beamerpauses is reset between the enumerate environments ? Or is it reset between the only commands in the overlay environment?
Isnt that a nasty behaviour? Because it is as if you are supposed to keep track yourself of beamerpauses. The usefulness of [<+->] is lost then, isn't it ?
[<+->]! – Mathias Vanwolleghem Apr 13 '13 at 14:12