打开文档不弹出警告框----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.
| Name | Description | Value |
|---|---|---|
| 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' |

浙公网安备 33010602011771号