Easy newbie question re; Address Book

I am trying to add a keyword in the Note field of each person to whom I want to send a Xmas card. I hit "edit" and then I cannot use my mouse to go immediately to the "note" field. It stays in the "first name" field unless I use the tab key to go down one-by-one.
How to quickly access the "note" field?
Thanks in advance for any help with this! (I bet this one has a "duh" type answer.)
edited: I was clicking on the word "note" instead of inside the empty area. Sorry for the stupidity of the question. Duh!
Message was edited by: MarieBoyer

Hi Marie,
why not create a group in Address Book (hit the '+' symbol in the bottom left hand corner)? Call it 'Christmas cards' and then drag the applicable contacts into this list. Don't worry as they not duplicated but just referenced from the total list of contacts. You could make 'sent' and 'received' lists if you wanted.
Seasons greetings!
Steffan

Similar Messages

  • Three Questions on Address Book code scriplet

    I found this co-authored years ago by Scott Paulis and Bruce Phillips:
    tell application "Address Book"
    set thePeople to selection
    display dialog "What tag would you like to append?" buttons {"Cancel", "Apply"} default button "Apply" default answer "[tag]"
    set dialogInfo to result
    set selectedButton to button returned of dialogInfo
    set tagString to text returned of dialogInfo
    if selectedButton is "Apply" then
    repeat with aPerson in thePeople
    set currentNote to the note of aPerson
    if currentNote is missing value then set currentNote to ""
    set newNote to currentNote & " "
    -- insert a newline here! Stringchar(13)?
    set note of aPerson to newNote & tagString
    end repeat
    end if
    end tell
    Question 1: what is the syntax to accomplish the newline insertion noted above?
    Question 2: what magic is necessary to mark the record as "changed"? I say this because contact records changed with this code are not being overwritten onto my iPhone unless I manually make a change -- so clearly the A.B. UI does something "more" to close a record.
    Question 3: suggestions on how to add a third option {"Remove"}?
    Thanks much and Happy Holidays,
    Paul

    I really don't see any difference between a new line of text and a tag. So may I suggest a new version of the script:
    --BEGINNING OF SCRIPT
    tell application "Address Book"
    set thePeople to selection
    display dialog "What text would you like to remove or append?" buttons {"Cancel", "Remove", "Append"} default button "Append" default answer "The text"
    set dialogInfo to result
    set selectedButton to button returned of dialogInfo
    set textString to text returned of dialogInfo
    if selectedButton is "Append" then
    repeat with aPerson in thePeople
    set currentNote to the note of aPerson
    if currentNote is missing value then set currentNote to ""
    if currentNote is not "" then set currentNote to currentNote & space -- or 'return'
    set newNote to currentNote & textString
    set note of aPerson to newNote
    end repeat
    else if selectedButton is "Remove" then
    repeat with aPerson in thePeople
    set currentNote to the note of aPerson
    if not (currentNote is missing value or currentNote is "") then
    if currentNote is in {space, return} then
    set newNote to ""
    else
    if last character of currentNote is in {space, return} then
    set currentNote to text 1 through -2 of currentNote
    end if
    if currentNote ends with textString then
    if currentNote is textString then
    set newNote to ""
    else
    set L to length of textString
    set newNote to text 1 through -(L + 1) of currentNote
    end if
    end if
    end if
    end if
    set note of aPerson to newNote
    end repeat
    end if
    save
    end tell
    --END OF SCRIPT

  • Basic question about address book / gmail sync

    Does the itunes address book / gmail sync feature only sync between those two contact lists, or if I enable gmail sync, will all of my gmail contacts be put on my iphone?
    I have only one folder of about 200 contacts in address book synced to my iphone. But address book and gmail have about 1,000 contacts each. I don't want all of those contacts on my phone.
    Thanks.

    Found an answer to my main question regarding the separate address books, looks like Lion Server is capable of doing personal address books for each user: http://www.wegotserved.com/2011/10/06/os-lion-server-home-server-part-11-shared- address-book/

  • Question on Address Book

    Is it possible to take the Name and Address directly from the Address Book and print in on an envelope? I understand mailing labels but would prefer the direct print method if possible.
    Thanks in Advance
    John

    A couple of things; your directions to the envelope was great . However, my Epson CX6000 doesn't seem to want to print the envelope. I get a message that the paper is out or not loaded correctly. I guess I'll have to talk to Epson about that.
    The other thing is that the name and the address are not together as you would normally type the name and address. In the Preview the Name is off to the left and the addriss is on the right side of the page. When I print it on an 8x11 page it looks like this:
    Name Address
    City, State, Zip
    is there a way to change this?
    John

  • Newbie question about UML books and tools used in industry

    Hello,
    I'm learning OO topics and the UML at home, and began to wonder what books and/or software tools were used by professional software designers/engineers within the industry. I'd be grateful for your reply if you are a professional (or know one!). Thanks very much.

    1.
    Applying UML and Patterns: An Introduction to Object-Oriented Analysis and Design and the Unified Process (2nd Edition)
    http://www.amazon.com/exec/obidos/ASIN/0130925691/qid=1057291436/sr=2-2/ref=sr_2_2/104-7174831-4835950
    2. Hope it helps.

  • 2 easy newbie questions

    Is there a way to display the channel strips vertically larger (mixer) so I can see more detail of how loud each channel is?
    Also is there a window that has the audio anelizer signal, I saw it on a friends pro tools and want to learn to read this? It looks like a video vectorscope, only for audio!

    1. not that I know of.
    2. There are a couple different metering plugs in in the channel strip insert plugins --> Metering.

  • Easy Newbie question (hopefully)

    Hello,
    I am a Lotus Notes developer and I need to write some code in Java.
    I found an some open source package called Httpclient (http://jakarta.apache.org/commons/httpclient/2.0/index.html ) that does exactly what I want. (HTTP Post & Get inside the Notes client in the backend).
    I amusing eclipse 3.0/ JDK 1.4x/ Win XP SP2
    My problem is that eclipse does not seem to recognize my import statements
    I have put the jar file in c:\Lotus\Notes\httpclient\
    I have included the following in my Path statement in the environment variables:
    C:\Lotus\Notes5;C:\j2sdk1.4.2_06;C:\Lotus\Notes5\httpclient;C:\Lotus\Notes5\httpclient\commons-httpclient-2.0.2.jar
    In eclipse under Preferences\Java\Build Path\user libraries i added C:\Lotus\Notes5\httpclient\commons-httpclient-2.0.2.jar.
    I copied the following example code into a new class:
    import java.io.File;
    import java.io.FileInputStream;
    import org.apache.commons.httpclient.HttpStatus;
    import org.apache.commons.httpclient.methods.InputStreamRequestEntity;
    import org.apache.commons.httpclient.methods.PostMethod;
    * Example how to use unbuffered chunk-encoded POST request.
    * @author Oleg Kalnichevski
    public class ChunkEncodedPost {
    public static void main(String[] args) throws Exception {
    if (args.length != 1) {
    System.out.println("Usage: ChunkEncodedPost <file>");
    System.out.println("<file> - full path to a file to be posted");
    System.exit(1);
    HttpClient client = new HttpClient();
    PostMethod httppost = new PostMethod("http://localhost:8080/httpclienttest/body");
    File file = new File(args[0]);
    httppost.setRequestEntity(new InputStreamRequestEntity(new FileInputStream(file)));
    httppost.setContentChunked(true);
    try {
    client.executeMethod(httppost);
    if (httppost.getStatusCode() == HttpStatus.SC_OK) {
    System.out.println(httppost.getResponseBodyAsString());
    } else {
    System.out.println("Unexpected failure: " + httppost.getStatusLine().toString());
    } finally {
    httppost.releaseConnection();
    No matter what I do eclipse always tells me that the httpclient package cannot be resolved.
    I have looked through this forum for answers plus tried to find some eclipse specific ones(not many)
    I relativly sure this is a configuration issue or a code 18 but Java not being my strong suit so the answer eludes me.
    Any help or suggestions would be appreciated...
    Karl the Notes guy......

    So I should remove it?
    Also what is the proper location within the workspace
    folders to put a jar files?Pretty much whereever you want to. However, I'd suggest that you copy that jar file in the project's directory tree, not in Lotus Note's directories (it doesn't belong to Lotus Notes, but rather to your app). The master copy of it should be in something like a /jakarta/commons directory, and then copy that jar to your application's directory structure.
    +(root) - your project's root folder
    |--- src/java - your source code
    |--- lib - external jars your app needs, including the httpclient jar

  • Easy newb question

    I have a "P" that I need to fill with white but when I try to fill it it fills up the hole in the P also. The letters I am trying to fill are represented by lines that I drew in AutoCAD and that were imported into illustrator via a .dxf file. I am trying to spruce up the company logo a bit..
    Thanks in advance,

    Select the P and its hole, and compound them: Object>Compound Path>Make.

  • Restoring Address Book files?

    All:
    I managed to delete a bunch of address book entries. I have a printout out them (dozens) but I'd rather restore than rekey them back in.
    Via Time Machine, I restored (to my desktop) a copy of the Metadata folder, which has the individual vcard files. So, I think it's simple as copying the missing cards back into my Macintosh HD/users/username/Library/Application Support/Addressbook/Metadata folder. Wrong! When I launch Address Book, the restored file isn't there.
    What extra step(s) am I missing?

    Ok, that was stunningly easy. At work, I'm a sysadmin and I'm used to 'peaking behind the curtain' all the time. I overthought this restore process!
    I had the app in question open (Address Book), clicked on the Time Machine icon on the dock, and went back several months and found the cards I'm looking for! Other than some latency issues (my TM disk is in the basement, hanging off of my Airport Extreme), this process went very well. Thanks!

  • Address book pic size

    Hi all, Recently I bought an ipod touch mainly to have easy access to my address book. Customers in particular. What I want to do is attach a picture of the equipment I work on in my address book entry. I know how to do that but my question is what is the minimum size I can use and still get a good image. I can resize by pixels if that helps your answer. I want the minimum so as not to clog up the ipod memory or the macs for that matter. No reason to use a 500k pic that is sized down to postage stamp.
    Thanks!
    glenn

    They get sized down to about 50x60 pixels.
    AK

  • Is there a way to download Address Book Contacts in a .cvs file?

    I'm trying to import my contacts into a fundraising site to raise money for charity, I have over 300 contacts so doing it manually is out of the questions.  Is there an easy way to download Address Book Contacts in a .cvs file?  That's the only kind accepted.

    No.
    Export to vCard and Google for one of the many vCard to .csv converters.
    When you search for it please use .csv instead of cvs, cvs is a drug store.
    Here's a free online converter that works well.

  • Share address book between different user accounts on same computer

    my wife and i share one computer, but just started to use separate user accounts to keep our mail accounts separate. all our addresses are stored in the address book on my user account. is there a way to share that account with her so that she has access to all the addresses. this would be much easier that have 2 address books to keep updated.
    i do have a .mac account and i have only activated one email address.

    thanks for your response andrew. i've tried that but address book asks for the .mac name of the person you want to share with. i don't have a family pack .mac subscription only a single one. so would setting up an email alias for my wife accomplish this? is there a way to do this bypassing .mac all together simply because we're using the same computer?

  • Edit Distribution List in Address Book is gray

    After updating to Lion OS 10.7, the Edit Distribution List menu selection is grayed out. How do we edit Distribution List (Groups) with contacts with multiple email addresses?

    The key is that the Contact List is now being kept in the Cloud & you cannot edit the Distribution List in your Mac's Address Book.
    Easy Fix:
    Quit your Address Book
    Go to  Menu --> Sys Preferences --> iCloud
    Uncheck the CONTACTS icon
    Close Sys Pref
    Open Address Book - Edit your Distribution Lists (No longer Greyed out)
    Quit Address Book
    Go to  Menu --> Sys Preferences --> iCloud
    Check the CONTACTS icon
    You should be good to go!
    Hope this helps!
    ...John

  • Merging 2 address books without overwriting

    I want to add the contents of the address book on my office desktop IMac running leopard 10.5.6 into the address book on my black macbook laptop also running 10.5.6. is there a way to do this without completely overwriting the contents on my laptop? I don't want to lose what's already there, only add in the additional names and addresses. There is no security issue. I own the company and both machines.
    Thanks for any help or suggestions.

    Hi,
    So here's what I did. My iMac G5 running Tiger blew up (logic board) and, while I wait for my new 27" iMac, I needed to put all the contacts from the old iMac on my macbook (running Leopard), where I keep different contacts. Since I couldn't open the iMac contacts and export them as vCards (because that computer was dead and all the user data is backed up on an external HD) for instance I needed to merge both address books another way.
    After reading through all these discussions and the ones on macrumors, and realizing that Address Book doesn't come equipped to do this easily (probably to get you to pay for a mobileme account) I took a deep breath and just did the following: Created an archive of the existing contacts on my macbook and then moved the entire macbook ~library/application support/Address Book folder to some place safe just as a backup of those; then copied the same folder from my iMac backup archive into that location on the macbook. Voila, not only did all my old addresses appear, but all the macbook ones were there too, without having to reimport them. No idea why this worked but it did. WOuld love however if someone more knowledgeable has an explanation.
    Couple of notes. I tried using migration assistant, but I couldn't figure out how to get it to just migrate the address book and nothing else from my iMac user account backup. Don't want all that stuff on my macbook. Also, if you try to import an Address Book Archive, it warns you that it will delete all current addresses, so won't work to merge two different address books. And if the macbook addresses had appeared magically, my plan was to export all the addresses from the iMac that were now available on my MacBook, then replace the ~library/application support/Address Book folders again and import the vCards.
    Final note, you'd think it would be easier to synch the addresses books on two computers. I'm sure plenty of folks have both a desktop and laptop they use for different things but would like to have all their addresses available on both machines. But, as I said, I suspect it has to do with drumming up mobileme business.
    Anyways, I hope this helps someone else and I'd love some feedback on why this worked.

  • Address Book/iPhoto

    My Address Book opens fine from my dock or from my e-mail. However,in the finder under both Home/library/application support/address book/address book data and the same under the HD, when I double click address bookdata iPhoto opens instead. Any ideas???
    Bergietoo

    There is a much easier way to backup Address Book data.
    At the Address Book menu bar go to File and select Back up Address Book.
    The default name of the backup file is Address Book - (and the date).
    Save this file to the backup drive.
    If you need to recover from the backup file, at the menu bar go to File and select Revert to Address Book Backup selecting the backup file.
    There isn't much reason to open the AddressBook.data file directly.

Maybe you are looking for

  • Fnd out when a file is added to a directory

    Does anyone know if theres a way to send a signal / cause an event when a file (which could be of any type and any filename), is added to a directory. Eg When a file is added to the directory 'mynewfiles' I want to send a signal to another process th

  • How i can change date format in the query

    I have made a query and Document date format is DD/MM/YYYY but i want Document date Format as YYYYMMDD. Please help me out as soon as posible. Thanks is advance.

  • Media Source cd burning iss

    is anyone having the problem of cd's not playing properly that have been burnt via Media Source? i have a Denon stereo system that has played every burnt disc i've ever put in it - until i tried to play one burnt with Media Source. it "plays" but see

  • URL to Enterprise Service Repository

    Hi All, we have a ERP2005 evaluation system. Now I want to browse the enterprise services similar to the Preview system (esapreview.sap.com). Does anybody know the URL I have to use? Regards, Marc

  • How many GB can the Mac Mail program handle?

    My mail program has 2.2 GB. My friend told me that the mail program has a limit of 2 GB is this true?