cancel
Showing results for 
Search instead for 
Did you mean: 
3 Replies
DavidU54339-XRX
FreeFlow Production Workflow Moderator
FreeFlow Production Workflow Moderator

Re: Change MAX print qty on the fly

One could also use the external node to change the quantity-- see attached WF. You'll need to change the .zip extension to .ffc to enable FFCore import. The ffc file was made using 6.2.0.

The interesting part is being able to determine if a job has been pre-imposed. Hopefully, the job name is different in some way.

0 Kudos

Re: Change MAX print qty on the fly


@CJ wrote: 

Trying to figure a way to alter the print qty in a MAX file on the fly conditionally. Have a dozen or so items that come through with a print qty set to 250 for example but the art file submitted is pre-imposed 4up so i really need the final print qty to be 63. Is there anyway to do this? landstaronline


I am looking for the same, Did you found any solution?

0 Kudos
StefanT-Xerox
FreeFlow User

Re: Change MAX print qty on the fly

You could run a script on the hotfolder where you recalculate the quantity and save to a new MAX file, but the easiest way is probably to do this in an External Process in the  workflow. Please see attached script (requires Python).

ext.PNG

The quantity will be calculated by:

quantity = math.ceil(int(sys.argv[3])/4)

where sys.argv[3] is the quantity.

Stefan

CJ
Member
Member

Change MAX print qty on the fly

Trying to figure a way to alter the print qty in a MAX file on the fly conditionally. Have a dozen or so items that come through with a print qty set to 250 for example but the art file submitted is pre-imposed 4up so i really need the final print qty to be 63. Is there anyway to do this?

0 Kudos