Yes, this is true for runtimeHighlight I use this tip for years and I test it once again before posting (AcDC on Mac OSX) Yes, this is not true for runtimeHighlightColor Which is applied to user's preferences and stays as is until further modification. In any way, if in doubt or if using some other app.fs parameters at the same time one can setting full screen preferences and resetting them, as explained in the doc: You want the document to be viewed in full screen, but as a courtesy, you want to restore the screen preferences of the user back to the original settings. Place the following script as document JavaScript, it will be executed once and only once upon loading the document. // Save the settings we plan to change. var _clickAdvances = app.fs.clickAdvances; var _defaultTransition = app.fs.defaultTransition; var _escapeExits = app.fs.escapeExits; // Change these settings now. app.fs.clickAdvances=true; app.fs.defaultTransition = "UncoverLeft"; app.fs.escapeExits=true; // Now, go into full screen. app.fs.isFullScreen=true; To restore the settings, place the following code in the Will Close section of the Document JavaScripts, located at Tools panel > JavaScript > Set Document Actions. // Restore the full screen preferences that we changed. app.fs.clickAdvances = _clickAdvances; app.fs.defaultTransition = _defaultTransition; app.fs.escapeExits = _escapeExits;
... View more