[cfaussie] Re: OT: LiveCycle Problem

2008-09-18 Thread Rae Buerckner
Hi Claude,

In the object you have stored in the object library, are the bindings also
stored with the object or have you left it unbound.

In the new form make sure the form properties are set to interactive form
and that the preview is set to dynamic pdf.

You will also need to setup a new data connection in the data view tab.  Not
having these things set when you try to drag and drop across could be
causing issues.

Cheers,

R

On Fri, Sep 19, 2008 at 3:11 PM, Claude Raiola <[EMAIL PROTECTED]>wrote:

> Hi,
>
> I am working with life-cycle to create interactive pdf forms
>
> I am creating an interactive pdf form to be used within a CF application. I
> am wanting to make the drop down boxes in the form dynamic calling the data
> from the appropriate sql table
>
> When i create a data binding on a blank form which is connected to my sql
> dbase the drop down list populates from the data set specified in the
> binding query and all works well pdf displays correctly with select box
> displaying the correct options taken from the sql table specified etc
>
> However, when i repeat the process using me existing pdf form when i drag
> the data drop down object from the custom objects panel i get an error
> message saying Part of this object cannot be used in forms with pdf art work
>
> It places the drop down object in the form however it does not allow me to
> click on the list items link in the fields tab of the object palette and the
> show dynamic properties option in the object palette menu is greyed out
>
> How do i work around this pdf artwork error message which is limiting my
> functionality of using dynamic data
>
>
> Regards
>
> Claude Raiola
> B.Econ (Acc), B.Hot.Mngt.
>
> Websites:
> www.AustralianAccommodation.com
> www.SAMARIS.NET
> www.WebSiteSolutions.com.au
> Mobile: 0414 228 948
>
> *On Fri Sep 19 12:21 , 'Chris Velevitch' sent:
>
> *
>
>
> from:
>
> Katrina Gabriel, a Business Partner at Talent International
>
>
> Hi Chris,
>
> I am currently resourcing for an Adobe Livecycle developer for one of
> my clients and would be keen to have a chat and see whether you would
> be interested, or whether you know someone who might be.
>
> I look forward to hearing from you call 9223 9855.
>
> Regards,
> Katrina Gabriel
>
> Note: Katrina also indicated they are also looking for a CF developer
> (and I presuming it's also in Sydney)
>
>
> Chris
> --
> Chris Velevitch
> Manager - Adobe Platform Users Group, Sydney
> m: 0415 469 095
> www.apugs.org.au
>
> Adobe Platform Users Group, Sydney
> September meeting: It's Going To Be Brilliant
> Date: Mon 29th September 6pm for 6:30 start
> Details and RSVP on 
> http://apugs2008september.eventbrite.com
>
>
>
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Filtering out folders.

2008-09-18 Thread Joris de Beer

I'm using cfdirectory to recursively list the contents of a folder  
structure.

Unfortunately there are a lot of .svn folders in there and they are  
also getting returned. Anyone have a tip for filtering out folders?  
Currently I'm thinking of doing a query of queries to remove them from  
the result set.




SELECT * FROM BannerFolders WHERE NAME NOT LIKE '%.svn%'




Joris
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Joris de Beer

There's a command line tool called Webshot available from:
http://www.websitescreenshots.com/

For the Mac Heads use:
http://www.paulhammond.org/webkit2png/

For linux you want KHTML2png:

http://khtml2png.sourceforge.net/

On 19/09/2008, at 3:30 PM, Maximilian Nyman wrote:

>
> I've built a brochure/pamphlet generator for a Interior company in
> Sweden using iText - www.lowagie.com/iText (which is the underlying
> engine to cfdocuments).
> It's a Java library, so I guess you need to be fairly comfortable
> coding Java in CF.
> But it worked out great for us.
>
> But now, when reading up a bit more on the HTML to PDF capabilities of
> iText it seam like there's a reason why cfdocument is not perfect,
> because iText isn't.
> http://itext.ugent.be/library/question.php?id=40
>
> So I guess this whole post of mine was just pointless - Sorry about  
> that :(
>
>
> /Max
>
>
>
> On Fri, Sep 19, 2008 at 12:00 PM, Steve Onnis  
> <[EMAIL PROTECTED]> wrote:
>>
>> Cfdocument is soo flaky when it comes to this so im not using it.   
>> I am
>> going for a command line exe which will give me an exact screen  
>> shot of the
>> site.  Then for the PDF I am going to load the image into the  
>> cfdocument
>> tag.
>>
>> -Original Message-
>> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]  
>> On Behalf
>> Of Dale Fraser
>> Sent: Thursday, 18 September 2008 3:43 PM
>> To: cfaussie@googlegroups.com
>> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>>
>>
>> http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
>> s
>>
>> Regards
>> Dale Fraser
>> http://learncf.com
>> http://flexcf.com
>>
>>
>>
>> -Original Message-
>> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]  
>> On Behalf
>> Of [EMAIL PROTECTED]
>> Sent: Thursday, 18 September 2008 3:35 PM
>> To: cfaussie@googlegroups.com
>> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>>
>>
>> I can't remember any offhand, but there are also various command  
>> line tools
>> and web-services that will create an image from a url. Probably for  
>> PDF too,
>> if your CSS is too much for CFDocument.
>>
>> Blair
>>
>> On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>>>
>>> No no
>>>
>>> The client wants a function for the user to be able to save a copy  
>>> of
>>> the page as a PDF or an image.  Just looking at ways to do it.
>>>
>>> -Original Message-
>>> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]  
>>> On
>> Behalf
>>> Of Barry Beattie
>>> Sent: Thursday, 18 September 2008 3:27 PM
>>> To: cfaussie@googlegroups.com
>>> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>>>
>>>
>>> or (following on from Chris)
>>>
>>> screen-scrape with CFHTTP and *then* use cfdocument.
>>>
>>> (I hope this isn't checking how a design looks on different  
>>> operating
>>> systems or browsers ... that's a totally different kettle of fish)
>>>
>>>
>>>
>>> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
>> <[EMAIL PROTECTED]>
>>> wrote:

 On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED] 
 >
