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

Similar Messages

  • 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.

  • 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

  • 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.

  • 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.

  • How do I activate auto save and versions?

    How do I activate auto save & versions?

    Mountain Lion. Since ML, Auto Save and Version does not work with new user accounts I am creating. The accounts I moved from Lion MBA to Mountain Lion on my RMBP 15 have it enabled.
    So: ML still has the feature, but you may not access it by Preferences. It does - only on new accounts - even not work with TextEdit. With the Accout I moved from Lion to Mountain Lion no such problems.

  • While composing email, keep getting "Unable to save as a draft" every 30 seconds. I've disable auto save and it didn't help.How can I stop this message?

    While composing email, keep getting "Unable to save as a draft" every 30 seconds. I've disable auto save and it didn't help.How can I stop this message?

    Mike,
    Thank you for taking the time to look at my app. This is my last major stumbling block that I have to resolve for this and other forms in the app.
    Actually, I did use the Form Wizard for Auto DML to originally create the form. It was great. It created most of the Buttons, Items and Validations automatically (basically most of the page). I just needed to create some Processes and Computations. Two of which were the Processes to update the 'create_dt' and 'created_by' fields and 'update_dt' and 'updated_by' fields. The Create process updates the fields just fine.
    However, my problem seems to be that the Hidden 'create_dt' and 'created_by' fields aren't picking up the values from a record that is being editted. Then when I attempt to save the record those fields are NULL, causing the DB NOT NULL constraint to throw an exception for those fields. In the back of my mind I seem to remember seeing some post stating something to the effect that the information in fields with a Source Type of Database Column is just displayed and does not affect Session State items.
    Even with that, I am still wondering just why the 'created_by' Page Item shows the value that is in the DB record being updated, but the 'create_dt" does not (as can be seen in my first posting). It is the 'create_dt' Page Item (:P205_CREATE_DT) not having the DB records 'create_dt' info in it that appears to be the problem.
    Thanks,
    Tom

  • Error Opening Address Book, iChat, iCal and Big Bang Board Games

    Hello,
    I mistakenly trashed the applications list. In order to restore the applications list, I pulled the list out of trash to the desktop and then back to the sidebar. At this point, the applications were not available to the other users of the computer. I then copied the list to the universal applications folder. Now, all but the Address Book, iCal, iChat and Big Bang Board Games work. These applications close "unexpectedly" when I try and open them. The following is the header of the report for the Address Book:
    Date/Time: 2007-07-06 10:46:34.136 -0400
    OS Version: 10.4.10 (Build 8R2232)
    Report Version: 4
    Command: Address Book
    Path: /Applications/Address Book.app/Contents/MacOS/Address Book
    Parent: WindowServer [61]
    Version: 4.0.5 (487)
    Build Version: 12
    Project Name: AddressBook
    Source Version: 4870000
    PID: 272
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000004
    I am hoping to get an answer as to how to rectify this situation. If it is not already obvious, I am new to Macs.
    Mike D

    Hello Mike:
    Welcome to Apple discussions (from where you were on the dark side):
    Try a couple of things.
    Run repair disk from your software install DVD (until it reports no errors).
    If that does not work, I would opt for an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    A&I installs a pristine version of OS X (which would have to be updated, of course) while preserving your files, programs, and settings.
    Barry

  • Address Book Syncing Problems and Won't Restore

    I sync address book between two computers using .mac, and also publish it for another family member to use. This was working fine under Tiger, but I've recently noticed some issues in Leopard. Occasionally, instead of merging records, it will double them up. This morning, I noticed I had twice as many contacts as I should. For some reason, it added my entire .mac address book again back to my computer. Other times it had done that with only a few of the contacts.
    Fortunately, I had done an Archive my address book just the other day. Unfortunately, it didn't help. I went to restore from the Archive using "Import" and "Address Book Archive". It warned me it was about to replace my entire address book with the Archive, but then nothing happened. All my contacts disappeared, but then all of them came back again, still doubled. I know it was not doubled when I did the archive, so it didn't really restore my Archive.
    I finally fixed my doubled contacts problem by doing a one way sync from my second computer (which had not yet been affected by this) to .mac and then a one way sync from .mac to my laptop. I then turned off .mac syncing.
    Then, a little while later I had 20 more contacts! I realized that this came from the fact that the address book is published and the subscriber has editing rights. But she did not add them. It was again a doubling problem, this time in the sharing function. So I turned off editing in sharing.
    All is back now but I won't turn .mac syncing or shared editing back on until I understand what happened.
    Anyone else see these issues?

    leopard 10.5.1 on macbookpro. instructions to fix missing sync for my treo 650 including backing up (exporting) then restoring the address book. i also am unable to restore.
    the backup archive shows 6 MB.
    i click import, choose the archive, verify that i want to replace all. the address book then shows only the address that was highlighted before import, still shows 1152 cards, but no other cards are visible. verified the search box is empty.
    if i quit and restart address book, the original version of the address book is still there. apparently unable to import address book.
    -db

  • How to recover Outlook Express data, such as messages, the Address Book, mail accounts, and news?

    How to recover Outlook Express data, such as messages, the Address Book, mail accounts, and news?

    Outlook Express Repair Toolbox software is selected utility to repair the damaged/broken emails from OE. It provides best DBX Recovery service for
    chosen database including orphan files; afterward allows storing all revived files in EML, MSG, PST, RTF and DBX.
    Offers search option to add file for healing process.
    It includes understandable algorithm to recover DBX as well conversion in safe hands.
    It is practicable with each Windows OS like Win 8.1, Win 7 (32 bit- 64 bit), supports all editions of OE, and MS Outlook.
    Everybody efficiently can retrieve the lost emails plus can preserve the integrity.
    Trial version of tool is activated for 15 emails but ample to satisfy.
    Download -
    http://www.outlookexpress.repairtoolbox.com/

  • Only want2use iCal+Address book with iSynch and Memos+Tasks with Palm T/X

    I was using Tungsten T2 and isync happily. I was using isync to use the address book and iCal and when I synched it also synched the palm info in the Calendar and address book in my Palm desktop. The memos and tasks in Palm desktop also worked properly.
    I upgraded my palm to T/X and have had many problems with deletion of categories on the handheld, duplication of task and diary entries, address entries with weird symbols added that need to be deleted, desktop memos and tasks not updating. iCal seemed to work OK but the palm desktop calendar did not display any future entries. Is this normal.
    I removed isync and after resorting everything on the device - enabled all conduits for palm and resynced. So now everything seems to work properly.
    My main questions are: what did I do wrong for this to happen which led to me spending hours sorting everything out on the palm device manually?
    And: Is there a way to keep everything synching on the palm device AND iCal and address book for palm?
    And: If not: Is there a way to use iCal and address book for mac AND keep you tasks and memos synching on the palm desktop? As I prefer the palm software for tasks as I have several categories for my tasks and do not allocate tasks on given days.
    Thanks for reading and I hope to hear some quality advice from you soon. Matt

    Starting with your last question about first synchronizing with the Palm Desktop calendar and then later with the Mark/Space Events conduit, the answer is no. Your first synchronization with any of the three Mark/Space conduits—whether one, a pair or the more conventional all three—requires that you overwrite the handheld with that data type using that Mark/Space conduit.
    You should read this article about the limitations between the display and transfer of calendar events between Palm devices and iCal:
    http://docs.info.apple.com/article.html?artnum=93172
    Understanding those limitations, you should selectively 'fix' the events in iCal so that they are represented properly in iCal. You will have to live with the limitations of such event display on your Palm. If you 'fix' them on your Palm, you will only create additional issues when they are synchronized with iCal using either iSync or the Missing Sync.
    Old repeating events can be 'rescheduled' in iCal by selecting the event and changing the end date, or they can be deleted, though that will result in their deletion from your Palm device. That's one reason that it is important to take that last 'snapshot' with the Palm Desktop, so that you can refer to historic data if you need to.
    It's also important to think about why you would want to carry possibly hundreds of aged events around in the Palm of your hand. Realistically, why would you want handheld access to data older than say, one year? After installing the Missing Sync, you can double-click on the Mark/Space Events conduit and optionally limit the transfer of events from iCal to your handheld. You simply select the drop-down menu labeled Ignore desktop events older than: and choose from an interval of 1, 2, 4 or 8 weeks, 6 months or 1 year, instead of the default Sync All option.
    That technique is another method to deal with historic data, because the 'misrepresented' events older than will not be transfered from iCal to your handheld even during that initial synchronization where your handheld data is overwritten, if you select one of those delimiters.
    Mark/Space recognizes groups and categories in iCal and the Address Book when using a Palm OS 5 or later device which supports them. iSync ignores them, because groups and categories are not mapped in the iSync Palm Conduit.

  • HT2486 this address books keeps freezing and closing unexpectedly. why?

    My address book keeps freezing and closing. Just upgraded my operating system and then this started.

    Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    iPhoto 8 (09) and earlier- run the options indicated
    iPhoto 9 (11) and later- run  Option #4 to rebuild the database
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager (iPhoto 8 or earlier or IPhoto 11 and later) and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the
    File ➙ Rebuild Library (iPhoto 8 or earlier)
    or
    Library ➙ Rebuild Library (iPhoto 9 or later)
    menu option to rebuild the library.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

