I want that multiple things appear simultaneously on a same slide, but I don't want to calculate the number of this slide. I try to save it for futher reuse.
I want to do that several times.
For example, tikzpicture stuff simultaneously with a list.
Hre is my non working try.
\documentclass{beamer}
\newcommand{\Slide}[1]{%
\expandafter\newcommand\csname Sl#1\endcsname{\thebeamerpauses}%
}
\begin{document}
\begin{frame}
\begin{enumerate}[<+->]
\item
\item \Slide{A}
\item
\end{enumerate}
\onslide<\SlA->{Appears on slide 2;}
\end{frame}
\end{document}