Folded leaflet

Upload your leaflet (2 pages)

One landscape A4 page per side: outer spread first, inner spread second. The fold you picked sets how much clearance your text needs.

Try it

  1. Upload the two-page tri-fold sample, it passes.
  2. Try the one-page file: a leaflet needs both sides, and the finding says so.
  3. Switch from half fold to tri fold and see the safe zone tighten.

Sample files

Folding is where customer files most often go wrong. Two landscape spreads, always; and the fold you pick sets how much clearance your text needs from the creases.

Change any option and Filecheck re-checks the same file without re-uploading. Add ?fcdebug=1 to the URL to see what it is told about your selections.

How this page is wired

The Filecheck element owns the page; the Print Options form reacts over its public Page API. The blueprint (one JSON document) still declares both: the options with their prices, and the inline Filecheck workflow this page runs.

intake.on('status', s => {
  po.setFile(factsOf(s));          // facts reprice the form
  s.canProceed ? po.releaseHold('filecheck')
               : po.addHold('filecheck');
});
po.addEventListener('change', e =>
  intake.setContext(contextOf(e))); // selections re-check the file

View the raw blueprint + workflow.