|
Found via http://www.perlmonks.org/?node_id=747009
Relevant code from the article:
my $ff_obj = $pdf->getFormField(fieldName);
$ff_obj->{value}->{value}->{AS}->{value} = checkThisBox() ? 'Yes' : 'Off';
I had to remove the '()'s on checkThisBox for Perl to run it but it works fine. Does anyone know how to select a radio button?
Thanks.
|