打开文档不弹出警告框----Indesign javascript

if (app.version == 3)
 { 
   app.userInteractionLevel = UserInteractionLevels.neverInteract; 
 }
 else 
 { 
   app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract; 
 }
 var myDocument = app.open(File(sourceFile));
 if(app.documents.length != 0)
 {  
  if (app.version == 3)
  { 
   app.userInteractionLevel = UserInteractionLevels.interactWithAll; 
  } 
  else
  { 
   app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll; 
  }

}

 

参数:

UserInteractionLevels

User interaction level options.

NameDescriptionValue
NEVER_INTERACT The script does not display any dialogs or alerts. 1699640946 = 'eNvr'
INTERACT_WITH_ALL The script displays all dialogs and alerts. 1699311169 = 'eInA'
INTERACT_WITH_ALERTS Displays alerts but not dialogs. 1699311170 = 'eInB'

 

posted @ 2016-05-17 10:33  lovemx  阅读(259)  评论(0)    收藏  举报