Autosave/autobackup feature in ID???

Ask a Question related to Adobe Indesign Macintosh, Design and Development.

  1. #1

    Default Autosave/autobackup feature in ID???

    Hi, this may have been asked before on this forum, but my design team are asking whether ID has an autosave feature, for those moments when a file gets overwritten accidentally etc...

    This was a feature in Quark Xpress (dare I mention its name on this forum?!) that allowed auto backups to run in the background, saving documents in shared directories that everyone could access if they needed to.

    I would be glad of any feedback on this.

    Thanks!
    bilbo_bagginz@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Feature or Bug
      I have noticed while reading these newsgroups for information that when I click on a supplied link in a post, that IE 7 will open but the web page...
    2. the 3d feature
      other than not having to launch classic and use another app (dimensions) whats the point of the 3d feature in cs? the 3d feature is slo and maybe...
    3. Autosave and autobackup missing for Mac?
      I can not find auto save or auto backup settings anywhere within Elements 2.0 for Mac. Am I missing something or is Elements missing these...
    4. feature or bug?
      Forwarding to Aspnet and Aspnet.Security. They may have run across this question before. Shel -- This posting is provided "AS IS" with no...
    5. Bug or feature in SQL SP
      Hi all. In db2diag.log I found next record 2003-07-03-13.21.46.812000 Instance:DB2 Node:000 PID:2096(db2dari.exe) TID:3144 Appid:...
  3. #2

    Default Re: Autosave/autobackup feature in ID???

    in short, NO
    But you can experiment with save a version, you might even assign a shortcut so you can access it very fast thriugh the keyboard.
    Marco_A_SantaMaria@adobeforums.com Guest

  4. #3

    Default Re: Autosave/autobackup feature in ID???

    ID doesn't have an autosave since it doesn't really need one. It's
    autorecovery system is amazing.

    You can actually work on a file for hours without saving it. If ID or
    the computer crashes, the next time you open ID the file will open with
    it, right where you left off.

    Bob
    Bob Levine Guest

  5. #4

    Default Re: Autosave/autobackup feature in ID???

    InDesign auto-recovery is amazing. The way I have seen it work it is more like a buffer, where the page will be saved in its temp file when you move to a diferent locations in your document, zoom in or out—at least form what I remember, haven't had too many crashes on InDesign lately.
    Marco_A_SantaMaria@adobeforums.com Guest

  6. #5

    Default Re: Autosave/autobackup feature in ID???

    Crashing is extremely rare for me in InDesign.

    But I do like to show the auto-recovery features to my students. When demoing some files, I will create a file which I don't save, then I'll perform a Force Quit. They're quite amazed to see all the open files—including the one never saved—open back on my screen when I reopen InDesign!
    Steve_Werner@adobeforums.com Guest

  7. #6

    Default Re: Autosave/autobackup feature in ID???

    This script copies the document to a backup folder (which you specify in the first line) before saving.
    When you assign cmd-S as shortcut for the script you get a backup with every save.

    Remember to empty that folder occasionally ;)
    Remember also to frequently do a save as (has nothing to do with this script, but is a very good idea in all cases)




    tell application "Finder" to set backupPath to folder "Macintosh HD:documents:backup files"

    tell application "Adobe InDesign CS2"
    try
    set myFilePath to file path of active document
    set myFile to full name of active document
    set cd to current date
    set nuName to name of active document
    set nuName to nuName & "-" & ((year of cd) & (month of cd) & (day of cd) as string)
    set nuName to nuName & "-" & (time of cd) as string
    tell application "Finder"
    set backupFile to duplicate myFile to backupPath
    set name of backupFile to nuName
    end tell
    save active document
    on error
    save active document
    end try
    end tell




    I'd be glad to hear if this works for you

    Gerald
    Gerald_Singelmann@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139