I want to create an article version of a beamer document.
The following MWE stops with error ! LaTeX Error: \beamer@descriptionitem undefined.:
\documentclass[class=scrartcl]{beamer}
\usepackage{beamerbasearticle}
\usepackage{hyperref}
\begin{document}
\begin{frame}
Content
\end{frame}
\end{document}
I use beamer.cls 2013/01/04 3.26 and hyperref.sty 2012/11/06 v6.83m (Actual TeXlive 2012)
If I remove hyperref everything works fine, but I need hyperref (my document contains hyperref-commands like \href).
The sequence of loading the packages makes no difference, also \documentclass[class=article, hyperref]{beamer} does not work.
Any hints what I can do?
Edit:
In meantime I found a fix for me:
When I replace hyperref with nohyperref the document is created without error.
But it's not a real solution, with nohyperref I get no active links.

\documentclass{scrartcl}and\usepackage{beamerarticle}instead of\documentclass[class=...]{beamer}and\usepackage{beamerbasearticle}. – cyberSingularity Jan 19 at 0:33