I was interested in being able to export data from Coldfusion to Powerpoint. I saw this section on StackOverflow Generating Powerpoint PPT with Coldfusion? which was posted almost 3 years ago. I was hoping there would be something more relevent since then instead of using the Apache POI.

I have tried using the cfcontent tag similar to how you would export to excel, I am able to get ppt to open, but a blank template opens up when I use cfcontent type="application/vnd.ms-powerpoint". Ultimately, I will be using this to try to export charts to a ppt slide. I believe cfcharts with the jpg option is the best solution, although I am currently using FusionCharts on my site itself.

Sorry I'm such a noob, but any suggestions or advice would be greatly appreciated.

Thanks!

link|improve this question

60% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Have you looked into the <cfpresentation /> family of tags? It does exactly what you are looking for, allows you to generate PowerPoint files on the server. http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7910.html

link|improve this answer
That seems to be something that I could use. I see that the <cfpresentation> tag has an attribute of format=ppt. One thing I haven't figured out yet is getting the ppt file to save to my computer from the directory attribute? It seems it saves it locally (which would be the server), so How do I get it? – Chris M Jun 29 '11 at 14:17
1  
once it is generated at the server, you can download it to your own computer either through a link or served from CF using <cfcontent> – Henry Jun 29 '11 at 16:07
1  
Thank you guys, sry i'm such a noob :P – Chris M Jun 29 '11 at 18:25
@Chris M if it was helpful you should mark the answer as correct – Sean Coyne Jun 30 '11 at 15:11
Accepting an answer helps the next person viewing this issue. Click the check mark to do this. – Nate Jul 9 '11 at 13:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.