I'm trying to animate a tree traversal. I want different nodes of the tree to be marked by a circle on different pages e.g. the first node of the topmost level and on the next slide the second node of the next level.
My minimal working example:
\documentclass[18pt,xcolor=table]{beamer}
\usepackage[linguistics]{forest}
\begin{document}
\begin{frame}{Access Operations - Basic Procedure}
\begin{figure}
\centering
\scalebox{0.8}{
\begin{forest}for tree={inner sep=0pt,outer sep=0pt, s sep=(3-level)*2mm, l=(125-level*level*level)*0.1mm}
[,s sep=30
[1, circle, draw
[1, circle, draw
[1]
[1]
[0]
[0]
]
[1
[1]
[0]
[0]
[0]
]
[0]
[1
[0]
[0]
[0]
[1]
]
]
[0]
[1
[0]
[1
[0]
[1]
[0]
[1]
]
[0]
[0]
]
[1
[1
[1]
[1]
[1]
[0]
]
[0]
[0]
[0]
]
]
\end{forest}}
\end{figure}
\end{frame}
\end{document}
The resulting tree has both nodes marked:
I want to mark one on the first slide and the other on the next slide. (I tried only and visible)

foresttree! Please test code before posting it to ensure it gives the output or error you want help with. – cfr Dec 13 '16 at 19:16