You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: basil.js
+2-4
Original file line number
Diff line number
Diff line change
@@ -271,21 +271,19 @@
271
271
*/
272
272
pub.MODESILENT="ModeSilent";
273
273
/**
274
-
* Used with b.go() to set Performance Mode. Processes Document in background mode. Document will not be visible until the script is done. If you are firing on a open document you'll need to save it before calling bgo(). The document will be removed from the display list and added again aftrer the script is done. In this mode you will likely look at indesign with no open document for quite some time - do not work in indesign during this time. You may want to use b.println("yourMessage") in your script and look at the Console in estk to get information about the process.
274
+
* Used with b.go() to set Performance Mode. Processes Document in background mode. Document will not be visible until the script is done. If you are firing on a open document you'll need to save it before calling b.go(). The document will be removed from the display list and added again after the script is done. In this mode you will likely look at indesign with no open document for quite some time - do not work in indesign during this time. You may want to use b.println("yourMessage") in your script and look at the Console in estk to get information about the process.
275
275
* @property MODEHIDDEN {String}
276
276
* @cat Environment
277
277
* @subcat modes
278
278
*/
279
279
pub.MODEHIDDEN="ModeHidden";
280
280
/**
281
-
* Default mode. Used with b.go() to set Performance Mode. Processes Document with Screen redraw, use this option to see direct results during the process. This will slow down the process. This mode was also the default in Versions prior to 0.22
281
+
* Default mode. Used with b.go() to set Performance Mode. Processes Document with Screen redraw, use this option to see direct results during the process. This will slow down the process in terms of processing time. This mode was also the default in Versions prior to 0.22
282
282
* @property MODEVISIBLE {String}
283
283
* @cat Environment
284
284
* @subcat modes
285
285
*/
286
286
pub.MODEVISIBLE="ModeVisible";
287
-
288
-
//Used in b.go(Optional: mode). Disables ScreenRedraw, this is the default mode
0 commit comments