Auto-Save and Auto-Recovery

I hope the is a differnence between auto-save (as listed in you document properties) and Auto-Recovery (as set in Prefs). I would like some "protection" but I don't want flash saving over my file unless I tell it to save. I got burn last night while "experimenting" and and did a "revert" only to find that flash had saved over my file, what a pain.  I went to find the "recovery" file only to not find one anywhere. My search on the net are conflicted with wheather or not these 2 features are the same. In my case both items where checked and both set to 10min (the default). soooo....
Please tell me that Auto-Recovery is different, is that it doesn't save over my file, ie it keeps a real back-up someplace, AND where i can find this "recovery" file. ?
This feature seems strange, why not do a std auto back-up to a user selected number of versions in a user selected location ?
Thanks
Joel

Thanks. After poking around for a while I kinda figured this out. I was just glad to find out I could get some kind of "back-up" function from Auto Recovery, because "Auto Save" is a nightmare. I can't understand where anyone would want to use this feature at all. Anything that saves over what your working on before your ask for the file to be saved is looking for trouble. I found it out the hard way. I had "auto Save" on and after messing around trying a few different things, none of which worked or I liked, I thought I would simply close and re-open the original file only to find "auto save" had saved over my original file. I can't see any place where this feature would be anything but a pitb. If they want a auto save feature it should be saving versions of the original (up to a user specified number of instances) in the seperate folder. Never under any curcumstances should the original file be saved over unless the users presses SAVE. Auto recovery would be more useful if it didn't erase everytime you restarted the app. Flash needs to look at the back-up and versioning systems that AE and PPro use.
It's one of those things that bother you about the whole "suite" concept. Adobe owns all these apps and while some of them do play well together to an extent, for the most part it is still a collection of indiviuals. While there have been some changes to get the "look" of the apps to be close, the actual functioning of the UI in the differnt apps isn't where it needs to be. There needs to be a Suite "czar" that makes all the apps do std UI things the same using the same keys etc. for example AE, PPro, Flash, Photoshop, fireworks, all use different keys to zoom in/out or of your image/stage/comp/viewer/monitor window ie main workspace or to enable the mouse "wheel" for zooming.  PPro still refuses to use the spacebar to toggle the hand tool like every other "suite app". anyway. a std system for back-up and versioning is need across the suite.
thanks
Joel

