[Tex/LaTex] Hide frame’s dot from the slide heading in beamer

beamerheader-footermini-framesnavigation

Please i want to add some frames to my beamer presentation but without adding a new dot in the frame heading.

There's any method to do that ?
Below is a minimum code example with the theme i am using.

Thanks for your help

    \documentclass{beamer}
    \usetheme{Darmstadt}
    \usecolortheme{seahorse}

    \begin{document}
    \section{title 1}

    \subsection{title 2}

    \begin{frame}{Title (I)}
              Show the corresponding dot (circle) above
    \end{frame}

    \begin{frame}{Title (II)}
     Hide the corresponding dot (circle) above
    \end{frame}

    \end{document}

Best Answer

You can use overlays:

\documentclass{beamer}
\usetheme{Darmstadt}
\usecolortheme{seahorse}

\begin{document}
\section{title 1}

\subsection{title 2}

\begin{frame}{\only<1>{Title (I) --- first dot}\only<2>{Title (II) --- still first dot}}
    \only<1>{Content (I)}
    \only<2>{Content (II)}
\end{frame}

\begin{frame}{Title (III) --- second dot}
    Content (III)
\end{frame}
\end{document}