Re: Anyone using CFPDF/CFPDFFORM to deliver personalized PDFs?

2013-01-15 Thread Bobby

It has been a very long time but a number of years ago, I did a college
application in PDF format.

The PDF was already defined by the college and the format couldn't change.
What I did was go into the PDF and make all of the answer sections form
fields. Then, obviously, created a web form to gather all the answers.

Once the form was submitted, all of those answers were used to generate a
PDF answer file. The two files together populated the PDF with all the
answers. It was tedious work since all the answer fields needed to match
the PDF field names exactly (it was a huge application) but once that was
done, it worked like a champ.

It was all native CF code in (if I recall) CF6.



On 12/12/12 10:59 AM, Stephen Hait sh...@mindspring.com wrote:


We have an app that takes a user's info and uses it to populate an
existing, blank Acrobat PDF form template that the user can then view,
save
or print. We had been using a commercial component, ActivePDFToolkit, for
this on a CF7 platform.

Our process previously had been to populate the PDF form template from a
query, then to flatten and save the resulting PDF with a unique name. Now
we want to use CF10 to accomplish the same goal.

I'd be interested in discussing the approaches you may have taken for
doing
this type of thing with CF10. If anyone has experience with this and would
be willing to discuss how you've approached it, please let me know, either
through the list or by e-mail.

Regards,
Stephen Hait
sh...@mindspring.com




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353872
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Anyone using CFPDF/CFPDFFORM to deliver personalized PDFs?

2013-01-15 Thread Stephen Hait

Thanks, Bobby. That's basically the way we're doing it. CF10 makes this
quite simple, it turns out.

Regards,
Stephen

On Tue, Jan 15, 2013 at 7:39 AM, Bobby bo...@acoderslife.com wrote:


 It has been a very long time but a number of years ago, I did a college
 application in PDF format.

 The PDF was already defined by the college and the format couldn't change.
 What I did was go into the PDF and make all of the answer sections form
 fields. Then, obviously, created a web form to gather all the answers.

 Once the form was submitted, all of those answers were used to generate a
 PDF answer file. The two files together populated the PDF with all the
 answers. It was tedious work since all the answer fields needed to match
 the PDF field names exactly (it was a huge application) but once that was
 done, it worked like a champ.

 It was all native CF code in (if I recall) CF6.



 On 12/12/12 10:59 AM, Stephen Hait sh...@mindspring.com wrote:

 
 We have an app that takes a user's info and uses it to populate an
 existing, blank Acrobat PDF form template that the user can then view,
 save
 or print. We had been using a commercial component, ActivePDFToolkit, for
 this on a CF7 platform.
 
 Our process previously had been to populate the PDF form template from a
 query, then to flatten and save the resulting PDF with a unique name. Now
 we want to use CF10 to accomplish the same goal.
 
 I'd be interested in discussing the approaches you may have taken for
 doing
 this type of thing with CF10. If anyone has experience with this and would
 be willing to discuss how you've approached it, please let me know, either
 through the list or by e-mail.
 
 Regards,
 Stephen Hait
 sh...@mindspring.com
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353873
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Anyone using CFPDF/CFPDFFORM to deliver personalized PDFs?

2013-01-15 Thread Anthony Doherty

Hi Stephen,
I would love to know how you are doing this as its something I would like
to implement onto our systems.

Regards
Anthony


On 15 January 2013 13:16, Stephen Hait sh...@mindspring.com wrote:


 Thanks, Bobby. That's basically the way we're doing it. CF10 makes this
 quite simple, it turns out.

 Regards,
 Stephen

 On Tue, Jan 15, 2013 at 7:39 AM, Bobby bo...@acoderslife.com wrote:

 
  It has been a very long time but a number of years ago, I did a college
  application in PDF format.
 
  The PDF was already defined by the college and the format couldn't
 change.
  What I did was go into the PDF and make all of the answer sections form
  fields. Then, obviously, created a web form to gather all the answers.
 
  Once the form was submitted, all of those answers were used to generate a
  PDF answer file. The two files together populated the PDF with all the
  answers. It was tedious work since all the answer fields needed to match
  the PDF field names exactly (it was a huge application) but once that was
  done, it worked like a champ.
 
  It was all native CF code in (if I recall) CF6.
 
 
 
  On 12/12/12 10:59 AM, Stephen Hait sh...@mindspring.com wrote:
 
  
  We have an app that takes a user's info and uses it to populate an
  existing, blank Acrobat PDF form template that the user can then view,
  save
  or print. We had been using a commercial component, ActivePDFToolkit,
 for
  this on a CF7 platform.
  
  Our process previously had been to populate the PDF form template from a
  query, then to flatten and save the resulting PDF with a unique name.
 Now
  we want to use CF10 to accomplish the same goal.
  
  I'd be interested in discussing the approaches you may have taken for
  doing
  this type of thing with CF10. If anyone has experience with this and
 would
  be willing to discuss how you've approached it, please let me know,
 either
  through the list or by e-mail.
  
  Regards,
  Stephen Hait
  sh...@mindspring.com
  
  
  
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353880
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Anyone using CFPDF/CFPDFFORM to deliver personalized PDFs?

