Okay, there is a way to modify document-level JS with CAM::PDF. I created a PDF with document-level JS, and below is how I replace it with a new JS code. Note that your template may work differently. For example, the JS code is stored in a pdf object, which may contain its length, or alternatively contain a reference to another pdf object that contains the length.
my $pdf = CAM::PDF->new($file);
my $p3 = $pdf->getObjValue($pdf->getObjValue($pdf->getObjValue($pdf->g
+etRootDict()->{Names}{value}{JavaScript}{value})->{Names}{value}[1]{v
+alue})->{JS}{value});
$p3->{StreamData}{value} = <<EO_JS;
this.getField("AfterSave1").display = display.hidden;
this.getField("AfterSave2").display = display.hidden;
this.dirty=false;
EO_JS
$n = $pdf->dereference(CAM::PDF::Node->new('reference', $p3->{Length}{
+value})->{value});
$n->{value}{value} = length $p3->{StreamData}{value};;
For some reason, I'm not sure that's the way CAM::PDF was meant to be used...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|