Skip navigation
Stevo747
Currently Being Moderated

New 27" iMac but InDesign opens doc's full size of screen (too big!)

Jan 25, 2010 8:45 AM

I got a new 27 iMac (lucky me) but InDesign always opens documents to full size of screen (too big) can I control this anywhere?

Sick of resizing everytime I open a doc.

 
Replies
  • Currently Being Moderated
    Jan 25, 2010 9:48 AM   in reply to Stevo747

    I do not know of a built in method.

     

    My solution has been to use a javascript (credit to Dave Saunders for the script) and apply a KB shortcut to it to make life simpler.

     

    // JavaScript Document
    //DESCRIPTION: Resets active window size or uses front window to set default size.
     
    // Check for WindowDefault.txt; if present use it to set front window
    // if not, use front window to set it after checking with user.
     
    myPath = app.activeScript;
    myParts = myPath.toString().split("/");
    myParts[(myParts.length - 1)] = "WindowDefault.txt";
    myNewPath = myParts.join("/");
     
    mySettingsFile = File(myNewPath);
     
    // Before proceeding, check that there is a front window
    // If not, offer user the chance to delete the current settings
    if (app.windows.length < 1) {
     if (confirm("No window is open; would you like to delete the settings file?")) {
      // User said yes; check that it exists
      if(mySettingsFile.exists) {
       mySettingsFile.remove();
      }
     }
    } else {
     
    if (mySettingsFile.open("r")) {
     
    savedBounds = mySettingsFile.read();
      mySettingsFile.close();
     
    myBounds = savedBounds.split(",");
      for (i = 0; i<myBounds.length; i++) {
       myBounds[i] = Number(myBounds[i]);
      }
      app.windows[0].bounds = myBounds;
     } else {
      if (confirm("Settings file is missing. Use current front window to set default?")) {
       // User said: go to it.
       new File(mySettingsFile);
       mySettingsFile.open("w");
       mySettingsFile.write(app.windows[0].bounds);
       mySettingsFile.close();
      }
     }
    }
    

     

    open a document and position it how you want it to fill the screen (or not).

    Run the script. (it then saves the position)

    after that, whenever you open any document, run the script to quickly reposition it to the desired location.

     

    NOTE: this does NOT function with the tabbed panels, you will need your documents to be floating. Worked with CS2 and CS4 (and I assume CS3, though I never had that version).

     
    |
    Mark as:
  • Currently Being Moderated
    Jan 25, 2010 9:52 AM   in reply to Stevo747

    Someone correct me if I'm wrong. It seems like there is a logic to how it works. In CS3, if you have some pallets open and then open a doc, the doc will fit inside of the pallets and toolbars bounds, if someone else made the doc. If you make a doc or save a document and reopen it, it should save the window size, when reopened on your computer. But if another person edits the doc on a computer with another screen size, I bet it will resize back to the "full screen" or "fit inside toolbars" mode when you open it.

    I have not seen a control to "limit" the size of a document window. Might be able to have an Applescript to automatically shrink it down to a size you like.

     

    Chris

     
    |
    Mark as:
  • Currently Being Moderated
    Jan 25, 2010 11:17 AM   in reply to SuperMacGuy

    Chris,

     

    Behavior changed radically in CS4, particularly on Mac where you now have the option to use the "Application Frame" for an expereince much more similar to the one Windows users see.

     
    |
    Mark as:
  • Currently Being Moderated
    Apr 1, 2010 2:46 AM   in reply to Peter Spier

    Not sure if this will help you, but if you 'attach' your toolbar and your palette windows to the side of the screen , when you open a document it will fit within the window.

     

    I found my InDesign documents were opening under my toolbar and under my palette windows, and was unable to find an answer, so i tried this and it works. Seems obvious I know.

     

    To attach the toolbar or palette, drag the dark grey bar to the side of your screen, when you see a neon blue line appear on the edge of your screen it will be attached. The end result should look like the attached picture.

    attach_toolbar.png

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 16, 2010 10:37 AM   in reply to MT.Freelance

    Thank You!

     

    I tried the script and it works great for me. Saves a lot of time!

     
    |
    Mark as:
  • Currently Being Moderated
    Jun 16, 2012 12:11 PM   in reply to JaseS

    Looks like I'm a couple years late to this, but THANK YOU.  This was driving me crazy with my CS5 programs--I tried out your tip and am no longer having this problem.  Thanks!!!

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points