blob: ce2eb0debc919a66f5d3f6e09a0128fdcd9c8f69 (
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
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% RADIO CLEAR BUTTON: CLEARS ALL RADIO BUTTONS
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 0 0 90 30
%%EndProlog
[
/T (Clear_Radio_Button)
/Rect [0 0 90 30]
/Subtype /Widget
/F 4
/FT /Btn % button, radio type
/Ff 65540 % push type
/H /P % highlight momentarily
/AP << /N {Clear_Up} /D {Clear_Down} >>
/Action <<
/Subtype /JavaScript
/JS(
var undefined;
function turnOff\(inName\) {
var radiobutton = this.getField\(inName\);
if \( radiobutton != undefined \) radiobutton.value = "Off";
}
for \(theCount = 1; theCount < 6; theCount++\) {
if \( "pageoneradio"+theCount != undefined \) turnOff\("pageoneradio"+theCount\);
}
)
>>
/ANN pdfmark
%%EOF
|