2012-12-12 Thread Stephen Hait

We have an app that takes a user's info and uses it to populate an
existing, blank Acrobat PDF form template that the user can then view, save
or print. We had been using a commercial component, ActivePDFToolkit, for
this on a CF7 platform.

Our process previously had been to populate the PDF form template from a
query, then to flatten and save the resulting PDF with a unique name. Now
we want to use CF10 to accomplish the same goal.

I'd be interested in discussing the approaches you may have taken for doing
this type of thing with CF10. If anyone has experience with this and would
be willing to discuss how you've approached it, please let me know, either
through the list or by e-mail.

Regards,
Stephen Hait
sh...@mindspring.com


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353438
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFPDFForm

2011-05-11 Thread Chad Gray

Is there any way to make sure when you use CFPDFForm with a populate action 
that the PDF opens in the browser?

I have some users the PDF opens in Acrobat pro external to the web browser.

Thanks,
Chad


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344455
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFPDFForm

2011-05-11 Thread Russ Michaels

The users need to have the PDF browser plugin installed, if they don't then
there is no way for it to open in the browser, it will instead prompt to
download or open in the default program.
Perhaps you can include a link on the page to the install instructions 

On Wed, May 11, 2011 at 4:39 PM, Chad Gray cg...@careyweb.com wrote:


 Is there any way to make sure when you use CFPDFForm with a populate action
 that the PDF opens in the browser?

 I have some users the PDF opens in Acrobat pro external to the web browser.

 Thanks,
 Chad


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344456
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFPDFForm Submit

2011-05-11 Thread Chad Gray

Another question about CFPDFForm.  When the PDF does open in Acrobat pro and 
they click submit on the form.  The cookie for the users session appears to be 
killed.

So the action page that PDF Form is submitting to will not have that users 
session and the form fields never arrive at the action page .

Seems populating PDF forms and using them to submit data to an action page is 
not very reliable. 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344457
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFPDFForm Submit

2011-05-11 Thread Russ Michaels

I suspect this only works if the PDF has been opened in the browser, most
external programs do not have the ability to store cookies.
Why not just append the session information tot he action URL instead ?


On Wed, May 11, 2011 at 4:51 PM, Chad Gray cg...@careyweb.com wrote:


 Another question about CFPDFForm.  When the PDF does open in Acrobat pro
 and they click submit on the form.  The cookie for the users session appears
 to be killed.

 So the action page that PDF Form is submitting to will not have that users
 session and the form fields never arrive at the action page .

 Seems populating PDF forms and using them to submit data to an action page
 is not very reliable.


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344458
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFPDFForm Submit

2011-05-11 Thread Chad Gray

Can I edit the PDF Form's submit button URL with CFPDFForm to add the session 
data on the URL?

I will read the documentation on CFPDFForm and see if I can change the URL of 
the Form.

Thanks,
Chad


 -Original Message-
 From: Russ Michaels [mailto:r...@michaels.me.uk]
 Sent: Wednesday, May 11, 2011 11:59 AM
 To: cf-talk
 Subject: Re: CFPDFForm Submit
 
 
 I suspect this only works if the PDF has been opened in the browser, most
 external programs do not have the ability to store cookies.
 Why not just append the session information tot he action URL instead ?
 
 
 On Wed, May 11, 2011 at 4:51 PM, Chad Gray cg...@careyweb.com wrote:
 
 
  Another question about CFPDFForm.  When the PDF does open in Acrobat
  pro and they click submit on the form.  The cookie for the users
  session appears to be killed.
 
  So the action page that PDF Form is submitting to will not have that
  users session and the form fields never arrive at the action page .
 
  Seems populating PDF forms and using them to submit data to an action
  page is not very reliable.
 
 
 
 
 ~~~
 ~~|
 Order the Adobe Coldfusion Anthology now!
 http://www.amazon.com/Adobe-Coldfusion-
 Anthology/dp/1430272155/?tag=houseoffusion
 Archive: http://www.houseoffusion.com/groups/cf-
 talk/message.cfm/messageid:344458
 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
 Unsubscribe: http://www.houseoffusion.com/groups/cf-
 talk/unsubscribe.cfm


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344459
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFPDFform

2010-03-23 Thread Chad Gray

I posted yesterday about using CFPDFForm and iText, but it kind of got pushed 
to the side with all the CFBuilder chat.
 
My question now is what is the best practice when using CFPDFForm to create a 
PDF?
 
If I specify a destination the PDF is created and the form data is there, but 
it appears the PDF is not flattened.  If I open the PDF in Acrobat make no 
changes and try to close the document Acrobat asks if I want to save it.  It is 
like the PDF made by CFPDFForm is not flattened or complete.
 
I had to run CFPDF flatten=yes … after my CFPDFForm code to get iText to 
play well with the PDF.
 
