Skip to main content
April 24, 2012
Question

Prevent "Missing Fonts" alert

  • April 24, 2012
  • 1 reply
  • 534 views

Hi all,

Is it possible to prevent the display of the alert "Missing Fonts" ?

I found a interesting panel named "Preflight" which seems to allow this panel deactivation .

But nothing happens.

Thanks.

Pierre RAFFA.

This topic has been closed for replies.

1 reply

Peter Kahrel
Community Expert
Community Expert
April 24, 2012

Use this construct:

app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;

// open a document, then restore user interaction:

app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;

Peter