Skip to main content
Known Participant
March 16, 2016
Question

Turn off preflight?

  • March 16, 2016
  • 2 replies
  • 2098 views

Hey there, does anyone know if its possible to turn off Preflight via scripting?

The only reference i can find is "preflightOff", but have no idea how to implement it!

This topic has been closed for replies.

2 replies

Legend
March 16, 2016

Hi,

Try this ...

/* disable for application */

app.preflightOptions.preflightOff = true;

/* disable for document */

var doc =app.activeDocument;

doc.preflightOptions.preflightOff = true;

Regards

dom_moir
Participant
February 5, 2018

Hi Ronald63...

Where do I enter this data?

Thanks in advance.

Dom

Inspiring
March 16, 2016

Try this:

myDoc.preflightOptions.preflightOff = true;

I'm using CC 2014 and that worked for me.