I'd like to repeat a certain state of a frame in beamer.
Say like this:
\frame[label=A]{
\begin{itemize}
\item<1> foo
\item<2> bar
\end{itemize}
}
\frame{
\begin{itemize}
\item<1> fooagain
\item<3> baragain
\end{itemize}
\only<2>\againframe<1>{A}
\only<4>\againframe<2>{A}
}
However, this would not work as one can only call \againframe outside of other frames.
I would be fine with this constraint however, I don't want a mini frame for each frame I call again (with \againframe).
Do you know a solution for that?

\only<2>\againframe<1>{A}to display. I think the answer you're looking for is based off of putting the entire contents in the first frame, then cleverly indexing the overlays, but without a clear concept of what you want as the final result, I can't provide that answer. – gotgenes Nov 17 '10 at 20:38