Similar Messages

  • Would a 347 MB file be slow? Auto save and auto type turn off?

    I am doing an art inventory and add jpegs of the art. I don't resize them they range from 750k to 3MB. I guess if it is slowing the program down i should? It currently is 267 rows by about 18 columns.
    Thanks in advance.
    Oh can I turn off auto save and auto type? That may help. How do I do that?

    Done.
    Enter Scrip Editor
    paste the posted script
    File > Save > as Script  on the Desktop
    Move the script to the folder :
    Macintosh HD:Library:Scripts:Folder Action Scripts:
    CAUTION, you will be asked to enter your pasword.
    Create a folder to do the job. I named mine Normalized. I created mine on the Desktop where it's easy to reach.
    Go to :
    Macintosh HD:Library:Scripts:Folder Actions:
    Double click the alias :  Configure Folder Actions
    Below the left column, click
    navigate to select your new folder
    Below the right column, click
    select the script image - normalize400.scpt
    After that, drag and drop a picture file onto your folder.
    The original will be move in the folder Originals (isn’t it original ?)
    and a reduced copy  400 x height will be stored in the folder Normalized images.
    And now, here is the script :
    --{code}
    Image - Normalize
    This Folder Action handler is triggered whenever items are added to the attached folder.
    The script rotates the image counter-clockwise (left).
    Copyright © 2002–2007 Apple Inc.
    You may incorporate this Apple sample code into your program(s) without
    restriction.  This Apple sample code has been provided "AS IS" and the
    responsibility for its operation is yours.  You are not permitted to
    redistribute this Apple sample code as "Apple sample code" after having
    made changes.  If you're going to redistribute the code, we require
    that you make it clear that the code was descended from Apple sample
    code, but that you've made changes.
    modified by Yvan KOENIG (VALLAURIS, France)
    2011/12/08
    This version normalize pictures so that
    (1) the greater dimension become the width one (rotate left if needed)
    (2) this greater dimension is ruled by the property maxWidth defined below.
    property maxWidth : 400
    -- set it to fit your needs
    property done_foldername : "Normalized Images"
    property originals_foldername : "Original Images"
    property newimage_extension : "jpg"
    -- the list of file types which will be processed
    -- eg: {"PICT", "JPEG", "TIFF", "GIFf"}
    property type_list : {"TIFF", "GIFf", "PNGf", "PICT", "JPEG"}
    -- since file types are optional in Mac OS X,
    -- check the name extension if there is no file type
    -- NOTE: do not use periods (.) with the items in the name extensions list
    -- eg: {"txt", "text", "jpg", "jpeg"}, NOT: {".txt", ".text", ".jpg", ".jpeg"}
    property extension_list : {"tif", "tiff", "gif", "png", "pict", "pct", "jpeg", "jpg"}
    on adding folder items to this_folder after receiving these_items
              tell application "Finder"
                        if not (exists folder done_foldername of this_folder) then
      make new folder at this_folder with properties {name:done_foldername}
                        end if
                        set the results_folder to (folder done_foldername of this_folder) as alias
                        if not (exists folder originals_foldername of this_folder) then
      make new folder at this_folder with properties {name:originals_foldername}
                                  set current view of container window of this_folder to list view
                        end if
                        set the originals_folder to folder originals_foldername of this_folder
              end tell
              try
                        repeat with i from 1 to number of items in these_items
                                  set this_item to item i of these_items
                                  set the item_info to the info for this_item
                                  if (alias of the item_info is false and the file type of the item_info is in the type_list) or (the name extension of the item_info is in the extension_list) then
                                            tell application "Finder"
      --set name of this_item to "YK#" & (text -4 thru -1 of ("0000" & i))
                                                      my resolve_conflicts(this_item, originals_folder, "")
                                                      set the new_name to my resolve_conflicts(this_item, results_folder, newimage_extension)
                                                      set the source_file to (move this_item to the originals_folder with replacing) as alias
                                            end tell
      process_item(source_file, new_name, results_folder)
                                  end if
                        end repeat
              on error error_message number error_number
                        if the error_number is not -128 then
                                  tell application "Finder"
      activate
      display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
                                  end tell
                        end if
              end try
    end adding folder items to
    on resolve_conflicts(this_item, target_folder, new_extension)
              tell application "Finder"
                        set the file_name to the name of this_item
                        set file_extension to the name extension of this_item
                        if the file_extension is "" then
                                  set the trimmed_name to the file_name
                        else
                                  set the trimmed_name to text 1 thru -((length of file_extension) + 2) of the file_name
                        end if
                        if the new_extension is "" then
                                  set target_name to file_name
                                  set target_extension to file_extension
                        else
                                  set target_extension to new_extension
                                  set target_name to (the trimmed_name & "." & target_extension) as string
                        end if
                        if (exists document file target_name of target_folder) then
                                  set the name_increment to 1
                                  repeat
                                            set the new_name to (the trimmed_name & "." & (name_increment as string) & "." & target_extension) as string
                                            if not (exists document file new_name of the target_folder) then
      -- rename to conflicting file
                                                      set the name of document file target_name of the target_folder to the new_name
                                                      exit repeat
                                            else
                                                      set the name_increment to the name_increment + 1
                                            end if
                                  end repeat
                        end if
              end tell
              return the target_name
    end resolve_conflicts
    -- this sub-routine processes files
    on process_item(source_file, new_name, results_folder)
      -- NOTE that the variable this_item is a file reference in alias format
      -- FILE PROCESSING STATEMENTS GOES HERE
              try
      -- the target path is the destination folder and the new file name
                        set the target_path to ((results_folder as string) & new_name) as string
                        with timeout of 900 seconds
                                  tell application "Image Events"
      launch -- always use with Folder Actions
                                            set this_image to open file (source_file as string)
                                            set {oldW, oldH} to dimensions of this_image
                                            if oldH > oldW then
                                                      set {oldW, oldH} to {oldH, oldW}
      rotate this_image to angle 270.0
                                            end if
                                            set |échelle| to maxWidth / oldW
                                            if |échelle| < 1 then scale this_image by factor |échelle|
      save this_image as JPEG in file target_path with icon
      close this_image
                                  end tell
                        end timeout
              on error error_message
                        tell application "Finder"
      activate
      display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
                        end tell
              end try
    end process_item
    --{code}
    Yvan KOENIG (VALLAURIS, France)  jeudi 8 décembre 2011 21:25:33
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How can I continuously auto-save and auto-name the JPEG files with a controlled time interval

    Hi,
    I am newly involved in some Labview projects that out of my knowledge. I am trying to save multiple JPEG images from a live imaging task to a folder in the computer hard disk every certain minutes. I'd like to name these files with the date and time (eg. Img_06012011_1635. jpg).Then, after hours long image capturing, I can have all the image files in a neat order.
    My goal is to have the jpg files auto saved and auto-named with the data and time at that moment. I also need to control this waiting time between each savings.
    Could you please show me some hints about this? See the vi attached, I know I need to do something on the "write path" part on the up right corner. Thanks!
    Solved!
    Go to Solution.
    Attachments:
    capture.vi ‏28 KB

    Thanks, Steve. When I built up a path with the date and time info and send them to the WriteJPEG File.vi like you mentioned, it stopped saving any files into the folder. Do you think this is the problem from my while loop?Could you show me if there is any other secret functions that restrains the file saving?
    I am planning to save the image files every 30 secs,for example, and then I can have a bunch of jpg files with their unique names after hours long image acquisition.
    I appreciate you kindly help!
    Attachments:
    capture(updated).vi ‏29 KB

  • Auto-save and file-recovery

    Dear Adobe,
    It is the year 2015. Just lost several hours of work in Illustrator. Thanks for making your professional community the beta tester of your half-baked products. I have no interest using Illustrator if you release version after version with new "features" and leave out the most important thing: file recovery and auto save. Honestly, I am in severe disbelief that this is not built in. Don't release an update if you don't do this first. This has happened far too much for me to have any patience, or just to say, "it's ok, I will re-do it".
    I can't find words to express my severe disappointment in this software. I am not the first one to have said this. If no solution is in the works even, you really don't care.
    Sincerely disappointed and frustrated,
    A Creative Cloud User

    spybraek,
    Only an old native here.
    With regard to autosaving, you may consider these (I am aware that you may know (of) them):
    CS5/CS6/CC & Vista/7/8 or 10.7+
    http://www.astutegraphics.com/software/autosaviour/
    https://forums.adobe.com/message/6616027#6616027
    For Mac users with CS6 or CC, the app "Ai Auto Save" can be bought here:
    https://itunes.apple.com/us/app/ai-auto-save/id877602617?ls=1&mt=12
    With regard to file recovery, the following may apply (this may also be (too well) known to you):
    One thing often tried first is to create a new document and File>Place the (PDF contents, if any, of the) corrupted one to see how much may be rescued that way.
    Here are some websites where you can see whether it can rescue the actual file, and if it can, you may pay for a subscription to have it done,
    http://www.recoverytoolbox.com/buy_illustrator.html
    http://markzware.com/adobe-software/fix-illustrator-file-unknown-error-occurred-pdf2dtp-fi le-recovery/
    http://www.illustrator.fixtoolbox.com/
    As far as I remember, the first one is for Win and the second one is for Mac, while the third one should be for both.
    Here are a few pages about struggling with it yourself:
    http://daxxter.wordpress.com/2009/04/16/how-to-recover-a-corrupted-illustrator-ai-file/
    http://helpx.adobe.com/illustrator/kb/troubleshoot-damaged-illustrator-files.html
    http://kb2.adobe.com/cps/500/cpsid_50032.html
    http://kb2.adobe.com/cps/500/cpsid_50031.html
    http://helpx.adobe.com/illustrator/kb/enable-content-recovery-mode-illustrator.html

  • Auto save and auto recover of front panel controls/indicators values

    i just want that when i exit from the VI's front panel all controls and indicators current values get saved automatically and when i get back into this vi,those values get recovered automatically.
    Like if i incremented numeric control value from 1 to 5 , when i exit from the vi the value 5 get saved automatically and when i get back into the vi ,it shows the recovered value 5 to me automatically.
    best regards

    I'm Back
    I was mistaken when I said the you could select to save either the controls or indicators or both in the Open G Vi's, They are hard wired for both. I made minor changes to these VI's for my app.,  because I only needed the controls to be saved. The example I am providing uses the Modified VI's, but I've also included the originals.
    Modified
    Read Panel from INI.vi
    Write Panel to INI.vi
    Originals
    Read Panel from INI.vi
    Read Panel from INI__ogtk.vi
    The ability to select either or both could easily be implimented into these Vi's using a case selector and an enum wired as an input
    Controls only
    Indicators Only
    Both
    Incase you don't have the OpenG toolkit I've provided the necessary files for this example to function
    Extract the zip file to your User.lib directory then open Usage.vi
    Hope this helps you
    Georges Janveau
    Attachments:
    Config File Usage.zip ‏861 KB

  • Pages has no auto save or document recovery? seriously?what century is this?

    pages has no auto save or document recovery? seriously?

    Are you reading carefully ?
    LIon (OSX 10.7) embed an Autosave and a Versions feature at system level.
    iWork components are using them.
    The question and the given answer were dedicated to apps running under older systems.
    alphaflight wrote:
    Why should any user be expected to check for this?  Most every Apple - heck most every modern product does it automatically.
    It's perfectly odd to assume that an application deliver this or that feature.
    It's perfectly wrong to write that "most every Apple - heck most every modern product does it automatically".
    TextEdit did that but iLife apps didn't and I'm not sure that Apple's Pro apps were doing that before Lion.
    More, some users are ranting in several threads against the Autosave and Versions features introduced by Lion.
    Yvan KOENIG (VALLAURIS, France) vendredi 21 octobre 2011 09:54:04
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Auto Save and Versions

    Where can I control Auto Save and Versions? I can't find it in System Settings.
    Can I control it by terminal commands?
    On http://www.apple.com/macosx/what-is/ Apple claims:
    Versions creates a new version of a document each time you open it and every hour while you’re working.
    While here http://www.apple.com/macosx/whats-new/auto-save.html Apple claims:
    Forget about manual saving and forge ahead with confidence. Auto Save in OS X Lion automatically saves your work, while you work, during pauses and every five minutes. And Lion saves changes in the background so you're never interrupted with progress bars.
    So I wonder every five minutes or every hour? Would be nice to make sure on each Mac itself whether it auto-saves every five minutes or every hour and to actually allow its user o set the frequency.

    It does both. It saves your work in the current version every 5 minutes. Every hour, it creates a new version of the document.
    I haven't searched for any version settings, yet.

  • After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    Try using one of these video players. VLC usually works with most files.
    Video Player - Divx
    Video Player – Flip4Mac
    Video Player - VLC

  • After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recordings

    After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    HI,
    In Message Menu > Preference > Accounts you should at least have the iMessage Account (Which is Enabled) and th Bonjour one that most likely is not.
    After that if you had iChat type AIM valid Screen Names or Jabber IDs in an earlier OS then the System Preferences > Mail, Contacts and Calendars should list them and have them set to be used with Messages.
    There is a vague chance that you have not set these up yet (you can do it in Messages or Mail, Contacts and Calendars)
    Once you have a t least one other "Account" other than th iMessage one in Messages then the Buddy List option will appear next to CMD and 1 in the Window menu list.
    NEXT
    If you go to the General Section of the Messages Preferences you can unlink several Buddy lists if you have them (By default they are shown as one gathered Buddy list)
    I Have several Accounts logged in (AIM valid and Jabber ones)
    Uploaded with Skitch!
    And I separate them in to individual lists which then gives me this in the Window Menu
    Uploaded with Skitch!
    8:06 PM      Thursday; August 2, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Auto Save and Versions not working

    Auto Save and Versions are not working in pages or numbers.  I've worked on a project for over five minutes when I "Xed" out the drop down box opened up and asked if I wanted to save.  Any ideas why?  Also, how do you open up versions?

    There is the problem with that sentiment. I don't like the loss of "save as" either. I think the new save/duplicate paradigm has more steps and is poorly implemented to boot. Yet, people complain far more about Versions and Autosave than they do about "save as"? Why on earth would anyone complain about Autosave? There is no user interface change involved with Autosave. It is entirely in the background. If you don't like Autosave, you are free to randomly delete files from your machine and from Time Machine if you want. I don't see what the point of that would be, but it would give you the same effect of not having Autosave. There is more a user impact to Versions, but it still a really cool feature. Why would you not want to have access to old versions of your document? It isn't going to eat much disk space. The last time someone complained about disk space usage by versions I calculated that it would take 38 years for them to run out of space due to Versions. If you don't want to use Versions, don't click on the Versions tools. Problem solved.
    I don't want people lumping clear losers (like no more "save as") with clear winners like Autosave and Versions.

  • Address Book Auto Save and Jump

    When I enter in a new address the program seems to periodically auto save and then the cursor jumps to the note section. If I'm not paying attention I will continue to type in the notes section and then will have to delete or cut and paste. This is really annoying when entering lots of addresses. Explanation? Solution? Thanks.

    I see the problem, too. Very inconvenient. Here's someone else who seemingly is experiencing the same:
    http://discussions.apple.com/thread.jspa?threadID=1517745

  • Does auto-save and version work with old apps like pages '09?

    Hello,
    I'm new Lion user. I tried auto-save and version with textedit and it works.
    But i'm not sure it works with pages '09.

    It does work if you install the update from yesterday.

  • Do Auto Save and Version work for Office for Mac-documents?

    Do Auto Save and Version work for "Office for Mac 2011"-documents?

    No, just certain Apple apps right now. Preview, iWorks, textedit come to mind. Anything else?

  • Auto Save and Open

    I am using Windows 7 with Adobe Reader XI. I'm building a website that has help documents that I would like to Auto save and open with Adobe Reader XI. I am unsure if this is a user feature or a publisher feature. I want to have these documents auto open and run in Internet Explorer 11 specifically. I've tried to add the site as a trusted site and just about all the other steps.
    Thank you for your help!

    Depending on the IE configuration, clicking on a PDF link will either
    save the PDF to a temp folder, then open it in the Adobe Reader add-on
    save the PDF to a temp folder, then open it in the Adobe Reader application

  • I'm not seeing the Auto Save and Versions features

    I have a document open in Pages '09 and I'm running Lion, but I am not seeing the auto save or versions features that you supposedly get my clicking on the document name. Can someone help? Do I have to turn this feature on in preferences?

    I'm actually working on a Word document that Pages has converted and opened, but the document does have a title bar name. So..I have to do a manual save before auto save will start working?!?
    You don't have to do a manual save. Pages will auto save the converted Word document. If you quit Pages after editing the converted document without saving, Pages will reopen the converted Word document, give it a temporary window title of "Untitiled" and have saved your edits.
    I did think I see a preference setting for auto save that wasn't checked in my preferences.
    I don't think Pages every had auto save. Word does though, and this may be what you're remembering.
    Also, how does all this auto save and versions stuff work…
    Have a read of Apple's support document titled OS X Lion: About Auto Save and Versions. This explains both and how the two features are related but different.
    NB While Pages auto saves new, untitled documents it doesn't create a Version of these documents.

Maybe you are looking for

  • Bill of Lading Numbering

    I have a question in regards to the bill of lading numbering scheme that other companies are using. Currently, we are using the shipment and the stage numbers as the bill of lading number (i.e. 12345-01, 12345-02, etc.).  This number is what prints o

  • Steps in migrating Web and mailman from one server to another

    I am minimally skilled so am taking this slowly I currently have a server set to manage several websites all on the same IP forwarded from a DSL modem. Also Mailman provides list distribution for several of the websites. That box also serves as a pri

  • Just started to program in java

    Hi, beginning to learn Java and running into an issue that hoping more experienced ppl can shed some light on: var payload = payload = Packages.java.lang.Integer.valueOf(apayload, 16).intValue(); apayload is coming in as "18a3f1c6dac211ddb98c5bfb9700

  • Error on click Room

    dear all, i have some problem when client Room, the error message id : Portal Runtime Error An exception occurred while processing a request for : iView : pcd:portal_content/com.sap.ip.collaboration/Rooms/a0d172ee-b9e0-2810-2e98-9a965549bcea/workset/

  • Details about WF-BATCH and DDIC users

    hi please provide me the details about the users  WF-BATCH and DDIC .