The following document compiles fine and the link is shown as I would like it to be shown. But when I click on "here" in the resulting pdf I am taken to page 1 instead of the page where the reference is. I would like to be taken to the referenced page.
\documentclass[english]{beamer}
\usepackage{babel}
\begin{document}
\begin{frame}
\frametitle{the referencing slide}
As you can see \hyperref[refthis]{here}
\end{frame}
\begin{frame}
\frametitle{random stuff}
in between slide
\end{frame}
\begin{frame}
\frametitle{Reference this}
I want to reference this frame. \label{refthis}
\end{frame}
\end{document}