Is it best practice to use CFPDF to flatten a PDF made by CFPDFForm?  It really 
slows down the page run time if I add it.
 
Thanks,
Cha

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332103
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFPDFForm and iText signature

2010-03-22 Thread Chad Gray

I am using CFPDFForm to populate a PDF form with data from a database and save 
it to the server.  This works fine. I open it and the data is in the PDF.
 
I added another step to the CFM page that after CFPDFForm saves the file I run 
iText to apply a signature to the PDF and flatten the form.
 
I open the new PDF with the signature and all my form data is gone.  Only the 
signature is on the PDF.
 
I thought maybe it was a timing issue that CFPDFForm was not saving the file 
before iText got a hold of it.  This is not the case.  I can take the CFPDFform 
generated PDF and only run the iText code on it and the form data is never 
retained.  Only the signature is on the PDF.
 
I opened the PDF with form data in Acrobat and did a save.  Ran my iText code 
on it and the form data and signature was on the PDF.
 
I am baffled.  I don’t understand why when I run the iText signature code that 
the data put into the form by CFPDFForm would be deleted.
 
Ideas?
Thanks,
Cha

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332003
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFPDFForm and iText signature

2010-03-22 Thread Chad Gray

Hmmm I had to add a CFPDF flatten=yes  tag after CFPDFForm to flatten 
the PDF before stepping into the iText code.

Slows the page WAY down, but that is the only solution I have found so far.



-Original Message-
From: Chad Gray [mailto:cg...@careyweb.com] 
Sent: Monday, March 22, 2010 3:31 PM
To: cf-talk
Subject: CFPDFForm and iText signature


I am using CFPDFForm to populate a PDF form with data from a database and save 
it to the server.  This works fine. I open it and the data is in the PDF.
 
I added another step to the CFM page that after CFPDFForm saves the file I run 
iText to apply a signature to the PDF and flatten the form.
 
I open the new PDF with the signature and all my form data is gone.  Only the 
signature is on the PDF.
 
I thought maybe it was a timing issue that CFPDFForm was not saving the file 
before iText got a hold of it.  This is not the case.  I can take the CFPDFform 
generated PDF and only run the iText code on it and the form data is never 
retained.  Only the signature is on the PDF.
 
I opened the PDF with form data in Acrobat and did a save.  Ran my iText code 
on it and the form data and signature was on the PDF.
 
I am baffled.  I don’t understand why when I run the iText signature code that 
the data put into the form by CFPDFForm would be deleted.
 
Ideas?
Thanks,
Cha



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:332015
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFPdfForm

2010-02-18 Thread Chad Gray

Is there a best practice with CFPDFForm?
 
The first time I hit a page using it, it streamed binary into the web browser 
instead of rendering a PDF.  The second time I hit it the PDF opened in Acrobat.
 
Should I use these to be safe?
cfcontent type=application/pdf 
cfsetting enablecfoutputonly=yes
 
The documentation does not say anything.  Just to leave the destination 
attribute off.
 
Thanks,
Chad

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330871
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFPdfForm

2010-02-18 Thread Rick Faircloth

I may be getting this same behavior in FF.  When I first go to the page,
I get a white screen with Stopped in the status bar at the bottom.

Upon hitting the refresh key (sometimes more than once) I'm able to
get the PDF to show.  IE usually shows the PDF the first time.

I'm just using a straight file link from the menu on my site:

http://localhost/holtzmanRentals/rentalApplication.pdf

Is it better to use a .cfm page with cfcontent... etc... ?

I'd like to know some best practices, as well, Chad.

Rick

-Original Message-
From: Chad Gray [mailto:cg...@careyweb.com] 
Sent: Thursday, February 18, 2010 10:42 AM
To: cf-talk
Subject: CFPdfForm


Is there a best practice with CFPDFForm?
 
The first time I hit a page using it, it streamed binary into the web
browser instead of rendering a PDF.  The second time I hit it the PDF opened
in Acrobat.
 
Should I use these to be safe?
cfcontent type=application/pdf 
cfsetting enablecfoutputonly=yes
 
The documentation does not say anything.  Just to leave the destination
attribute off.
 
Thanks,
Chad



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330873
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFPdfForm

2010-02-18 Thread Dave Watts

 The first time I hit a page using it, it streamed binary into the web browser 
 instead of rendering a PDF.  The second time I hit it the
 PDF opened in Acrobat.

That's a fairly common issue - I think it's a browser issue, rather
than a server-side issue. That said, you can probably limit it or
avoid it using CFCONTENT as you mention.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330877
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFPdfForm

2010-02-18 Thread Rick Faircloth

After doing a little reading in the Adobe docs, I tried this solution:

cfDocument format = pdf

  cfDocumentSection
 pnbsp;/p
  /cfDocumentSection

 cfPDFForm  source =
../documents/2010_0211_HoltzmanRentalApplicationOnline_Foxit_htmlSubmit.pdf

action  = populate

 cfPDFFormParam name = currentDate   value =
