I've a problem with my individualized bullet points in itemize. The text is transparent, but the bullet points aren't. It looks like the following slide:
The images for the bullet points are defined in a beamer theme template through:
\setbeamertemplate{itemize item}{\includegraphics[height=1.6ex]{Dot_sub.png}}
\setbeamertemplate{itemize subitem}{\includegraphics[height=3ex]{Dot_subsub.png}}
I want those defined images to also show up transperant in the beginning. How can I manage that?
\begin{frame}[plain]
\setbeamercovered{transparent}
\vspace{-0cm}
\frametitle{Example slide}
\begin{itemize}
\item <1->one
\item <2->two
\begin{itemize}
\item <3->one
\item <4->two
\end{itemize}
\end{itemize}
\end{frame}


\setbeamertemplatein the second part of the answer to the proposed duplicate seems relevant. – Marijn Jun 21 '20 at 13:28