0

/t5/coldfusion-discussions/dynamic-flash-paper/td-p/1072672
Sep 22, 2006
Sep 22, 2006
Copy link to clipboard
Copied
Does Flash Paper support dynamically generating a flash paper
from Cold Fusion queries? If so, how is it done and what tools do
you need to do it? I want the user to select records they wish to
assemble on the fly into printable flash paper. I'm hoping that a
flash paper template (header graphics, etc.) could reside on the
server and query could populate the body.
Imagine select blog entries and assembling them into a printable flash paper to get an idea of what I'd like to do.
I'm new to Flash Paper and I'm just trying to assess CF integration capability at this point. If someone has a demo example of a form generating a flash paper, that would be cool.
Thanks!
Don
Imagine select blog entries and assembling them into a printable flash paper to get an idea of what I'd like to do.
I'm new to Flash Paper and I'm just trying to assess CF integration capability at this point. If someone has a demo example of a form generating a flash paper, that would be cool.
Thanks!
Don
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer

Sep 23, 2006
Sep 23, 2006
Thanks to all of you. This will be a big help on my NASA
project.
Don
Don

Guest
AUTHOR
/t5/coldfusion-discussions/dynamic-flash-paper/m-p/1072673#M96362
Sep 22, 2006
Sep 22, 2006
Copy link to clipboard
Copied
One other thing. Can CF pull in images into flash paper too?
In short, I guess I'm asking if a Cold Fusion template (.cfm) can
pull content in and be output as dynamic flash paper.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
/t5/coldfusion-discussions/dynamic-flash-paper/m-p/1072674#M96363
Sep 22, 2006
Sep 22, 2006
Copy link to clipboard
Copied
The tools that you will need to generate dynamic flash paper
with the
current versions of CF.
<cfdocument type="flashpaper">
<!-- CFML & HTML TO GENERATE CONTENT -->
</cfdocument>
current versions of CF.
<cfdocument type="flashpaper">
<!-- CFML & HTML TO GENERATE CONTENT -->
</cfdocument>
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

/t5/coldfusion-discussions/dynamic-flash-paper/m-p/1072677#M96366
Sep 23, 2006
Sep 23, 2006
Copy link to clipboard
Copied
Thanks to all of you. This will be a big help on my NASA
project.
Don
Don
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
/t5/coldfusion-discussions/dynamic-flash-paper/m-p/1072675#M96364
Sep 22, 2006
Sep 22, 2006
Copy link to clipboard
Copied
To elaborate on Ian's answer, you can only do this on version
7 or higher,
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
/t5/coldfusion-discussions/dynamic-flash-paper/m-p/1072676#M96365
Sep 22, 2006
Sep 22, 2006
Copy link to clipboard
Copied
version 7.0 only allows HTML/CFML code to be renderred to
Flashpaper.
<cfdocument format="flashpaper">
<!-- CFML & HTML TO GENERATE CONTENT -->
</cfdocument>
version 7.0.1/7.0.2 adds some new attributes like src,srcfile,mimetype using
which we can render .doc / .xls /.pdf to Flashpaper.
<cfdocument format="flashpaper" src=" http://localhost/pdf.pdf" mimetype =
"application/pdf">
</cfdocument>
Also .doc / .xls /.pdf to Flashpaper. can be done through a com object
FlashPaperConnect.dll, provided that macromedia contribute is installed on
cf server and that dll is registered successfully.
<cfobject type="com" name="FlashPaper" class="FlashPaperConnect2.object.2"
action="create">
<cfset FlashPaper.BeginConversion('D:\doc.doc','doc.swf',0,210,297)>
Darshan Oza.
Technical Associate Automated Workflow Pvt. Ltd. 14/1, MEG Officers' Colony,
Banaswadi Main Road, Bangalore - 56 00 33. ) : +91 93438 68628 ( : 080 2546
7241 Ê : 080 2549 0576 * : darshan@aworkflow.com Transforming the Way People
Work.
<cfdocument format="flashpaper">
<!-- CFML & HTML TO GENERATE CONTENT -->
</cfdocument>
version 7.0.1/7.0.2 adds some new attributes like src,srcfile,mimetype using
which we can render .doc / .xls /.pdf to Flashpaper.
<cfdocument format="flashpaper" src=" http://localhost/pdf.pdf" mimetype =
"application/pdf">
</cfdocument>
Also .doc / .xls /.pdf to Flashpaper. can be done through a com object
FlashPaperConnect.dll, provided that macromedia contribute is installed on
cf server and that dll is registered successfully.
<cfobject type="com" name="FlashPaper" class="FlashPaperConnect2.object.2"
action="create">
<cfset FlashPaper.BeginConversion('D:\doc.doc','doc.swf',0,210,297)>
Darshan Oza.
Technical Associate Automated Workflow Pvt. Ltd. 14/1, MEG Officers' Colony,
Banaswadi Main Road, Bangalore - 56 00 33. ) : +91 93438 68628 ( : 080 2546
7241 Ê : 080 2549 0576 * : darshan@aworkflow.com Transforming the Way People
Work.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

