summaryrefslogtreecommitdiff
path: root/texmf-dist/source/latex/popupmenu/examples/pumen_ex_pdftex.tex
blob: 3254570dc577fdaa383d1524020a3c4b2e4cb817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
\documentclass{article}
\usepackage[designv,pdftex]{web}
\usepackage{eforms}
\usepackage{popupmenu}

\title{The \texorpdfstring{\textsf{popupmenu}}{popupmenu} Package Test File}
\author{D. P. Story}
\subject{Test file for the popupmenu Package}
\keywords{LaTeX, popupmenu, Acrobat JavaScript, AcroTeX}

\university{NORTHWEST FLORIDA STATE COLLEGE\\
   Department of Mathematics}
\email{dpstory@acrotex.net}
\version{1.0}

%\nocopyright
\norevisionLabel

%
% This package can be used by users of pdftex, dvipdfm, dvips (with distiller)
%

\urlPath{\aebhome}{http://www.math.uakron.edu/~dpstory}

\begin{popupmenu}{AeBMenu}
    \item{title=AeB, return=\aebhome/webeq.html}
    \item{title=-}
    \begin{submenu}{title=AeB Pro Family}
        \item{title=Home page,return=\aebhome/aeb_pro.html}
        \item{title=Graphicxsp,return=\aebhome/graphicxsp.html}
    \end{submenu}
    \item{title=eqExam,return=\aebhome/eqexam.html}
\end{popupmenu}

\begin{popupmenu}{AeBMenuLocal}
    \item{title=AeB, return=\aebhome/webeq.html}
    \item{title=-}
    \begin{submenu}{title=AeB Pro Family,enabled=false}
        \item{title=Home page,return=\aebhome/aeb_pro.html}
        \item{title=Graphicxsp,return=\aebhome/graphicxsp.html}
    \end{submenu}
    \item{title=eqExam,return=\aebhome/eqexam.html}
\end{popupmenu}

%
% This menu was taken from the Acrobat JavaScript API Reference
% as a test of the new popupmenu and submenu environments.
%
\begin{popupmenu}{myMenu}
    \item{title=Item 1, marked, enabled=false}
    \item{title=-}
    \begin{submenu}{title=Item 2}
        \item{title={Item 2, Submenu 1}}
        \begin{submenu}{title={Item 2, Submenu 2}}
            \item{title={Item 2, Submenu 2, Subsubmenu 1}}
        \end{submenu}
    \end{submenu}
    \item{title=Item 3}
    \item{title=Item 4}
\end{popupmenu}

\begin{insDLJS}[AeBMenu]{md}{Menu Data}
\AeBMenu
\myMenu
\end{insDLJS}

\newcommand{\cs}[1]{\texttt{\char`\\#1}}


\parindent0pt\parskip6pt

\begin{document}

\maketitle

This file uses the \textsf{hyperref} package to create push buttons,
the push button of \textsf{eforms} can also be used.


Here is an example taken from the Acrobat JavaScript API Reference, it uses
the \cs{PushButton} command of \textsf{hyperref}. The script is implemented as
a mouse up event, rather than a rollover event as it appears \cs{PushButton} does not
support rollover. There is a \texttt{onmouseover} key that is supposed to work, but it doesn't.
\PushButton[name=mymenu,
onclick={var cChoice = \popUpMenu(myMenu);
if ( cChoice != null ) app.alert("You chose the \eqbs\eqbs""+cChoice+"\eqbs\eqbs" menu item");
}]{My Menu}


Here is the same example, but using \cs{pushButton}, the button command from the eforms package.
It is implemented as a rollover event.
\pushButton[\CA{My Menu}\AA{\AAMouseEnter{\JS{%
var cChoice = \popUpMenu(myMenu);\r
if ( cChoice != null ) app.alert("You chose the \\""+cChoice+"\\" menu item");
}}}]{mymenu}{}{11bp}

We can add a push button with a rollover effect
\pushButton[\CA{Packages}\AA{\AAMouseEnter{\JS{%
var cChoice = \popUpMenu(AeBMenu);\r
if ( cChoice != null ) app.launchURL(cChoice);
}}}]{menu}{}{11bp}

This is a version that has a local version of the \texttt{AeBMenuLocal}  array.
If we place the array as field-level JavaScript, we don't need the \textsf{eforms} package.
Again, this is an \texttt{onclick} event.
\PushButton[name=mymenu,onclick={\AeBMenuLocal;
var cChoice = \popUpMenu(AeBMenuLocal);
if ( cChoice != null ) app.launchURL(cChoice);}]{AeB Local Menu}

Fancier examples can be found at the \textcolor{blue}{AeB Blog} (\url{www.math.uakron.edu/~dpstory/aebblog.html}).
\end{document}