>>> wrote:
> I have a requirement to generate a PDF and/or JPG of a website  
> page.
> Can anyone provide and recommendations to achieve this reliably?

 ...


 Chris
 --
 Chris Velevitch
 Manager - Adobe Platform Users Group, Sydney
 m: 0415 469 095
 www.apugs.org.au

 Adobe Platform Users Group, Sydney
 September meeting: It's Going To Be Brilliant
 Date: Mon 29th September 6pm for 6:30 start Details and RSVP on
 http://apugs2008september.eventbrite.com
>
> >


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Maximilian Nyman

I've built a brochure/pamphlet generator for a Interior company in
Sweden using iText - www.lowagie.com/iText (which is the underlying
engine to cfdocuments).
It's a Java library, so I guess you need to be fairly comfortable
coding Java in CF.
But it worked out great for us.

But now, when reading up a bit more on the HTML to PDF capabilities of
iText it seam like there's a reason why cfdocument is not perfect,
because iText isn't.
http://itext.ugent.be/library/question.php?id=40

So I guess this whole post of mine was just pointless - Sorry about that :(


/Max



On Fri, Sep 19, 2008 at 12:00 PM, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> Cfdocument is soo flaky when it comes to this so im not using it.  I am
> going for a command line exe which will give me an exact screen shot of the
> site.  Then for the PDF I am going to load the image into the cfdocument
> tag.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> Of Dale Fraser
> Sent: Thursday, 18 September 2008 3:43 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
> s
>
> Regards
> Dale Fraser
> http://learncf.com
> http://flexcf.com
>
>
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
> Of [EMAIL PROTECTED]
> Sent: Thursday, 18 September 2008 3:35 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> I can't remember any offhand, but there are also various command line tools
> and web-services that will create an image from a url. Probably for PDF too,
> if your CSS is too much for CFDocument.
>
> Blair
>
> On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>>
>> No no
>>
>> The client wants a function for the user to be able to save a copy of
>> the page as a PDF or an image.  Just looking at ways to do it.
>>
>> -Original Message-
>> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
> Behalf
>> Of Barry Beattie
>> Sent: Thursday, 18 September 2008 3:27 PM
>> To: cfaussie@googlegroups.com
>> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>>
>>
>> or (following on from Chris)
>>
>> screen-scrape with CFHTTP and *then* use cfdocument.
>>
>> (I hope this isn't checking how a design looks on different operating
>> systems or browsers ... that's a totally different kettle of fish)
>>
>>
>>
>> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
> <[EMAIL PROTECTED]>
>> wrote:
>>>
>>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
>> wrote:
 I have a requirement to generate a PDF and/or JPG of a website page.
 Can anyone provide and recommendations to achieve this reliably?
>>>
>>> ...
>>>
>>>
>>> Chris
>>> --
>>> Chris Velevitch
>>> Manager - Adobe Platform Users Group, Sydney
>>> m: 0415 469 095
>>> www.apugs.org.au
>>>
>>> Adobe Platform Users Group, Sydney
>>> September meeting: It's Going To Be Brilliant
>>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on
>>> http://apugs2008september.eventbrite.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Dale Fraser

Calling CFDOCUMENT flaky is wrong Steve,

It one day hopes to be flaky.

Let us know what tool you end up using for the image, would be interested.

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Friday, 19 September 2008 12:01 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


Cfdocument is soo flaky when it comes to this so im not using it.  I am
going for a command line exe which will give me an exact screen shot of the
site.  Then for the PDF I am going to load the image into the cfdocument
tag.

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 18 September 2008 3:43 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
s

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, 18 September 2008 3:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


I can't remember any offhand, but there are also various command line tools
and web-services that will create an image from a url. Probably for PDF too,
if your CSS is too much for CFDocument.

Blair

On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> No no
>
> The client wants a function for the user to be able to save a copy of 
> the page as a PDF or an image.  Just looking at ways to do it.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Barry Beattie
> Sent: Thursday, 18 September 2008 3:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> or (following on from Chris)
>
> screen-scrape with CFHTTP and *then* use cfdocument.
>
> (I hope this isn't checking how a design looks on different operating 
> systems or browsers ... that's a totally different kettle of fish)
>
>
>
> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
<[EMAIL PROTECTED]>
> wrote:
>>
>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
> wrote:
>>> I have a requirement to generate a PDF and/or JPG of a website page.
>>> Can anyone provide and recommendations to achieve this reliably?
>>
>> ...
>>
>>
>> Chris
>> --
>> Chris Velevitch
>> Manager - Adobe Platform Users Group, Sydney
>> m: 0415 469 095
>> www.apugs.org.au
>>
>> Adobe Platform Users Group, Sydney
>> September meeting: It's Going To Be Brilliant
>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on 
>> http://apugs2008september.eventbrite.com
>>
>> >
>>
>
>
>
>
>
> >
>









--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] OT: LiveCycle Problem

2008-09-18 Thread Claude Raiola


Hi,

I am working with life-cycle to create interactive pdf forms

I am creating an interactive pdf form to be used within a CF application. I am wanting to make the drop down boxes in the form dynamic calling the data from the appropriate sql table

When i create a data binding on a blank form which is connected to my sql dbase the drop down list populates from the data set specified in the binding query and all works well pdf displays correctly with select box displaying the correct options taken from the sql table specified etc

However, when i repeat the process using me existing pdf form when i drag the data drop down object from the custom objects panel i get an error message saying Part of this object cannot be used in forms with pdf art work

It places the drop down object in the form however it does not allow me to click on the list items link in the fields tab of the object palette and the show dynamic properties option in the object palette menu is greyed out

How do i work around this pdf artwork error message which is limiting my functionality of using dynamic data


Regards 

Claude Raiola 
B.Econ (Acc), B.Hot.Mngt. 

Websites: 
www.AustralianAccommodation.com 
www.SAMARIS.NET 
www.WebSiteSolutions.com.au 
Mobile: 0414 228 948 

On Fri Sep 19 12:21 , 'Chris Velevitch' <[EMAIL PROTECTED]>sent:



from:

Katrina Gabriel, a Business Partner at Talent International


Hi Chris,

I am currently resourcing for an Adobe Livecycle developer for one of
my clients and would be keen to have a chat and see whether you would
be interested, or whether you know someone who might be.

I look forward to hearing from you call 9223 9855.

Regards,
Katrina Gabriel

Note: Katrina also indicated they are also looking for a CF developer
(and I presuming it's also in Sydney)


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
September meeting: It's Going To Be Brilliant
Date: Mon 29th September 6pm for 6:30 start
Details and RSVP on http://apugs2008september.eventbrite.com






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "cfaussie" group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie?hl=en  -~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Steve Onnis

Cfdocument is soo flaky when it comes to this so im not using it.  I am
going for a command line exe which will give me an exact screen shot of the
site.  Then for the PDF I am going to load the image into the cfdocument
tag.

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 18 September 2008 3:43 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
s

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, 18 September 2008 3:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


I can't remember any offhand, but there are also various command line tools
and web-services that will create an image from a url. Probably for PDF too,
if your CSS is too much for CFDocument.

Blair

On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> No no
>
> The client wants a function for the user to be able to save a copy of 
> the page as a PDF or an image.  Just looking at ways to do it.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Barry Beattie
> Sent: Thursday, 18 September 2008 3:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> or (following on from Chris)
>
> screen-scrape with CFHTTP and *then* use cfdocument.
>
> (I hope this isn't checking how a design looks on different operating 
> systems or browsers ... that's a totally different kettle of fish)
>
>
>
> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
<[EMAIL PROTECTED]>
> wrote:
>>
>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
> wrote:
>>> I have a requirement to generate a PDF and/or JPG of a website page.
>>> Can anyone provide and recommendations to achieve this reliably?
>>
>> ...
>>
>>
>> Chris
>> --
>> Chris Velevitch
>> Manager - Adobe Platform Users Group, Sydney
>> m: 0415 469 095
>> www.apugs.org.au
>>
>> Adobe Platform Users Group, Sydney
>> September meeting: It's Going To Be Brilliant
>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on 
>> http://apugs2008september.eventbrite.com
>>
>> >
>>
>
>
>
>
>
> >
>







--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] FWD: Sydney LiveCycle Developer position (also separate CF position)

2008-09-18 Thread Chris Velevitch

from:

Katrina Gabriel, a Business Partner at Talent International


Hi Chris,

I am currently resourcing for an Adobe Livecycle developer for one of
my clients and would be keen to have a chat and see whether you would
be interested, or whether you know someone who might be.

I look forward to hearing from you call 9223 9855.

Regards,
Katrina Gabriel

Note: Katrina also indicated they are also looking for a CF developer
(and I presuming it's also in Sydney)


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
September meeting: It's Going To Be Brilliant
Date: Mon 29th September 6pm for 6:30 start
Details and RSVP on http://apugs2008september.eventbrite.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Help selling CF as a solution vs. PHP

2008-09-18 Thread Rae Buerckner
http://www.webbschofield.com/index.cfm/2008/9/15/ColdFusion-Evangelism-Kit


On Fri, Sep 19, 2008 at 10:09 AM, Mark Picker <[EMAIL PROTECTED]>wrote:

>
> Hi Rob,
>
> Even if you don't meet the conditions for the free copies of CF,
> certainly worth investigating the Educational licences.
>
> I don't recall what the initial education purchase price is, but the
> subscription renewals (for standard) work out at around $153 per
> year.  Also that is only purchasing a few renewals at a time, so
> placing an order for 50 odd would put you in a position to negotiate a
> price with Adobe.
>
> If you can't get either the free or educational licences, I couldn't
> encourage you more to contact Adobe to discuss alternatives to 50 odd
> separate licencesyou will get a huge discount.
>
> Cheers
> Mark
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Dale Fraser

Steve,

I tried it

http://code.fraser.id.au/dmf.cfm

Works ok, I just don't think it's clever enough to render your complex div
layout. You might need a dumb table version and point cfdocument to that
url.

Regards
Dale Fraser
http://learncf.com
http://flexcf.com


-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Friday, 19 September 2008 9:40 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


Which link? 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of CyberAngel
Sent: Friday, 19 September 2008 7:45 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites



This link any good to you, take note of the xml settings in the comments.

Not sure about cfdocument, an example to duplicate would be nice.



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Thursday, 18 September 2008 11:11 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


This actually seems to be an issue with CFDOCUMENT.  I can output the
generated HTML and it does not have the "InvalidTag" replacements in it so
its coming from the CFDOCUMENT process.

Anyone got any ideas?

Steve

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of CyberAngel
Sent: Thursday, 18 September 2008 6:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites




Is caused by script protection Steve... At least that is what I remember..



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Thursday, 18 September 2008 5:26 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


This is what it is doing to the document


http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>


AGEST Super



http://dev.agest.com.au"; />

@import url("css/primary-menu.css");
@import url("css/default.css");



@import url("css/print.css");

http://dev.agest.com.au:80/scripts/mootools-1.2-core.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/mootools-1.2-more.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/generic.js";  ...
occured during the rendering process of this document.




What the??? 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 18 September 2008 3:43 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
s

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, 18 September 2008 3:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


I can't remember any offhand, but there are also various command line tools
and web-services that will create an image from a url. Probably for PDF too,
if your CSS is too much for CFDocument.

Blair

On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> No no
>
> The client wants a function for the user to be able to save a copy of 
> the page as a PDF or an image.  Just looking at ways to do it.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Barry Beattie
> Sent: Thursday, 18 September 2008 3:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> or (following on from Chris)
>
> screen-scrape with CFHTTP and *then* use cfdocument.
>
> (I hope this isn't checking how a design looks on different operating 
> systems or browsers ... that's a totally different kettle of fish)
>
>
>
> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
<[EMAIL PROTECTED]>
> wrote:
>>
>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
> wrote:
>>> I have a requirement to generate a PDF and/or JPG of a website page.
>>> Can anyone provide and recommendations to achieve this reliably?
>>
>> ...
>>
>>
>> Chris
>> --
>> Chris Velevitch
>> Manager - Adobe Platform Users Group, Sydney
>> m: 0415 469 095
>> www.apugs.org.au
>>
>> Adobe Platform Users Group, Sydney
>> September meeting: It's Going To Be Brilliant
>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on 
>> http://apugs2008september.eventbrite.com
>>
>> >
>>
>
>
>
>
>
> >
>





















--~--~-~--~~~---~--~~
You received this me

[cfaussie] Re: Help selling CF as a solution vs. PHP

2008-09-18 Thread Mark Picker

Hi Rob,

Even if you don't meet the conditions for the free copies of CF,
certainly worth investigating the Educational licences.

I don't recall what the initial education purchase price is, but the
subscription renewals (for standard) work out at around $153 per
year.  Also that is only purchasing a few renewals at a time, so
placing an order for 50 odd would put you in a position to negotiate a
price with Adobe.

If you can't get either the free or educational licences, I couldn't
encourage you more to contact Adobe to discuss alternatives to 50 odd
separate licencesyou will get a huge discount.

Cheers
Mark


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Steve Onnis

Which link? 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of CyberAngel
Sent: Friday, 19 September 2008 7:45 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites



This link any good to you, take note of the xml settings in the comments.

Not sure about cfdocument, an example to duplicate would be nice.



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Thursday, 18 September 2008 11:11 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


This actually seems to be an issue with CFDOCUMENT.  I can output the
generated HTML and it does not have the "InvalidTag" replacements in it so
its coming from the CFDOCUMENT process.

Anyone got any ideas?

Steve

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of CyberAngel
Sent: Thursday, 18 September 2008 6:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites




Is caused by script protection Steve... At least that is what I remember..



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Thursday, 18 September 2008 5:26 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


This is what it is doing to the document


http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>


AGEST Super



http://dev.agest.com.au"; />

@import url("css/primary-menu.css");
@import url("css/default.css");



@import url("css/print.css");

http://dev.agest.com.au:80/scripts/mootools-1.2-core.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/mootools-1.2-more.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/generic.js";  ...
occured during the rendering process of this document.




What the??? 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 18 September 2008 3:43 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
s

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, 18 September 2008 3:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


I can't remember any offhand, but there are also various command line tools
and web-services that will create an image from a url. Probably for PDF too,
if your CSS is too much for CFDocument.

Blair

On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> No no
>
> The client wants a function for the user to be able to save a copy of 
> the page as a PDF or an image.  Just looking at ways to do it.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Barry Beattie
> Sent: Thursday, 18 September 2008 3:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> or (following on from Chris)
>
> screen-scrape with CFHTTP and *then* use cfdocument.
>
> (I hope this isn't checking how a design looks on different operating 
> systems or browsers ... that's a totally different kettle of fish)
>
>
>
> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
<[EMAIL PROTECTED]>
> wrote:
>>
>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
> wrote:
>>> I have a requirement to generate a PDF and/or JPG of a website page.
>>> Can anyone provide and recommendations to achieve this reliably?
>>
>> ...
>>
>>
>> Chris
>> --
>> Chris Velevitch
>> Manager - Adobe Platform Users Group, Sydney
>> m: 0415 469 095
>> www.apugs.org.au
>>
>> Adobe Platform Users Group, Sydney
>> September meeting: It's Going To Be Brilliant
>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on 
>> http://apugs2008september.eventbrite.com
>>
>> >
>>
>
>
>
>
>
> >
>



















--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread CyberAngel


This link any good to you, take note of the xml settings in the comments.

Not sure about cfdocument, an example to duplicate would be nice.



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Thursday, 18 September 2008 11:11 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


This actually seems to be an issue with CFDOCUMENT.  I can output the
generated HTML and it does not have the "InvalidTag" replacements in it so
its coming from the CFDOCUMENT process.

Anyone got any ideas?

Steve

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of CyberAngel
Sent: Thursday, 18 September 2008 6:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites




Is caused by script protection Steve... At least that is what I remember..



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Thursday, 18 September 2008 5:26 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


This is what it is doing to the document


http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>


AGEST Super



http://dev.agest.com.au"; />

@import url("css/primary-menu.css");
@import url("css/default.css");



@import url("css/print.css");

http://dev.agest.com.au:80/scripts/mootools-1.2-core.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/mootools-1.2-more.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/generic.js";  ...
occured during the rendering process of this document.




What the??? 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 18 September 2008 3:43 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
s

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, 18 September 2008 3:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


I can't remember any offhand, but there are also various command line tools
and web-services that will create an image from a url. Probably for PDF too,
if your CSS is too much for CFDocument.

Blair

On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> No no
>
> The client wants a function for the user to be able to save a copy of 
> the page as a PDF or an image.  Just looking at ways to do it.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Barry Beattie
> Sent: Thursday, 18 September 2008 3:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> or (following on from Chris)
>
> screen-scrape with CFHTTP and *then* use cfdocument.
>
> (I hope this isn't checking how a design looks on different operating 
> systems or browsers ... that's a totally different kettle of fish)
>
>
>
> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
<[EMAIL PROTECTED]>
> wrote:
>>
>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
> wrote:
>>> I have a requirement to generate a PDF and/or JPG of a website page.
>>> Can anyone provide and recommendations to achieve this reliably?
>>
>> ...
>>
>>
>> Chris
>> --
>> Chris Velevitch
>> Manager - Adobe Platform Users Group, Sydney
>> m: 0415 469 095
>> www.apugs.org.au
>>
>> Adobe Platform Users Group, Sydney
>> September meeting: It's Going To Be Brilliant
>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on 
>> http://apugs2008september.eventbrite.com
>>
>> >
>>
>
>
>
>
>
> >
>















--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Steve Onnis

This actually seems to be an issue with CFDOCUMENT.  I can output the
generated HTML and it does not have the "InvalidTag" replacements in it so
its coming from the CFDOCUMENT process.

Anyone got any ideas?

Steve

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of CyberAngel
Sent: Thursday, 18 September 2008 6:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites




Is caused by script protection Steve... At least that is what I remember..



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Thursday, 18 September 2008 5:26 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


This is what it is doing to the document


http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>


AGEST Super



http://dev.agest.com.au"; />

@import url("css/primary-menu.css");
@import url("css/default.css");



@import url("css/print.css");

http://dev.agest.com.au:80/scripts/mootools-1.2-core.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/mootools-1.2-more.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/generic.js";  ...
occured during the rendering process of this document.




What the??? 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 18 September 2008 3:43 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
s

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, 18 September 2008 3:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


I can't remember any offhand, but there are also various command line tools
and web-services that will create an image from a url. Probably for PDF too,
if your CSS is too much for CFDocument.

Blair

On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> No no
>
> The client wants a function for the user to be able to save a copy of 
> the page as a PDF or an image.  Just looking at ways to do it.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Barry Beattie
> Sent: Thursday, 18 September 2008 3:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> or (following on from Chris)
>
> screen-scrape with CFHTTP and *then* use cfdocument.
>
> (I hope this isn't checking how a design looks on different operating 
> systems or browsers ... that's a totally different kettle of fish)
>
>
>
> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
<[EMAIL PROTECTED]>
> wrote:
>>
>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
> wrote:
>>> I have a requirement to generate a PDF and/or JPG of a website page.
>>> Can anyone provide and recommendations to achieve this reliably?
>>
>> ...
>>
>>
>> Chris
>> --
>> Chris Velevitch
>> Manager - Adobe Platform Users Group, Sydney
>> m: 0415 469 095
>> www.apugs.org.au
>>
>> Adobe Platform Users Group, Sydney
>> September meeting: It's Going To Be Brilliant
>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on 
>> http://apugs2008september.eventbrite.com
>>
>> >
>>
>
>
>
>
>
> >
>













--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Steve Onnis

I have it disabled in the cfadmin so I don't know why its doing it 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of CyberAngel
Sent: Thursday, 18 September 2008 6:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites




Is caused by script protection Steve... At least that is what I remember..



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Thursday, 18 September 2008 5:26 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


This is what it is doing to the document


http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>


AGEST Super



http://dev.agest.com.au"; />

@import url("css/primary-menu.css");
@import url("css/default.css");



@import url("css/print.css");

http://dev.agest.com.au:80/scripts/mootools-1.2-core.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/mootools-1.2-more.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/generic.js";  ...
occured during the rendering process of this document.




What the??? 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 18 September 2008 3:43 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
s

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, 18 September 2008 3:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


I can't remember any offhand, but there are also various command line tools
and web-services that will create an image from a url. Probably for PDF too,
if your CSS is too much for CFDocument.

Blair

On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> No no
>
> The client wants a function for the user to be able to save a copy of 
> the page as a PDF or an image.  Just looking at ways to do it.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Barry Beattie
> Sent: Thursday, 18 September 2008 3:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> or (following on from Chris)
>
> screen-scrape with CFHTTP and *then* use cfdocument.
>
> (I hope this isn't checking how a design looks on different operating 
> systems or browsers ... that's a totally different kettle of fish)
>
>
>
> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
<[EMAIL PROTECTED]>
> wrote:
>>
>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
> wrote:
>>> I have a requirement to generate a PDF and/or JPG of a website page.
>>> Can anyone provide and recommendations to achieve this reliably?
>>
>> ...
>>
>>
>> Chris
>> --
>> Chris Velevitch
>> Manager - Adobe Platform Users Group, Sydney
>> m: 0415 469 095
>> www.apugs.org.au
>>
>> Adobe Platform Users Group, Sydney
>> September meeting: It's Going To Be Brilliant
>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on 
>> http://apugs2008september.eventbrite.com
>>
>> >
>>
>
>
>
>
>
> >
>













--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread CyberAngel



Is caused by script protection Steve... At least that is what I remember..



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Thursday, 18 September 2008 5:26 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


This is what it is doing to the document


http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>


AGEST Super



http://dev.agest.com.au"; />

@import url("css/primary-menu.css");
@import url("css/default.css");



@import url("css/print.css");

http://dev.agest.com.au:80/scripts/mootools-1.2-core.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/mootools-1.2-more.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/generic.js";  ...
occured during the rendering process of this document.




What the??? 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 18 September 2008 3:43 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
s

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, 18 September 2008 3:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


I can't remember any offhand, but there are also various command line tools
and web-services that will create an image from a url. Probably for PDF too,
if your CSS is too much for CFDocument.

Blair

On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> No no
>
> The client wants a function for the user to be able to save a copy of 
> the page as a PDF or an image.  Just looking at ways to do it.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Barry Beattie
> Sent: Thursday, 18 September 2008 3:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> or (following on from Chris)
>
> screen-scrape with CFHTTP and *then* use cfdocument.
>
> (I hope this isn't checking how a design looks on different operating 
> systems or browsers ... that's a totally different kettle of fish)
>
>
>
> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
<[EMAIL PROTECTED]>
> wrote:
>>
>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
> wrote:
>>> I have a requirement to generate a PDF and/or JPG of a website page.
>>> Can anyone provide and recommendations to achieve this reliably?
>>
>> ...
>>
>>
>> Chris
>> --
>> Chris Velevitch
>> Manager - Adobe Platform Users Group, Sydney
>> m: 0415 469 095
>> www.apugs.org.au
>>
>> Adobe Platform Users Group, Sydney
>> September meeting: It's Going To Be Brilliant
>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on 
>> http://apugs2008september.eventbrite.com
>>
>> >
>>
>
>
>
>
>
> >
>









--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Steve Onnis

This is what it is doing to the document


http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>


AGEST Super



http://dev.agest.com.au"; />

@import url("css/primary-menu.css");
@import url("css/default.css");



@import url("css/print.css");

http://dev.agest.com.au:80/scripts/mootools-1.2-core.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/mootools-1.2-more.js";
type="text/javascript">
http://dev.agest.com.au:80/scripts/generic.js";  ...
occured during the rendering process of this document.




What the??? 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 18 September 2008 3:43 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
s

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, 18 September 2008 3:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


I can't remember any offhand, but there are also various command line tools
and web-services that will create an image from a url. Probably for PDF too,
if your CSS is too much for CFDocument.

Blair

On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> No no
>
> The client wants a function for the user to be able to save a copy of 
> the page as a PDF or an image.  Just looking at ways to do it.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Barry Beattie
> Sent: Thursday, 18 September 2008 3:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> or (following on from Chris)
>
> screen-scrape with CFHTTP and *then* use cfdocument.
>
> (I hope this isn't checking how a design looks on different operating 
> systems or browsers ... that's a totally different kettle of fish)
>
>
>
> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
<[EMAIL PROTECTED]>
> wrote:
>>
>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
> wrote:
>>> I have a requirement to generate a PDF and/or JPG of a website page.
>>> Can anyone provide and recommendations to achieve this reliably?
>>
>> ...
>>
>>
>> Chris
>> --
>> Chris Velevitch
>> Manager - Adobe Platform Users Group, Sydney
>> m: 0415 469 095
>> www.apugs.org.au
>>
>> Adobe Platform Users Group, Sydney
>> September meeting: It's Going To Be Brilliant
>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on 
>> http://apugs2008september.eventbrite.com
>>
>> >
>>
>
>
>
>
>
> >
>







--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Steve Onnis

Anyone know what engine it uses to generate the HTML because this aint
working 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Dale Fraser
Sent: Thursday, 18 September 2008 3:43 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


http://www.coldfusionjedi.com/index.cfm/2007/6/13/ColdFusion-8-URL-Thumbnail
s

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, 18 September 2008 3:35 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Generating PDF and JPG images from websites


I can't remember any offhand, but there are also various command line tools
and web-services that will create an image from a url. Probably for PDF too,
if your CSS is too much for CFDocument.

Blair

On 9/18/08, Steve Onnis <[EMAIL PROTECTED]> wrote:
>
> No no
>
> The client wants a function for the user to be able to save a copy of 
> the page as a PDF or an image.  Just looking at ways to do it.
>
> -Original Message-
> From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
> Of Barry Beattie
> Sent: Thursday, 18 September 2008 3:27 PM
> To: cfaussie@googlegroups.com
> Subject: [cfaussie] Re: Generating PDF and JPG images from websites
>
>
> or (following on from Chris)
>
> screen-scrape with CFHTTP and *then* use cfdocument.
>
> (I hope this isn't checking how a design looks on different operating 
> systems or browsers ... that's a totally different kettle of fish)
>
>
>
> On Thu, Sep 18, 2008 at 3:23 PM, Chris Velevitch
<[EMAIL PROTECTED]>
> wrote:
>>
>> On Thu, Sep 18, 2008 at 2:57 PM, Steve Onnis <[EMAIL PROTECTED]>
> wrote:
>>> I have a requirement to generate a PDF and/or JPG of a website page.
>>> Can anyone provide and recommendations to achieve this reliably?
>>
>> ...
>>
>>
>> Chris
>> --
>> Chris Velevitch
>> Manager - Adobe Platform Users Group, Sydney
>> m: 0415 469 095
>> www.apugs.org.au
>>
>> Adobe Platform Users Group, Sydney
>> September meeting: It's Going To Be Brilliant
>> Date: Mon 29th September 6pm for 6:30 start Details and RSVP on 
>> http://apugs2008september.eventbrite.com
>>
>> >
>>
>
>
>
>
>
> >
>







--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---