Changin multiple records simultaneously in Tiger Address Book

I have Address Book 405 (the latest for 10.4.10).
Is there an easy way, plugin, script that will allow me to change the same field in every record to have the same value?
For example, suppose I have every record's country to 'USA' and want to change all of them to the same thing, 'United States of America', or replace all instances of a telephone area code with another - but only in all records' 'home' telephone field; (how) can I do that?
Thanks!
G5 DP 2 GHz   Mac OS X (10.4.10)   No Haxies; permissions frequently repaired etc

You do a bit of simple (relatively) AppleScripting. By way of example, if you run this script in Script Editor it will list in the Result pane all your contacts where the phone label is "mobile". It could just as simply modify the value of all matching phones:
set OldValue to value of ThisPhone
set OldValue to ...commands to to whatever editing you want
set value of ThisPhone to OldValue
but note that Address Book does not recognise sub-fields (eg area code) on the phone value.
See this thread for an example of a script that actually changes phone numbers.
AK
click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">tell application "Address Book"
set TheList to ""
repeat with ThisPerson in people
repeat with ThisPhone in every phone of ThisPerson
if label of ThisPhone is "mobile" then
set TheList to TheList & name of ThisPerson & " " & value of ThisPhone & return
end if
end repeat
end repeat
TheList
end tell</pre>

