AcrobatMenu の設定エラー

AcrobatMenu の設定エラー

Adobe Acrobat メニューをテストしています。ページの下部に「前へ 次へ 最初 最後 戻る 次へ」と表示されるはずです。

これが私の MWE です。私のコードが動作しない理由を教えていただけますか。

\documentclass{article}
\usepackage{lipsum}
\usepackage{fancyhdr}
\usepackage[colorlinks{hyperref}
\pagestyle{fancy}
\cfoot{\NavigationalBar}{%
 \Acrobatmenu{PrevPage}{Previous}
 \Acrobatmenu{NextPage}{Next}
 \Acrobatmenu{FirstPage}{First}
 \Acrobatmenu{LastPage}{Last}
 \Acrobatmenu{GoBack}{Back}
 \Acrobatmenu{GoForward}{Forward}
}
\begin{document}
  \tableofcontents
  \NavigationalBar
  \section{Document start}
  \lipsum[1-3]
  \NavigationalBar
  \section{Last section}
  \lipsum[4]
  \NavigationalBar
\end{document}

関連情報