#dateFormat(now(), 'mmm d, ')#

 /cfPDFForm

   /cfDocument

and it seems to have solved the problem with FF having trouble opening the
PDF.  It opens
first time, every time...at least so far.

Is there anything problematic about the above code?
Would using cfContent... be better?  If so, why?

Thanks,

Rick

-Original Message-
From: Dave Watts [mailto:dwa...@figleaf.com] 
Sent: Thursday, February 18, 2010 12:03 PM
To: cf-talk
Subject: Re: CFPdfForm


 The first time I hit a page using it, it streamed binary into the web
browser instead of rendering a PDF.  The second time I hit it the
 PDF opened in Acrobat.

That's a fairly common issue - I think it's a browser issue, rather
than a server-side issue. That said, you can probably limit it or
avoid it using CFCONTENT as you mention.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330880
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfpdfform -Prefill form fields

2009-10-26 Thread Ria Ragam

Hi All,

I am trying to pre-fill the form fields in PDF. I can successfully fill the 
fields in the pdf. but when I dump the structure by using cfpdfform 
action=read sourceC:/abc/abc.pdf result=resultstruct, In the structure I 
can only see FirstName and the LastName elements. I also wanted to prefill the 
address in the form but I am unable to to.

Can I able to prefill the form field if its not in the dump structure of pdf ?
If no .. can any one help me out to solve this issue.

Thanks,
Ria Ragam 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327720
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform -Prefill form fields

2009-10-26 Thread Dave Watts

 I am trying to pre-fill the form fields in PDF. I can successfully fill the 
 fields in the pdf. but when I dump the structure by using
 cfpdfform action=read sourceC:/abc/abc.pdf result=resultstruct, In 
 the structure I can only see FirstName and the
 LastName elements. I also wanted to prefill the address in the form but I am 
 unable to to.

 Can I able to prefill the form field if its not in the dump structure of pdf ?
 If no .. can any one help me out to solve this issue.

If you can't see the fields when you dump the PDF form structure, you
can't write to them.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327725
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform -Prefill form fields

2009-10-26 Thread Ria Ragam

Thanks alot. I will try to create a required PDF.
Ria

On Mon, Oct 26, 2009 at 7:35 PM, Dave Watts dwa...@figleaf.com wrote:


  I am trying to pre-fill the form fields in PDF. I can successfully fill
 the fields in the pdf. but when I dump the structure by using
  cfpdfform action=read sourceC:/abc/abc.pdf result=resultstruct,
 In the structure I can only see FirstName and the
  LastName elements. I also wanted to prefill the address in the form but I
 am unable to to.
 
  Can I able to prefill the form field if its not in the dump structure of
 pdf ?
  If no .. can any one help me out to solve this issue.

 If you can't see the fields when you dump the PDF form structure, you
 can't write to them.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/

 Fig Leaf Software provides the highest caliber vendor-authorized
 instruction at our training centers in Washington DC, Atlanta,
 Chicago, Baltimore, Northern Virginia, or on-site at your location.
 Visit http://training.figleaf.com/ for more information!

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327727
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Using CFPDFFORM, Data going into PDF Form Fields is mis-aligned or cut off...

2009-05-28 Thread Chris Johnson

Interesting problem.


CFPDFFORM works wonderfully for the most part, except when it does what it's 
supposed to do: insert data into pdf forms.

I'm finding that often times, letters like q, y, or other letters that hang a 
bit, get cut off.

Additionally, alignment seems screwy.  Many times a form is perfect in PDF 
form, but then when CFPDFFORM inserts data into that form, the data is 
mis-aligned and has a different placement than it did in the actual PDF.

On that second issue, if you tab through those form fields when in the browser, 
they jump all over the place as you tab in and out of the fields.

I see no way to adjust this behavior in the tag's docs.  Is this a known issue?

The PDFs are created with Adobe Professional 7, but displayed in Adobe Reader 8 
via the browser.

Very curious if anyone else is having this problem.  We have a dozen or more 
forms automated and all sorts of hacks are in place like stretching form fields 
or purposely mis-aligning them so that CFPDFFORM's mis-alignment looks closer 
to how it should look, etc.

Thanks!


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:322904
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform and PDF Dynamic XML Forms

2009-02-14 Thread Mark Mandel

TJ -

Just some random thoughts -

1) if you run cf from the console, do you see any errors in there? An
exception stack trace may be helpful.
2) If you put a try/catch around it, and dump the cfcatch, do you see
anything special? Sometimes it can show you Java errors you wouldn't
otherwise see.

Mark

