Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Separation Preview Setting

Participant ,
May 30, 2024 May 30, 2024

Is there any way to have this feature turned on automatically so that I don't have to keep turning it on every time I open a new doc?

 

 

Thanks

TOPICS
Performance
660
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 30, 2024 May 30, 2024

Yes. With no documents open include the Separation Preview Panel (Window>Output>Separation Preview) along with the docked panels on the side of your screen (as highlighted in the screenshot) and save it as part of a Custom workspace. Then quit the program. When you reopen not only will the new workspace remain open but it will become part of your preference file. If you then make a copy of your new preference file you can use it to replace any possibly corrupt preferences in the future and retain your custom workspace. See https://helpx.adobe.com/indesign/using/customizing-workspace.html for more information on docking panels.

Screenshot 2024-05-30 at 8.26.35 PM.png

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
May 30, 2024 May 30, 2024

Thank you for the reply. Actually what I was hoping to see if this can be set... That the Separation View (OFF) be set to (ON) all the time so I don't have to keep turning it on. I use Sep Preview all the time and would be nice if I didn't have to turn it on all the time. This probably can't be done but thought I would throw it out there.

 

Thanks for your time on sending me that suggestion. I appreciate it.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 30, 2024 May 30, 2024

If you have View>Overprint Preview turned on - then it will be visible.

I do the same as @Bill Silbert and put the panel active in my layout of panels - all the time. 

 

But this option is grayed out with no documents open

EugeneTyson_0-1717122600403.png

 

 

I came up with this script that will set the Overprint on for New Documents and if you open a document

if you put in a 'startup scripts' folder it will run all the time

http://kasyan.ho.ua/tips/indesign_script/all/start_up_folder.html

 

On my computer it looks like this

EugeneTyson_1-1717124723243.png

 

Save the below in a plain text file and name it

auto_overprint_on.jsx

 

(function () {
    // Function to turn on Overprint Preview
    function turnOnOverprintPreview(event) {
        try {
            var doc = event.target;
            if (doc instanceof Document) {
                doc.layoutWindows[0].overprintPreview = true;
                $.writeln("Overprint Preview turned on for: " + doc.name);
            }
        } catch (e) {
            $.writeln("Error: " + e);
        }
    }

    // Add event listeners for opening and creating documents
    function addEventListeners() {
        $.writeln("Adding event listeners...");
        app.eventListeners.add("afterOpen", turnOnOverprintPreview);
        app.eventListeners.add("afterNew", turnOnOverprintPreview);

        // Apply Overprint Preview to already opened documents
        for (var i = 0; i < app.documents.length; i++) {
            turnOnOverprintPreview({ target: app.documents[i] });
        }
        $.writeln("Event listeners added.");
    }

    // Persist the script state to maintain event listeners across sessions
    #targetengine "session"

    $.writeln("Starting the script...");
    addEventListeners();
})();

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 30, 2024 May 30, 2024
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 31, 2024 May 31, 2024

I've simplified it and it works better - for some reason I tried this later on today on another computer and it didn't work.

So I found a simpler way
It seems to invoke the menu item on new docuemnts or when opening documents. 

//*******************************************
#targetengine 'mysession' // Script persists for current session

function main() {
  var myEventListener = app.addEventListener("afterOpen", turnOnOverprintPreview);
}

function turnOnOverprintPreview() {
  try {
    var myMenuAction = app.menuActions.item("$ID/Overprint Preview");
    myMenuAction.invoke();
  } catch (error) {
    // Handle the error if Overprint Preview cannot be enabled
    console.error("Error turning on Overprint Preview:", error);
  }
}

main();

//*******************************************

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 31, 2024 May 31, 2024
LATEST

Hi @Christopher3440329747o5 , There is a key command for it, the default is Command-Y

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines