Roll-up banner stand

Upload your roll-up artwork (850 × 2150 mm)

The visible area is 850 × 2000 mm; the bottom 150 mm disappears into the cassette, so your file must be 850 × 2150 mm with nothing important in the tail.

Try it

  1. Upload the correct file (with the tail), it passes.
  2. Now the classic mistake: artwork sized to the visible 2000 mm. Rejected, with a finding that explains the tail.
  3. Nothing on this page changes the check; not every product needs the bridge.

Sample files

A fixed-size product with hardware; and a trap: the visible area is 850 × 2000 mm, but the file must be 850 × 2150 because the bottom 150 mm disappears into the cassette.

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.