On Sat, Feb 14, 2009 at 2:43 PM, TJ Downes koldfu...@gmail.com wrote:


 Hi all,

 I have been banging my head on this issue for a couple of days and hope
 someone has some experience to offer.

 We are replacing PDFs generated by cfdocument with PDF templates developed
 in LiveCycle Designer, due to the issues we have had trying to get our
 results to be consistent. I have what I feel is a solid PDF Form template
 going,and I can populate the form using cfpdfform. The one issue I am having
 is trying to get flowable content working. If you have worked with LiveCycle
 Designer you will know what flowable content is. If you haven't, its the
 ability to allow users to fill in data in a PDF form and the PDF will expand
 to fit the content.

 I have this working (flowable content) in the PDF only when I save it as a
 Dynamic XML Form. I can add data to my form fields and the document
 expands as expected. This behavior does not occur when saved as a standard
 PDF Form. From the limited information i have read, this is by design.

 When I save the document as a Dynamic XML Form and try to populate it with
 CF I get the following error: An exception has occurred in the processing of
 PDF forms. ''

 Pretty vague. Yes, this is even with debugging enabled :)

 I can't seem to do anything to populate the Dynamic PDF Form without
 causing this error. What's odd is that I can read the document just fine. I
 can populate it manually, and a cfdump shows the data as an XML structure
 (that's good!). I can also use the same method to populate a standard PDF
 Form, both using XML and cfpdfformparam. The only thing that isn't working
 is populating the Dynamic XML Form from CF.

 Can someone tell me if this is unsupported, or if there is a workaround? We
 sincerely hate the cfdocument method we have been using, cfpdfform has made
 this so much faster, cleaner and more reliable.

 I would be happy to provide a copy of my template from LiveCycle Designer
 as well as a code sample.

 Thanks
 TJ Downes

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319306
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform and PDF Dynamic XML Forms

2009-02-14 Thread TJ Downes

Hey Mark, thanks for the suggestion. Not sure why i didn't think of that. It 
did give me some additional info, albeit I don't think it gets me any further 
ahead.

java.lang.StringIndexOutOfBoundsException: String index out of range: -1 at 
java.lang.String.substring(String.java:1938) at 
coldfusion.pdf.XFADataXMLGenerator.createFormXMLData(XFADataXMLGenerator.java:94)
 at coldfusion.tagext.lang.PDFFormTag.doEndTag(PDFFormTag.java:276) at 
cfjustareminder2ecfm765021945._factor10(C:\Inetpub\wwwroot\wma.org\members\forms\repository\print\justareminder.cfm:27)
 at 
cfjustareminder2ecfm765021945._factor11(C:\Inetpub\wwwroot\wma.org\members\forms\repository\print\justareminder.cfm:24)
 at 
cfjustareminder2ecfm765021945.runPage(C:\Inetpub\wwwroot\wma.org\members\forms\repository\print\justareminder.cfm:1)
 at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:192) at 
coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:366) at 
coldfusion.runtime.CfJspPage._emptyTag(CfJspPage.java:2644) at 
cfinterface2ecfm27561726._factor43(C:\Inetpub\wwwroot\wma.org\members\forms\interface.cfm:493)
 at 
cfinterface2ecfm27561726._factor46(C:\Inetpub\wwwroot\wma.org\members\forms\interface.cfm:489)
 at 
cfinterface2ecfm27561726._factor16(C:\Inetpub\wwwroot\wma.org\members\forms\interface.cfm)
 at 
cfinterface2ecfm27561726._factor50(C:\Inetpub\wwwroot\wma.org\members\forms\interface.cfm:482)
 at 
cfinterface2ecfm27561726.runPage(C:\Inetpub\wwwroot\wma.org\members\forms\interface.cfm:1)
 at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:192) at 
coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:366) at 
coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at 
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:273) at 
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48) at 
coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at 
coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at 
coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70) at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
 at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at 
coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at 
coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at 
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at 
coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:126) 
at coldfusion.CfmServlet.service(CfmServlet.java:175) at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at 
jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at 
coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
 at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at 
jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at 
jrun.servlet.FilterChain.service(FilterChain.java:101) at 
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at 
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:284) at 
jrun.servlet..ServletEngineService.dispatch(ServletEngineService.java:543) at 
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203) at 
jrunx..scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
 at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428) 
at 
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266) 
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319311
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform and PDF Dynamic XML Forms

2009-02-14 Thread TJ Downes

I figured this out. For some reason, when working with Dynamic XML Forms, you 
must specify overwritedata=true to the cfpdfform tag. The PDFs are now 
generating correctly. 

As a side note, when you use Dynamic XML Forms for your PDFs it does not look 
like you can use cfpdf to flatten the documents. The resulting document, when 
opened, states you need a newer version of Acrobat to view the document. If 
anyone knows a way around this it would be appreciated





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319319
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfpdfform and PDF Dynamic XML Forms

2009-02-13 Thread TJ Downes

Hi all,

I have been banging my head on this issue for a couple of days and hope someone 
has some experience to offer.

We are replacing PDFs generated by cfdocument with PDF templates developed in 
LiveCycle Designer, due to the issues we have had trying to get our results to 
be consistent. I have what I feel is a solid PDF Form template going,and I can 
populate the form using cfpdfform. The one issue I am having is trying to get 
flowable content working. If you have worked with LiveCycle Designer you will 
know what flowable content is. If you haven't, its the ability to allow users 
to fill in data in a PDF form and the PDF will expand to fit the content. 