Maybe you are looking for

  • How can I Create a Client Configuration File for RemoteApp and Desktop Connection with Server 2012?

    I have a working RDS RemoteApp site and looking to test out the feature in Windows 7 Control Panel\All Control Panel Items\RemoteApp and Desktop Connections I came across this link: Create a Client Configuration File for RemoteApp and Desktop Connect

  • How do I handle values in source that are not in "lookup" table?

    hi there, I have 3 tables (all Oracle technology): 1) Source table: CALLS with columns MSISDN, TRANS_DATE, TYPE, COST, DURATION 2) Lookup table: SUBSCRIBERS with columns SUBSCRIBERID, MSISDN, IMSI 3) Target table: FACT_CALLS with columns SUBSCRIBERID

  • Cfdocument and page column heading

    I am trying to repeat table column headings after the page heading for each page of a tablular "report". I am using CF8 cfdocument type=pdf and cfdocumentitem tags without any success. Everything is fine with the first page, but I have not been able

  • File transfer via flash drive locks MacBook

    Switched from a PC laptop recently to a MacBook. After the usual growing pains, still have a problem occasionally in transferring large files (folders of IT documentation and some are 300-500MB) via my Cruzer 1GB flash drive. Some transfer fine, whil

  • Style Library File?

    Is it possible to serve out a paragraph and charater style sheet for indesign that is independent of a specific document? I'm standardizing many styles across multiple documents and was wondering if there was a way I could edit a master style sheet t