Re: [iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-24 Thread Larry Evans
On 03/19/12 06:32, iText Info wrote: > Op 19/03/2012 12:21, Larry Evans schreef: >> I have studied the TextFieldActions example which you cited: >> >>http://itextpdf.com/examples/iia.php?id=238 >> >> In particular, in that example, there's: >> >> TextField name = new TextField(writer,

Re: [iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-19 Thread iText Info
Op 19/03/2012 12:21, Larry Evans schreef: > I have studied the TextFieldActions example which you cited: > >http://itextpdf.com/examples/iia.php?id=238 > > In particular, in that example, there's: > > TextField name = new TextField(writer, new Rectangle(130, 806, > 256, 780), "name");

Re: [iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-19 Thread Larry Evans
On 03/19/12 02:39, iText Info wrote: > Op 18/03/2012 20:36, Larry Evans schreef: >> However, I still can't figure out how to add the /AA: Dictionary. > I didn't follow the complete converstation, but I see that you're > talking about Additional Actions. Did you look this up in the keywords > list

Re: [iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-19 Thread iText Info
Op 18/03/2012 20:36, Larry Evans schreef: > However, I still can't figure out how to add the /AA: Dictionary. I didn't follow the complete converstation, but I see that you're talking about Additional Actions. Did you look this up in the keywords list of "iText in Action - Second Edition"? http:/

Re: [iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-18 Thread Larry Evans
Original Message- > From: Larry Evans [mailto:cppljev...@suddenlink.net] > Sent: Wednesday, March 14, 2012 12:43 PM > To: itext-questions@lists.sourceforge.net > Subject: Re: [iText-questions] Howto get PdfFormField from AcroFields and > field name > > On 03/04/12

Re: [iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-14 Thread Leonard Rosenthol
@lists.sourceforge.net Subject: Re: [iText-questions] Howto get PdfFormField from AcroFields and field name On 03/14/12 11:53, Leonard Rosenthol wrote: > I would start by doing it manually with Adobe Acrobat and then looking at the > output PDF in RUPS. Then work backwards to the code... > > -

Re: [iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-14 Thread Larry Evans
ednesday, March 14, 2012 12:43 PM > To: itext-questions@lists.sourceforge.net > Subject: Re: [iText-questions] Howto get PdfFormField from AcroFields and > field name [snip] >> >> A brief look here: >> >> http://www.itextpdf.com/examples/iia.php?id=238 >>

Re: [iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-14 Thread Leonard Rosenthol
Subject: Re: [iText-questions] Howto get PdfFormField from AcroFields and field name On 03/04/12 12:43, Larry Evans wrote: > On 03/04/12 10:32, Larry Evans wrote: > [snip] >> However, what I need is to get a PdfFormField from and AcroFields >> instance and a field name. I the

Re: [iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-14 Thread Larry Evans
On 03/04/12 12:43, Larry Evans wrote: > On 03/04/12 10:32, Larry Evans wrote: > [snip] >> However, what I need is to get a PdfFormField from and AcroFields >> instance and a field name. I then need to use that PdfFormField >> to specify an action for the field. >> >> The AcroFields class does have

Re: [iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-04 Thread Larry Evans
On 03/04/12 10:32, Larry Evans wrote: [snip] > However, what I need is to get a PdfFormField from and AcroFields > instance and a field name. I then need to use that PdfFormField > to specify an action for the field. > > The AcroFields class does have a method: > > http://api.itextpdf.com/itext/

[iText-questions] Howto get PdfFormField from AcroFields and field name

2012-03-04 Thread Larry Evans
The TextFieldActions example: http://itextpdf.com/examples/iia.php?id=159 shows how to create a TextField with a given field name, and then get a PdfFormField from that, and then setAdditionalActions on that PdfFormField. The FormInformation example: http://itextpdf.com/examples/iia.php?id=