I have this working (flowable content) in the PDF only when I save it as a 
Dynamic XML Form. I can add data to my form fields and the document expands 
as expected. This behavior does not occur when saved as a standard PDF Form. 
From the limited information i have read, this is by design. 

When I save the document as a Dynamic XML Form and try to populate it with CF I 
get the following error: An exception has occurred in the processing of PDF 
forms. ''

Pretty vague. Yes, this is even with debugging enabled :)

I can't seem to do anything to populate the Dynamic PDF Form without causing 
this error. What's odd is that I can read the document just fine. I can 
populate it manually, and a cfdump shows the data as an XML structure (that's 
good!). I can also use the same method to populate a standard PDF Form, both 
using XML and cfpdfformparam. The only thing that isn't working is populating 
the Dynamic XML Form from CF. 

Can someone tell me if this is unsupported, or if there is a workaround? We 
sincerely hate the cfdocument method we have been using, cfpdfform has made 
this so much faster, cleaner and more reliable. 

I would be happy to provide a copy of my template from LiveCycle Designer as 
well as a code sample.

Thanks
TJ Downes 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319302
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFPDFForm and Ability to Update From Reader Later?

2009-01-21 Thread Matthew Reinbold
I currently have a PDF form that has had usage rights enabled (in Acrobat under 
'Advanced' then 'Enable Usage Rightes'). If I give this form, as is, to someone 
with only Adobe Reader they can enter info, save it to their desktop, and 
continue editing again at their leisure. 

What I would like to do is pre-populate a number of fields of the PDF form 
based on certain application criteria and THEN email it to a person for 
additional data entry. However, when I try using CFPDFForm - either by itself 
to create a new PDF or inserted as a PDF between the CFDocument tags - opening 
the newly created PDF on a user's machine who only has Adobe Reader give the 
following message:

This document enabled extended features in Adobe Reader. This document has 
been changed since it was created and use of extended features is no longer 
available. Please contact the author for the original version of this document.

Is the copy produced by ColdFusion 'flattening' the PDF? What is going on? Why 
can't I populate a section of a PDF form automatically and then pass it off for 
additional data entry?

Matthew 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318290
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFPDFForm and Ability to Update From Reader Later?

2009-01-21 Thread Dave Watts
 I currently have a PDF form that has had usage rights enabled (in Acrobat 
 under 'Advanced' then 'Enable Usage Rightes'). If I give this form, as is, to 
 someone with only Adobe Reader they
 can enter info, save it to their desktop, and continue editing again at their 
 leisure.

 What I would like to do is pre-populate a number of fields of the PDF form 
 based on certain application criteria and THEN email it to a person for 
 additional data entry. However, when I try
 using CFPDFForm - either by itself to create a new PDF or inserted as a PDF 
 between the CFDocument tags - opening the newly created PDF on a user's 
 machine who only has Adobe
 Reader give the following message:

 This document enabled extended features in Adobe Reader. This document has 
 been changed since it was created and use of extended features is no longer 
 available. Please contact the
 author for the original version of this document.

 Is the copy produced by ColdFusion 'flattening' the PDF? What is going on? 
 Why can't I populate a section of a PDF form automatically and then pass it 
 off for additional data entry?

You can't make changes with CF's PDF manipulation stuff without
breaking Reader Extensions functionality. That's just the way it is,
right now. You can do this sort of thing fairly easily with LiveCycle
ES; CF only includes a tiny subset of LCES functionality.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318292
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFPDFForm and Ability to Update From Reader Later?

2009-01-21 Thread Matthew Reinbold
It's just the way it is

Not so. Apple Preview Users are able to edit the generated PDF's just fine. 
This seems to imply a couple things:

1) There is nothing wrong with the structure of the PDF - rather, Adobe Reader 
is enforcing arbitrary restrictions
2) Would they be doing this to encourage folks to get a LifeCycle license

Obviously, having employees using Apple Preview to process forms isn't 
dependable - I would think a call from Adobe to Apple and that little loophole 
would be patched up.

My biggest confusion is WHY Adobe CF would handle things that way?

Matthew 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318293
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFPDFForm and Ability to Update From Reader Later?

2009-01-21 Thread Dave Watts
 It's just the way it is

 Not so. Apple Preview Users are able to edit the generated PDF's just fine.

Apple Preview is not Adobe Reader. It's a third-party application
which can do whatever Apple wants it to do with PDFs. Third-party PDF
applications are not constrained by the limitations of Adobe Reader.
It is, in fact, just the way it is that if you use CF to manipulate
Reader-enabled PDFs, that breaks the Reader Extensions functionality.

 This seems to imply a couple things:

 1) There is nothing wrong with the structure of the PDF - rather, Adobe 
 Reader is enforcing arbitrary restrictions
 2) Would they be doing this to encourage folks to get a LifeCycle license

 Obviously, having employees using Apple Preview to process forms isn't 
 dependable - I would think a call from Adobe to Apple and that little 
 loophole would be patched up.

 My biggest confusion is WHY Adobe CF would handle things that way?

