I was wondering if there is a possibility to have the third item in black before passing to the next slide.
Here you have the minimal working example:
Code: Select all
\documentclass[10pt]{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[spanish,ngerman,catalan,english]{babel}
\usepackage{pdfpages}
\usefonttheme[stillsansserifsmall]{serif}
\usefonttheme{structuresmallcapsserif}
\usetheme{Pittsburgh}
\usecolortheme{seahorse}
\setbeamertemplate{footline}[frame number]
\beamertemplatenavigationsymbolsempty
\begin{document}
\begin{frame}
Some Items:
\begin{itemize}
\item<2-| alert@2> First Item;
\item<3-| alert@3> Second Item;
\item<4-| alert@4> Third Item (this item should be red and then black before
passing to the next slide).
\end{itemize}
\end{frame}
\end{document}
Regards,
Marie