Similar Messages

  • Merging Tiger Address book contents with ML Contacts

    Hi,
    Since late December I've been the proud owner of a (gorgeous new) 27" iMac. This has replaced my old G5 workhorse which is running Tiger. The two are running side-by-side until I get everything migrated and converted.
    For the past couple of months I've been adding new contacts, as they come in, to 'Contacts' on the iMac. However I have to bring over all my old contacts from Address Book on Tiger.
    With hindsight I guess I shouldn't have done it this way but attempeted to bring them all over on day one. But I'm here now and I have lots and lots on Address book in Tiger and some in Contacts on Mountain Lion. I need both sets.
    Any help as to how I can merge the two onto Contacts on the iMac will be much appreciated.
    (If it makes any difference I don't use mail.app by the way but my Contacts are synced with my iPad).
    Bob.

    On the Tiger machine, export the contacts as vCards. If you have notes, make sure to select the option to save the notes on export--I don't know if Tiger Address Book had those options. It should produce one vCard with all contacts in it, but it may make one for every card. I can't remember what Tiger will do.
    Back up Contacts on the new Mac using File>Export>Contacts Archive.
    Move them over to the new Mac and double-click the vCard to import them into Contacts. It should not ask you to replace them, but if it does, cancel the import.

  • HT2486 Can multiple 'appleIDs' share a common address book?

    I would like to share a common address book between multiple users, so that we can see and update a core set of contacts.  Is this possible, as I understand each address book to be assigned to an applieID.

    I would like to share a common address book between multiple users, so that we can see and update a core set of contacts.  Is this possible, as I understand each address book to be assigned to an applieID.

  • Can I sync multiple .mac accounts with my address book???

    i have an idisk membership with 5 email accounts. i finally got around to syncing my address book to my .mac account. in doing this i found that i had to sync from my 'master' account. it worked fine, but when i sign on to one of my other .mac accounts my contacts are not there in the address book.
    can i only sync to the master account??? if so, this really ***** because i have multiple email addresses for various tasks (business / personal / junk). i'm really gonna be bummed.
    any help greatly appreciated!!!
    ...c

    Yes, if all the music is in the same iTunes library.
    (75555)

  • How to import Tiger Address book data into Leopard?

    How do I import the Address book data I had in Tiger, into Leopard. I backed up all my applications and the Application Support folder before I upgraded to Leopard but I can't find a way of importing the old data into the new program. I tried just copying the contents of the Address Book subfolder of Application Support but the new Leopard folder has completely different files in it....??
    Thanks

    Like all user preferences they are in /Home/Library/Preferences/ folder.
    Here's some additional info:
    Folders You Can Move to Your new Mac
    From the Home folder copy the contents of Documents, Movies, Music, Pictures, and Sites.
    In your /Home/Library/ folder:
    /Home/Library/Application Support/AddressBook (copy the whole folder)
    /Home/Library/Application Support/iCal (copy the whole folder)
    Also in /Home/Library/Application Support (copy whatever else you need including folders for any third-party applications)
    /Home/Library/Keychains (copy the whole folder)
    /Home/Library/Mail (copy the whole folder)
    /Home/Library/Preferences/com.apple.mail.plist (* This is a very important file which contains all email account settings and general mail preferences.)
    /Home/Library/Preferences/ copy any preferences needed for third-party applications
    /Home /Library/iTunes (copy the whole folder)
    /Home /Library/Safari (copy the whole folder)
    If you want cookies:
    /Home/Library/Cookies/Cookies.plist
    /Home/Library/Application Support/WebFoundation/HTTPCookies.plist
    For Entourage users:
    Entourage is in /Home/Documents/Microsoft User Data
    Also in /Home/Library/Preferences/Microsoft
    For FireFox:
    /Home/Library/Applications Support/FireFox
    /Home/Library/Preferences/org.mozilla.firefox.plist
    Credit goes to another forum user for this information.

  • Importing Tiger Address Book Archives

    FYI. When Importing Address Book archives from Tiger the address book application does not always show the newly imported addresses.
    So do the following:
    - Imported the address book
    - Replace all contents
    - Quit Address Book app
    - Relaunch Address Book and check addresses are there.
    I use the Archive facility to switch between Personal and Business addresses books.

    I see this happen sometimes too - restarting is sometimes necessary to refresh the contact list.

  • Multiple entries in iCal and Address book

    why after upgrading to lion and iOS5 does my address book and calendar have triple and quadruple entries for the same event?

    Probably because of iCloud since I assume you started it up on both Macbook and a mobile device.

  • Updation/insertion of multiple records simultaneously using check box

    Hi,
    I am using Jdev11.1.1.2.0 version. I have the following scenario.
    There is a table in the view.At run time, I need to select multiple records and update those records in the database. So i took check Box as a column in the table.*(I did not associate check box to any of the attributes (columns) in the table.)* After running the application, I selected multiple records using checkbox and submitting them. The check box is returning value as 'false' even for the selected records also instead of 'true'. Because of this we are facing the issue in updating only the selected records. Please suggest your valuable inputs.
    I have written the following code in the backing bean to get the selected rows.
    BindingContainer bindings =BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding dcIter= (DCIteratorBinding) bindings.get("PttDeliverabvleTrackerEOView2Iterator");
    RowSetIterator depRSIter = dcIter.getRowSetIterator();
    depRSIter.setRangeSize(depRSIter.getRowCount());
    Integer key = depRSIter.getRowCount();
    System.out.println("No of rows is "+ key);
    int rowIndex =0;
    for(int i =0; i<key; i++){
    PttDeliverabvleTrackerEOViewRowImpl row = (PttDeliverabvleTrackerEOViewRowImpl) depRSIter.getRowAtRangeIndex(i);
    System.out.println("Check box value2 "+ this.getSbc1().isSelected());
    if(this.getSbc1().isSelected()){
    rowIndex = i;
    System.out.println("Row Index: "+ rowIndex);
    Please let me know if it is it possible to associate a checkbox to any of the attributes while dragging and dropping the table in the view and update the records?
    I tried selecting the option 'Row Selection' while dragging and dropping the table and changed the property RowSelection->multiple. But it is not serving the purpose of updating multiple records.
    Please suggest if there is any other solution to update multiple records.
    Regards,
    Sreelatha.

    Hi,
    if you added checkboxes to a table, then at runtime the checkbox is stamped, which means that a call to this.getSbc1().isSelected() just returns the state of the last checkbox that is rendered. I don't want to go into the details of ADF Faces table rendering here, but point yu to a blog article that does what you are aiming for using ADF BC: http://sameh-nassar.blogspot.com/2009/12/use-checkbox-for-selecting-multiple.html
    Frank

  • Updating multiple records simultaneously from LOV

    Hi
    I have a form based on a single database table. After fetching and displaying records from the database in my form, I want to update ALL the displayed records with the value selected from the LOV.
    I have created a button in my form which calls this LOV, and the value selected from this LOV should be used to update ALL the records that are displayed in my form.
    Thus far I have only managed to update the first record within my form, but the rest does not get updated with the value selected from the LOV.
    Suggestions appreciated....

    First of all, don't use a form-level key-listval trigger to do the looping through your block. Why not put the pl/sql looping right in the when-button-pressed trigger right after it calls the Show_LOV?
    Remember to check if the user really selected something from the LOV -- Show_LOV returns False if user does not, True if user does.
    In this situation, you might want to create a parameter in your form, and set up the LOV to return its value into the parameter instead of Block.Dummy_Item. Otherwise, the LOV is returning the value into a record, and as soon as you navigate to the next record, the old value is no longer available. So either put the LOV selected value into a parameter, or in the pl/sql, right after Show_LOV, set a pl/sql variable to the value of :Block.Dummy_Item.
    Then in your loop, use :Parameter.Parm_Item or your pl/sql variable to set all the other values of :block.item_to_update.

  • Clicking on a record in address book causes it to hang and eventually crash

    There are some strange records in my Address Book that have lots of entries within that entry in the fields (not a record I created) that I'd like to delete, for every time a search ends on that record, Address Book HANGS. Sometimes from Email I can open another record using "Open in Address Book" to get out of the hang, but this is really a serious problem. How can I fix this? I try to export a backup of Address Book and it hangs. What can I do to rescue my Address Book?

    HI David,
    Try deleting this file.
    com.apple.AddressBook.plist
    ~/Library/Preferences.
    Move that file to the Trash and restart your Mac.
    Carolyn

  • Simplest way to move address book info from Tiger to Leopard machine?

    I recently acquired a white MacBook that runs leopard 10.5.6.
    I've not found an easy way to move my Tiger address book info to the new machine.
    I tried copying the address book from tiger onto a dvd and subsequently a flash drive, but leopard doesn't want any part of that.
    There is likely a way to export the vcards from the tiger app., but the help menu isn't much help in that regard.
    All help appreciated.

    you can copy the folder /users/username/library/application support/address book from the old computer to the new one. then start address book and it will look like it did on the old computer. another option is to make one vcard. start AB on the tiger machine, select all your contacts and drag them to the desktop. that will make one big vcard with all the contacts. move it to the other mac and import it to AB there.

  • Old Address Book on OS X Tiger

    I now have Mac mini intel Snow Leopard but need to get my old address book off of my old power pc HDD that was OS Tiger.
    I cannot import them into my new address book.
    Any ideas please.

    I'm not clear whether what you just said is that you copied the address book data from the Address Book data folder in your Tiger $HOME/Library/Application Support/AddressBook whilst solely in the Finder environment, or that you had exported the data from the Tiger Address Book application or if you mean you that you did is what I suggested you try. I don't think what you said you did is what I suggested. So how about giving that a try?
    Can you boot into Tiger now?
    IF so, can you launch Address Book?
    If so, can you select a group and see a list of all the address cards that belong to it?
    If so, can you select them all?
    If so, can you drag it to the Desktop (or to a flash drive, or to the Snow hard drive)?
    If so, what is it named? Something like "Alice Allison and 43 others.vcf?"
    If so, can you rename it to the {name of the group}.vcf?
    If so, can you now open that vcf file with Text Edit and read it?
    Does it look similar in format to:
    BEGIN:VCARD
    VERSION:3.0
    N:;;;;
    FN:Alice Allison
    EMAIL;type=INTERNET;type=HOME;type=pref:[email protected]
    EMAIL;type=INTERNET;type=WORK:[email protected]
    TEL;type=WORK;type=pref:201-555-1212
    TEL;type=WORK;type=FAX:402-555-1212
    END:VCARD
    BEGIN:VCARD
    VERSION:3.0
    N:;;;;
    FN:Bob Baer
    END:VCARD
    BEGIN:VCARD
    (Don't save when you close/quit)
    If so, can you do the same with all the other address book entries in each of the other groups?
    Now once you boot back into Snow Leopard can you open one (or more) of these {name of group}.vcf cards in Text Edit, can you still read it(them)? And they look like the same sort of format?(Again, don't save when you close/quit)
    Once you open address book, have you manually created the new groups there in the application ("+" at bottom of left column, type group name)?
    If so, can you drag the file icon of one of your newly created group "mega-vcf" cards into the Address Book window and drop it on top of the appropriate group icon (that you just created manually) in the left column of the Address Book window?
    If so, can you now see the list of address book entries in the middle column?
    If so, can you select individual address book entries in the middle column and read the card in the right column and does the data look correct?
    If so, can you do the above with all the remaining group cards?

  • Importing text file to address book?

    I created a text tab-delimited file for import. From within Address Book, ran "Import". Matched up field names. All looked good. When I clicked on "OK" basically very little happened. After a few seconds the blue OK button became clear but nothing else. I advanced another record, clicked OK on it and same few seconds then nothing. I expected all the records to be imported.
    In any case, tried this individually with a few records, then checked the Address Book and none of the info was in there.
    Is this some kind of bug? I don't see that I did anything that was wrong with the import.
    Advice appreciated.
    Richard

    Not sure if this helps, but ...
    I made a quick text file to see if I could duplicate your problem. I put in three lines, the first with field names (First, Last, Work) and the other two with corresponding data. The values within each line were tab separated. When I ran AB's import I had to match up the third field to correspond with email (work). I flicked through the displayed records (all two of them!!) and they displayed as contact cards. I then clicked OK, and unlike your description, the import dialogue immediately vanished. The records were correctly imported.
    When you look at the records in the import dialog do they all display correctly?
    Could it be a 10.4.3 issue?
    After attempting to do the import, has your contact count gone up?
    What happens if you select the "last import" group?

  • How can I get smart group in address book to email?

    digimurr
    Feb 15, 2012 9:58 AM
    Hi
    I'm trying to send an email out to a smart group I created which has about 150 members.  I right click send email while in the address book.  The group ends up in the 'To:' field.  I do a 'cmd A' to select all and move them to the 'bcc' field.  I put my email address in the 'To' field.  I create the subject line and body text which containes a url and an image with a url link.
    When I press send it immediately moves to my outbox and sits there with no activity showing in the MAIL ACTIVITY preview pane.... I've left it for quite a while thinking it might take a while but nothing changes.
    When I send it to my self only it works.   I've tried taking a smaller group last names A-C 30 recipients and it does the same thing.
    Would appreciate some help if you have had the same problem or maybe know what I've done wrong.  Oh, I've also tried it sending it out on me.com and shaw.ca email accounts...
    Thanks
    Murray Brown
    Using Lion 10.7.3
    Imac 27
    I7
    8 gig ram
    1 TB drive
    iMac (27-inch Mid 2011), Mac OS X (10.7.3)

    If you want to "send an email" to the group, you need to get the group into your email client's Contacts first...
    Select your Group > Select All
    From Address Book.App "Help" (±10 years old)
    *See emphasis below* -
    Importing and exporting vCards
    A vCard, or "virtual address card," is a standard method of exchanging data between applications. Address Book can create and read vCards, so if you have another application that also works with the vCard format, you can import or export addresses as vCards.
    Also, you can send your own card to other people in vCard format. They can use the vCard to add your information to their address books.
    You can also use vCards to add addresses to the Contacts list on your iPod.
    To create a vCard, drag an address card out of the Address Book window.
    To add someone else's vCard to your address book, drag it into the Address Book window.
    To create a single vCard with multiple entries, drag more than one card out of the Address Book window.
    To create multiple vCards at the same time, hold the Option key when dragging multiple cards out of the Address Book window.
    You can also work with vCards using commands in the File menu.
    Address Book also supports Lightweight Directory Interchange Format (LDIF). LDIF is an ASCII file format used to exchange information and enable synchronization of that information between Lightweight Directory Access Protocol (LDAP) servers. You can't export information from Address Book in LDIF format; you can only import it. Address Book can import and export vCards.
    To determine the format of a document, select the document and choose File > Get Info. The format, or kind of document, is listed at the top.
    If another application won't accept vCards in the default 3.0 format, try changing the format to 2.1 in the vCard pane of Address Book Preferences, and send the vCard again.
    ÇÇÇ

  • Importing entire address book archive

    My intention is to create an Address Book on OS 10.4 that is identical to my Address Book on OS 10.5. I exported the entire Address Book on OS 10.5 (created a .abbu file) and then tried to import it on OS 10.4 using the File > 'Revert to Address Book Backup...' command. In return a message warns me that I am about to overwrite the database. When I click OK the computer returns a sound. That's it.
    Is there a way to do this?

    I don't know why that didn't work - it worked for me when I tried it.
    As an alternative, you should be able to export all the Leopard entries as vCards contained in a single .vcf file as a "group vCard", and then import that .vcf file into the Tiger Address book. This will add the Leopard entries to whatever was there before, rather than overwriting them. To create the group vCard file in Leopard, click on the "All" icon in the Group column, then File menu>Export>Export Group vCard.

Maybe you are looking for

  • Crystal Reports for VS 2010  Deployment

    Hi All, I am having trouble with CR deployment. I get the error Crystal report data base logon failed. when I click the verify database in the field explorer I get the error :the proccess can not access the file <my db file> because it is being used

  • Minimal Photoshop CS4 Crashes . . .

    I'm running Photoshop CS4 on an '07 Mac Pro with Photoshop GPU execration turned on.  I had installed Photoshop CS4 after installing a new internal SATA drive and partitioning the new drive by the limited abilities of the OS 10.4.x Mac Pro OEM instal

  • Outlook integration-Layout files not found

    Hi Experts,                  I have installed Addon-outlook intgration successfuly and when i start B1 Create default templates popup comes and gives error like   BO2034: Layout files not found in folder 'C:\Program Files\SAP\SAP Business One Server\

  • DB statistics - Use of 'Construct Database Statistics ' in process chain

    Hello, I would like to know the differences (or is it complementar ?) between: - using Business content Statistics cubes + Tools / BW statistics for infoproviders - variant 'Construct Database Statistics' that can be used in process chains Have the 2

  • Firefox browser style.display issue (IE works fine)

    I have a dropdown which calls javascript method on change the selection. In the JS function, initially i make one row div is invisible if dropdown if i selected 1 that row become visible if i select2 that row become invisible ...this works fine in IE