I can't tell you why Adobe does things. I can only tell you how things
are. But yes, Adobe Reader does enforce arbitrary restrictions that
other PDF applications are free to ignore. And I'm sure Adobe would
like everyone to buy LiveCycle ES servers, too. I don't know why CF
breaks Reader Extensions functionality; I don't know if it's
intentional or just an oversight.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318294
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfpdfform question

2008-04-30 Thread Tony
hi there.

i need to put cr/lf in some pdf form fields that i am populating.
i have abs no problem with any part of the pdf, i am getting data
into it just as i want, the only problem is that in one of the form fields
i need to put an address, and i cannot seem to get it to recognize that.

here is the cf code im sending into it:

cfsavecontent variable = request.data.defendants1cfoutputTony
Weeg#chr(13)##chr(10)#309 Middle Blvd#chr(13)##chr(10)#Salisbury,
Maryland, 21801/cfoutput/cfsavecontent

and then i make sure its paragraph formatted...

cfparam name = request.data.defendants2 default =
#paragraphFormat(request.data.defendants2)# /


and here is part of the xml im sending in...

   field name=parties
   valueTony Weeg and Lily Weeg
210 South Baptist Street
Salisbury, Maryland, 21801/value
   /field

and what i get is a one line string, no breaks, nothing :(

any ideas?

thanks!
tony

-- 
'Never have anything in your life that you can't walk out on in thirty
seconds flat, if you spot the heat coming around the corner'

robert deniro - heat (1995)

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304535
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform question [bayes SPAMTRAP][heur SPAMTRAP]

2008-04-30 Thread Paul Hastings
Tony wrote:
 i need to put cr/lf in some pdf form fields that i am populating.

have you tried \n?


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304541
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfpdfform question [bayes SPAMTRAP][heur SPAMTRAP]

2008-04-30 Thread Tony
in the text of the xml?

nope, but i shall right now...

thx
good idea.

On Wed, Apr 30, 2008 at 6:41 PM, Paul Hastings [EMAIL PROTECTED] wrote:
 Tony wrote:
   i need to put cr/lf in some pdf form fields that i am populating.

  have you tried \n?


  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304545
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfpdfform question [bayes SPAMTRAP][heur SPAMTRAP]

2008-04-30 Thread Tony
Kennedy and Carlos Weeg\n309 Middle Blvd\nSalisbury, Maryland, 21801

is what it puts in the pdf

:(  wtf

tw

On Wed, Apr 30, 2008 at 8:32 PM, Tony [EMAIL PROTECTED] wrote:
 in the text of the xml?

  nope, but i shall right now...

  thx
  good idea.


  On Wed, Apr 30, 2008 at 6:41 PM, Paul Hastings [EMAIL PROTECTED] wrote:
   Tony wrote:
 i need to put cr/lf in some pdf form fields that i am populating.
  
have you tried \n?
  
  


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304547
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform question

2008-04-30 Thread Tony
not workin ...

http://koivi.com/fill-pdf-form-fields/

that page, has what appears to be what i need to do, in php...
i see they have some \n's but what i dont see is one inside
of that.

is that some sort of adobe xml or something? maybe i can google that?

tw

On Wed, Apr 30, 2008 at 8:35 PM, Tony [EMAIL PROTECTED] wrote:
 Kennedy and Carlos Weeg\n309 Middle Blvd\nSalisbury, Maryland, 21801

  is what it puts in the pdf

  :(  wtf

  tw



  On Wed, Apr 30, 2008 at 8:32 PM, Tony [EMAIL PROTECTED] wrote:
   in the text of the xml?
  
nope, but i shall right now...
  
thx
good idea.
  
  
On Wed, Apr 30, 2008 at 6:41 PM, Paul Hastings [EMAIL PROTECTED] wrote:
 Tony wrote:
   i need to put cr/lf in some pdf form fields that i am populating.

  have you tried \n?


  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304550
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform question [bayes SPAMTRAP][heur SPAMTRAP]

2008-04-30 Thread denstar
Someone already say #chr(13)chr(10)# ?

Or one or the other, depending?

Maybe give that a whirl, if not...

dv

On Wed, Apr 30, 2008 at 6:35 PM, Tony [EMAIL PROTECTED] wrote:
 Kennedy and Carlos Weeg\n309 Middle Blvd\nSalisbury, Maryland, 21801

  is what it puts in the pdf

  :(  wtf

  tw


  On Wed, Apr 30, 2008 at 8:32 PM, Tony [EMAIL PROTECTED] wrote:
   in the text of the xml?
  
nope, but i shall right now...
  
thx
good idea.
  
  
On Wed, Apr 30, 2008 at 6:41 PM, Paul Hastings [EMAIL PROTECTED] wrote:
 Tony wrote:
   i need to put cr/lf in some pdf form fields that i am populating.

  have you tried \n?




  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304552
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfpdfform question [bayes SPAMTRAP][heur SPAMTRAP]

2008-04-30 Thread Cutter (CFRelated)
Have you tried #chr(13)##chr(10)# yet?

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com

Tony wrote:
 Kennedy and Carlos Weeg\n309 Middle Blvd\nSalisbury, Maryland, 21801
 
 is what it puts in the pdf
 
 :(  wtf
 
 tw
 
 On Wed, Apr 30, 2008 at 8:32 PM, Tony [EMAIL PROTECTED] wrote:
 in the text of the xml?

  nope, but i shall right now...

  thx
  good idea.


  On Wed, Apr 30, 2008 at 6:41 PM, Paul Hastings [EMAIL PROTECTED] wrote:
   Tony wrote:
 i need to put cr/lf in some pdf form fields that i am populating.
  
have you tried \n?
  
  

 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304553
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform question [bayes SPAMTRAP][heur SPAMTRAP]

2008-04-30 Thread Tony
yes, sadly.

tw

On Wed, Apr 30, 2008 at 9:01 PM, Cutter (CFRelated)
[EMAIL PROTECTED] wrote:
 Have you tried #chr(13)##chr(10)# yet?

  Steve Cutter Blades
  Adobe Certified Professional
  Advanced Macromedia ColdFusion MX 7 Developer
  _
  http://blog.cutterscrossing.com


  Tony wrote:
   Kennedy and Carlos Weeg\n309 Middle Blvd\nSalisbury, Maryland, 21801
  
   is what it puts in the pdf
  
   :(  wtf
  
   tw
  
   On Wed, Apr 30, 2008 at 8:32 PM, Tony [EMAIL PROTECTED] wrote:
   in the text of the xml?
  
nope, but i shall right now...
  
thx
good idea.
  
  
On Wed, Apr 30, 2008 at 6:41 PM, Paul Hastings [EMAIL PROTECTED] wrote:
 Tony wrote:
   i need to put cr/lf in some pdf form fields that i am populating.

  have you tried \n?



  
  

  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304556
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfpdfform question [bayes SPAMTRAP][heur SPAMTRAP]

2008-04-30 Thread Tony
using that, chr(13)chr(10) produces this:

Tony Weeg and Lily Weeg210 South Baptist Street Salisbury, Maryland, 21801

one line.

:(

On Wed, Apr 30, 2008 at 9:17 PM, Tony [EMAIL PROTECTED] wrote:
 yes, sadly.

  tw


  On Wed, Apr 30, 2008 at 9:01 PM, Cutter (CFRelated)
  [EMAIL PROTECTED] wrote:
   Have you tried #chr(13)##chr(10)# yet?
  
Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer
_
http://blog.cutterscrossing.com
  
  
Tony wrote:
 Kennedy and Carlos Weeg\n309 Middle Blvd\nSalisbury, Maryland, 21801

 is what it puts in the pdf

 :(  wtf

 tw

 On Wed, Apr 30, 2008 at 8:32 PM, Tony [EMAIL PROTECTED] wrote:
 in the text of the xml?

  nope, but i shall right now...

  thx
  good idea.


  On Wed, Apr 30, 2008 at 6:41 PM, Paul Hastings [EMAIL PROTECTED] 
 wrote:
   Tony wrote:
 i need to put cr/lf in some pdf form fields that i am populating.
  
have you tried \n?
  
  
  


  


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304557
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpdfform question [bayes SPAMTRAP][heur SPAMTRAP]

2008-04-30 Thread Tony
when in doubt, kludge it out :)

just made 4 single lines.

whatver ... it works.
thanks anyway!

tw

On Wed, Apr 30, 2008 at 9:19 PM, Tony [EMAIL PROTECTED] wrote:
 using that, chr(13)chr(10) produces this:

  Tony Weeg and Lily Weeg210 South Baptist Street Salisbury, Maryland, 21801

  one line.

  :(



  On Wed, Apr 30, 2008 at 9:17 PM, Tony [EMAIL PROTECTED] wrote:
   yes, sadly.
  
tw
  
  
On Wed, Apr 30, 2008 at 9:01 PM, Cutter (CFRelated)
[EMAIL PROTECTED] wrote:
 Have you tried #chr(13)##chr(10)# yet?

  Steve Cutter Blades
  Adobe Certified Professional
  Advanced Macromedia ColdFusion MX 7 Developer
  _
  http://blog.cutterscrossing.com


  Tony wrote:
   Kennedy and Carlos Weeg\n309 Middle Blvd\nSalisbury, Maryland, 21801
  
   is what it puts in the pdf
  
   :(  wtf
  
   tw
  
   On Wed, Apr 30, 2008 at 8:32 PM, Tony [EMAIL PROTECTED] wrote:
   in the text of the xml?
  
nope, but i shall right now...
  
thx
good idea.
  
  
On Wed, Apr 30, 2008 at 6:41 PM, Paul Hastings [EMAIL PROTECTED] 
 wrote:
 Tony wrote:
   i need to put cr/lf in some pdf form fields that i am 
 populating.

  have you tried \n?



  
  

  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304559
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4