This content has been marked as final.
Show 2 replies
-
1. Re: Show Special Characters & Set View Options
pkahrel Nov 5, 2012 2:45 AM (in response to travellingmad)Everything you want can be scripted directly, without using menuActions, though these things aren't always straightforward:
var doc = app.activeDocument;
doc.layoutWindows[0].screenMode = ScreenModeOptions.previewOff;
doc.layoutWindows[0].activePage = doc.pages[0];
app.layoutWindows[0].zoom (ZoomOptions.FIT_PAGE);
doc.textPreferences.showInvisibles = true;
// doc.close (SaveOptions.yes);
If you run this script in the batch converter, there's no need to save your documents in the script you call: just click "Save documents on closing". And zip up you documents so that you have a safe copy of them.
Peter
-
2. Re: Show Special Characters & Set View Options
travellingmad Nov 5, 2012 3:29 AM (in response to pkahrel)Thank you!
You saved me a lot of time!

