I'm trying to have a text with fixed position across two consecutive frames. When I try overprint, it works, but the frame number stays the same for the two frames. How can I have it incremented on the second frame?
Example of what I have:
\begin{frame}
Common text, that keeps its position in the two frames \\
\begin{overprint}
\onslide<1>
First slide \\
Frame - \insertframenumber{} of \inserttotalframenumber \\
\onslide<2>
Second slide \\
Frame - \insertframenumber{} of \inserttotalframenumber \\
Some more text
\end{overprint}
\end{frame}
The first slide shows "Frame - 6 of 10" and the second one also shows "Frame - 6 of 10". I want it to show "Frame - 7 of 11". Is there a way I can manually increase the counters? Or is there a better way?
Thank you very much.

\only<2>{\addtocounter{framenumber}{1}}, but in the long run, it seems you don't want the framenumber to be shown, but the pagenumber. – samcarter_is_at_topanswers.xyz Sep 16 '16 at 15:26