Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
rottmanja #1
CFdocument on local files
I am working on a paperless transaction system, that will make use of the new
cfdocument tag. How ever I am not using a remote webpage or file. I am using
local files that are run through a process. When I try to run the code below,
all it outputs is the line within the cfdocument tag. Does anyone know how I
can dynamically pull the files and have them displayed as pdf's through the
cfdocument tag.
HEre is the code that I am currently testing.
<cfif cmd is "pdfProcess">
<cfdirectory name="dListDocuments"
directory="#faxPath#"
filter="*.tif">
<cfoutput query="dListDocuments">#name#<br></cfoutput>
<cfdocument
format="pdf"><cfoutput>#faxPath#/#dListDocuments.name#</cfoutput></cfdocument>
</cfif>
rottmanja Guest
-
Network Files Need to Access Local Files
Hi all, I have a web application that will be accessing files from both the network (our servers) and the local computer. It worked great on FP 8... -
Urgent: Online files accessing local files Issue
Hi.. We are working on a online project where we have some 600 MB videos. The complete project is made using flash & HTML. -
cfdocument not saving PDF to disk on non-local machines
Hi guys, Im having abit of trouble using the cfdocument tag. Basically, i have a page of results displayed to the user fine, and if the user... -
Cfdocument and merging PDF files?
Hello, I?m using cfdocument tag to create individual PDF files. I was wondering if there is a way to merge them into a single PDF file in an... -
java.io.FilePermission for CFDOCUMENT PDF files
Our users are getting an error (access denied (example: java.io.FilePermission c:\winnt\fonts\arialbd.ttf read) ) when trying to generate PDF files... -
Dean Harmon #2
Re: CFdocument on local files
CFDocument will render everything inside of it as if it were an HTML page.
So if the images were in an image tag it would work (but not with .tiff's,
you'd need to convert them to a web format)
Dean
"rottmanja" <webforumsuser@macromedia.com> wrote in message
news:d2buu9$922$1@forums.macromedia.com...>I am working on a paperless transaction system, that will make use of the
>new
> cfdocument tag. How ever I am not using a remote webpage or file. I am
> using
> local files that are run through a process. When I try to run the code
> below,
> all it outputs is the line within the cfdocument tag. Does anyone know how
> I
> can dynamically pull the files and have them displayed as pdf's through
> the
> cfdocument tag.
>
> HEre is the code that I am currently testing.
>
> <cfif cmd is "pdfProcess">
> <cfdirectory name="dListDocuments"
> directory="#faxPath#"
> filter="*.tif">
>
> <cfoutput query="dListDocuments">#name#<br></cfoutput>
>
> <cfdocument
> format="pdf"><cfoutput>#faxPath#/#dListDocuments.name#</cfoutput></cfdocument>
> </cfif>
>
Dean Harmon Guest
-
rottmanja #3
Re: CFdocument on local files
I have abandoned the idea of useing cfdocument to manipulate the files. What I
am now trying to do is figure out how to give my web app the functionality of
acrobt writer in a web browser. I have seen it done in a few php applications
but havent been able to figure out how they did it.
rottmanja Guest



Reply With Quote

