I am making a presentation in Beamer using \onslide and using \hyperlink I can easily jump to the first \onslide environment on a different frame.
However, I would like to be able to jump to a specific \onslide environment on a different frame.
If the frame I would like to jump to looked like this
\begin{frame}
\onslide<1->{x}
\onslide<2->{y}
\onslide<3->{z}
\end{frame}
is there some way to jump to this frame, that will immediately show the content of the two first \onslide environments, but not the last one?
I have tried placing a hyperlink within an \onslide environment, but this hyperlink seems to apply to the entire frame.