C'est possible en utilisant la fonctionnalité "[*Sub-Page Navigation*](http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/pdf/pdfs/PDF32000_2008.pdf#page=388)". Pourtant, cette methode demande [*Sub-Page Navigation*](http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/pdf/pdfs/PDF32000_2008.pdf#page=388), qui nécessite d'utiliser le mode Plein Ecran (Ctrl+L) d'AdobeReader.
« plein écran » d'`Adobe Reader` ; celui-ci est accessible par la combinaison de touches `Ctrl+L`.
Dans l'exemple suivant, quattre quatre animations sont inserées insérées dans la 2ème deuxième diapo. En tapant la touche "page suivante", « page suivante », on en lance une après l'autre:
passe de l'une à l'autre :
    \documentclass{beamer}
    
    \usepackage{animate}
    
    \begin{document}
    
    \begin{frame}
      Il faut mettre le lecteur en mode \Acrobatmenu{FullScreen}{\color{blue}Plein Ecran}!
    \end{frame}
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    % definition des pas de présentation 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    \pdfpageattr{
      /PresSteps <<
        /NA<</S/Named/N/NOP>> %no-op on page open
        /Next<<
        /NA<</S/JavaScript/JS (run=app.setTimeOut("anim.animA.playFwd()",1);)>>
          /Next<<
            /NA<</S/JavaScript/JS (run=app.setTimeOut("anim.animB.playFwd()",1);)>>
            /Next<< 
              /NA<</S/JavaScript/JS (run=app.setTimeOut("anim.animC.playFwd()",1);)>>
              /Next<<
                /NA<</S/JavaScript/JS (
                  run=app.setTimeOut("anim.animD.playFwd()",1);)>>
              >>
            >>
          >>
        >>  
      >>
    }  
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    \begin{frame}{4 Animations}
      \begin{columns}
        \begin{column}{0.5\linewidth}
          \begin{center}
            \begin{animateinline}[label=animA]{2}
              \multiframe{10}{i=0+1}{
                \Huge\framebox[2em][c]{\strut$A_\i$}
              }
            \end{animateinline}
    
            \begin{animateinline}[label=animC]{2}
              \multiframe{10}{i=0+1}{
                \Huge\framebox[2em][c]{\strut$C_\i$}
              }
            \end{animateinline}
          \end{center}
        \end{column}
        \begin{column}{0.5\linewidth}
          \begin{center}
            \begin{animateinline}[label=animB]{2}
              \multiframe{10}{i=0+1}{
                \Huge\framebox[2em][c]{\strut$B_\i$}
              }
            \end{animateinline}
    
            \begin{animateinline}[label=animD]{2}
              \multiframe{10}{i=0+1}{
                \Huge\framebox[2em][c]{\strut$D_\i$}
              }
            \end{animateinline}
          \end{center}
        \end{column}
      \end{columns}
    \end{frame}
    
    \pdfpageattr{} %reset
    
    \begin{frame}{Fin}
      \dots
    \end{frame}
    
    \end{document}