blob: 2764003cda070e376320f13b48df7b3b7cc0dd89 (
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
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% CLEAR CHECK BOXES
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 0 0 90 30
%%EndProlog
[
/T (Check_Clear_Button)
/Rect [0 0 90 30]
/Subtype /Widget
/F 4
/FT /Btn % button, check type
/Ff 65540 % push button
/H /P
/AP << /N {Clear_Up} /D {Clear_Down} >>
/Action <<
/Subtype /JavaScript
/JS(
var undefined;
function turnOff\(inName\) {
var thecheckbox = this.getField\(inName\);
if \(thecheckbox!=undefined\) thecheckbox.value = "Off";
}
for \(theCount = 1; theCount < 6; theCount++\) {
if \("pageonecheck"+theCount!=undefined\) turnOff\("pageonecheck"+theCount\);
}
)
>>
/ANN pdfmark
%%EOF
|