Reproduzir automaticamente um elemento gráfico animado que é um nó de uma imagem tikz dentro de um item

Reproduzir automaticamente um elemento gráfico animado que é um nó de uma imagem tikz dentro de um item

Como posso reproduzir automaticamente o gráfico animado quando o item está visível? Este é o meu código (o gráfico animado está no segundo item. Agora os gráficos começam quando eu clico nele

\begin{frame}
\frametitle{Title}
    \begin{enumerate}
        \item<1-> item1
        \item<2-> item with the animated graphic
        \begin{tikzpicture}
        \node<2>[inner sep=0pt] (video1) at (-1.5,.1) {\animategraphics[loop,width=.4\textwidth,autoplay]{8}{graphics/frames/breaststroke/breaststroke-}{0}{29}}; 
        \end{tikzpicture}
        \item<3-> item3 
    \end{enumerate}
\end{frame}

Responder1

Bem, isso funciona para mim, não é necessário nenhum clique adicional:

\documentclass{beamer}
\usepackage{animate}
\usepackage{tikz}
\usepackage{graphics}

\begin{document}
\begin{frame}
\frametitle{Title}
    \begin{enumerate}
        \item<1-> item1
        \item<2-> item with the animated graphic
        \begin{tikzpicture}
        \node<2>[inner sep=0pt] (video1) at (-1.5,.1) {\animategraphics[loop,width=.4\textwidth,autoplay]{8}{example-image-a4-numbered}{}{}};
        \end{tikzpicture}
        \item<3-> item3 
    \end{enumerate}
\end{frame}
\end{document}

(Sempre forneça um exemplo compilável, conforme indicado no comentário à sua pergunta.)

informação relacionada