[Tex/LaTex] Beamer – stop page numbering

beamerpage-numbering

I would like to stop the page numbering for some slides that are basically the same. Does anyone know how to do it?

I attach a (MWE) example below. As you can see in the first slide I highlight in red the title of column 1, in the second slide (identical to the previous one) I highlight column 2. Latex counts two slides, whereas I would like to count only the first.

\documentclass[10pt,notes=show,beamer]{beamer}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{amssymb}
\usepackage{mathpazo}
\usepackage{hyperref}
\usepackage{multimedia}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{color}


\setcounter{MaxMatrixCols}{10}

%%%%%%%%%%% BEAMER TEMPLATE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\mode<presentation>
{
    \usetheme[compress]{Singapore}
    \setbeamercovered{transparent}
}
\setbeamertemplate{footline}[frame number]

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% END PREAMBLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}


\begin{frame}{First slide}

\begin{table}
    \begin{tabular}{ll}
        \textcolor{red}{Column 1} & Column 2  \\
        \hline \hline
        num1    & num2   \\
        \hline
    \end{tabular}
\end{table}

\end{frame}

\begin{frame}{Second slide}

\begin{table}
    \begin{tabular}{ll}
        Column 1 & \textcolor{red}{Column 2}  \\
        \hline \hline
        num1    & num2   \\
        \hline
    \end{tabular}
\end{table}

\end{frame}

\end{document}

Best Answer

The solution is the command \alert:

\documentclass{beamer}
\mode<presentation>
{
    \usetheme[compress]{Singapore}
    \setbeamercovered{transparent}
}
\setbeamertemplate{footline}[frame number]
\begin{document}

\begin{frame}{First slide}

    \begin{table}
        \begin{tabular}{ll}
            \alert<1>{Column 1} & \alert<2>{Column 2}\\
            \hline \hline
            num1    & num2   \\
            \hline
        \end{tabular}
    \end{table}

\end{frame}
\end{document}

enter image description here