Jump to content

JDF file and Create Resource Rule


dreimer

Recommended Posts

I don't understand the question. You can use any kinds of rules you want in a job which is creating a JDF file. Just check the "Make JDF/JMF File" box on the JDF tab of the Composition Settings dialog. The job composes exactly the same whether this box is checked or not; it just does an extra post-processing step at the end to create a JDF file which references the main output file (and then also submits the JDF if you have the "Submit to Device" box checked).
Link to comment
Share on other sites

I'm trying to create a template that I can send straight to my Indigo. If I compose to PDF it takes way to long to rip so I was hoping to do it a different way and don't know much about it.

 

 

Also, my job is a variable two page PDF that the background switches based on the data. I thought I had a rule to assign pages as well but my overflow isn't working correct. Is there an easy way to pull in both pages of the PDF without splitting the all the PDF's into two pages?

 

Thanks for any help.

Link to comment
Share on other sites

I'm trying to create a template that I can send straight to my Indigo. If I compose to PDF it takes way to long to rip so I was hoping to do it a different way and don't know much about it.

JDF probably won't help. Remember that JDF isn't really a different output format. You're still composing to PDF or PostScript or whatever format you select on the Output tab. JDF is just a job submission workflow which wraps the output in a JMF file and, well, submits it. (It also allows some finishing options to be specified.) The RIP still has to process the output file in whatever format you select.

 

If you really want the job to rip faster, I would try composing to an output format that's optimized for VDP, or to one which is natively supported by your press. In the case of Indigo, JLYT is the native format.

Also, my job is a variable two page PDF that the background switches based on the data. I thought I had a rule to assign pages as well but my overflow isn't working correct. Is there an easy way to pull in both pages of the PDF without splitting the all the PDF's into two pages?

This is a completely different question which has nothing to do with JDF at all. I would ask that in a different thread. But generally, if you have a two-page PDF you need to bring in, you don't need Overflow pages. You just need two Body pages with graphic frames, and two graphic rules, each of which calls Resource or CreateResource, and one of which sets the page number to two, like so:

var r = CreateResource("filename");
r.pagenumber = 2; // <- only do this for the second page
return r;

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...