Moving contacts from Outlook 2007 to Mac Address Book

Hello all,
I've tried to email VCard attachments of contacts from an Outlook 2007 / Exchange Server account so I can import them into my MAC Address Book. When I look at my sent folder in Outlook, the attachment shows a VCF attachment. When I pick up the email on my MAC using Mail, the attachment always comes back as WinMail.dat which the Address Book doesn't recognize.
Furthermore, I've tried sending the VCard to a Yahoo email address and download the attachment. That worked fine.
Was wondering if someone could help me isolate where the issue may be. Thanks.

If Outlook Express provides for exporting contacts in vCard format, you can send all contacts as vCard attachments to a message sent to an email account you access with the Mail.app. Save the vCard attachments from the message to a created folder on the Desktop and then use the Address Book import feature selecting vCards.
If OE does not provide for exporting contacts in vCard format, it should provide for exporting contacts as a tab-delimited text file.
The Tiger Address Book includes a Text File import selection/option.

Similar Messages

  • Cannot transfer contacts from iPhone 3GS to Mac Address book

    Hi there
    I've been searching for an answer all over these forums and google, but to no avail.
    I'm using a 3GS and I'm on Snow Leopard on the mac.
    I have tried resetting the sync utility settings and all other tweaks with the phone and the iTunes panels, but I simply cant add any of the numbers that I have added to my phone on to the mac address book. The contacts are transferred to iCloud though. But there is no way to export the iCloud contacts over to the mac address book either. I have to now manually search for all the new contacts I've added (which is a project in itself) and retype it in the mac address book. Pretty ridiculous!!!!!
    Is there a fix for this or is Apple wanting everyone to buy Lion to use the dektop version of iCloud.
    Please let me know
    Thanks
    Best regards
    Zam Shabeer Thahir

    Hi guys
    Managed to find the solution
    1) On the iPhone go to settings > iCloud > Switch off contacts. (Keep contacts on phone)
    2) Then on the mac go to address book and make an archive of your contacts just in case something goes wrong. You can do this by going to File > Export > Create an archive.
    3) Then delete all the contacts and groups from your mac address book.
    4) Then go to iTunes and backup by right clicking on the iPhone on the sidbar.
    5) Sync
    Your contacts from the phone should repopluate the mac address book
    Hope that helps. It worked for me
    Best regards
    Zam Shabeer Thahir

  • Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

    Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

    Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

  • How to export contacts from Outlook 2007 to Apple iphone 3gs

    how to export contacts from Outlook 2007 to Apple iphone 3gs

    Hi,
    You can import your contacts from your Outlook using iTunes. Connect yout iPhone / iPad to iTunes, then set sync contacts with outlook option. Then Sync your device.
    Note: Your existing contacts may get replaced if you don't read the options carefully.
    You can check out this website if you need more detailed information on this.
    -aneesh-
    www.sarayoo.info

  • Sync contacts from outlook 2007 to gmail problem

    Hello everybody! I have an issue when I use the sync zone in order to sync contacts from outlook 2007 to gmail with pc companion 2.10.065
    The problem is that some certain fields (like "work 2" number) do not sync at all.
    Other fields (like the "webpage" field) sync on some contacts and do not sync on some other contacts.
    Is there a workaround on that?

    I have just tested this and it seems just as you say that any second number of the same category won't be synced. I think this is a limitation at Google not matching/supporting the exact same PIM filed's.
    However I could not replicate the problem with the web page field.
     - Community Manager Sony Xperia Support Forum
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Moving contacts from Outlook to address book on mac

    I need help getting contact from outlook to address book on my mac.

    I believe Outlook should have an option to export contacts as a vcard. do so, move the vcard to the mac and drop it onto Address Book there.

  • Exporting selected contacts from Outlook 2011 for Mac

    I've wanted to easily export a set of selected contacts from Outlook in Microsoft Office for Mac 2011.  I've been through many threads about synching to Address Book and then exporting, but I've found a host of troubles, including duplicate copies of contacts being created.
    So, I finally broke down and wrote an AppleScript script to export all of the currently selected contacts from Outlook to a file in either vcf (vcard) or csv (comma separated value) format.  The best use of this script is to:
    -- Install this as a script in Microsoft Outlook by saving the script below to Documents>Microsoft User Data>Outlook Script Menu Items
    -- Change to your Contacts in Outlook.  Use the Outlook search bar to find the contacts you want to export.  You might search by name, category, company, or anything else that identifies the contacts you want to export.  Or, you might just leave the view showing all contacts.
    -- Select the contacts you want to export
    -- Launch the script
    The script will have you select between vcard and csv and select a destination file.  This hasn't been optimized for speed, so if you're exporting 100's or 1,000's of contacts, be patient.  And there isn't a progress bar at present, so you have to wait.  It will display an alert when it's complete.
    Sorry not to have a download location for you.  You'll just have to copy the script text :-).  Keep in mind there's been some but limited testing.  Read the comments for details.  And enjoy.
    -- jsc
    --  Export Outlook Contacts
    --  (c) 2012 J. Scott Carr.  The script is made available for free use, with no
    --  warranty, under the Creative Commons license agreement.
    --  This script has only been tested on Mac OS X 10.6.8 with Micrsoft Outlook for
    --  Mac 2011 version 14.1.4.
    property byCategory : "By category"
    property byPattern : "Names matching pattern"
    property vcardFormat : "VCard"
    property csvFormat : "CSV"
    --  main
    set contactsToExport to {}
    -- Get the contact selection
    set contactsToExport to get_contacts_to_export()
    if (count of contactsToExport) is 0 then
              display alert "Please select contacts to export and rerun script" as warning
              return
    end if
    -- Shall we export to vcard or CSV?
    set theFormat to vcard_or_csv()
    if theFormat is "" then
              display alert "Error: Must select VCard or CSV format" as warning
              return
    end if
    -- Get and open the output file
    set oFile to open_output_file(theFormat)
    if (oFile is equal to -128) then
    display alert "Canceled"
              return
    else if (oFile < 0) then
              display alert "File open failed (" & oFile & ")" as warning
              return
    end if
    -- Export the contacts
    display dialog "About to export " & (count of contactsToExport) & " contacts in " & theFormat & " format.  Proceed?"
    if button returned of result is not "OK" then
              try
      close access oFile
              end try
              return
    end if
    if theFormat is vcardFormat then
    export_to_vcard(contactsToExport, oFile)
    else if theFormat is csvFormat then
    export_to_csv(contactsToExport, oFile)
    else
              display alert "Invalid format" as warning
    end if
    close access oFile
    display alert "Complete"
    return
    --  get_contacts_to_export()
    --  We're going to export the Contacts currently selected in Outlook.
    --  Check that the current selection is Contacts and not some other Outlook
    --  object.  Snag the selected Contacts and return them as a list.
    --  A side note.  When I started this, I built options to enter a matching
    --  name string or select a category.  And then it hit me that those features
    --  are much more robust in Outlook, and it would be easy to just use the
    --  current selection.
    --  There is some strange behavior that Outlook needs to have recently been
    --  the front, active window.
    on get_contacts_to_export()
              set selectedContacts to {}
              tell application "Microsoft Outlook"
                        set theSelection to selection
                        if class of theSelection is list then
                                  if class of the first item of theSelection is contact then
                                            copy theSelection to selectedContacts
                                  end if
                        else
                                  if class of theSelection is contact then
                                            copy theSelection to selectedContacts
                                  end if
                        end if
                        return selectedContacts
              end tell
    end get_contacts_to_export
    --  vcard_or_csv()
    --  Get the format to use when exporting contacts
    on vcard_or_csv()
              choose from list {vcardFormat, csvFormat} with prompt "Select export file format:"
              if result is false then
                        return ""
              else
                        return first item of result
              end if
    end vcard_or_csv
    --  open_output_file()
    --  Open the destination file for the export, returning the file descriptor or the error number
    --  if the operation fails
    on open_output_file(exportType)
    -- Get the filename, letting "choose file name" deal with existing files.
              set theDate to current date
              set theTime to time of theDate
              if exportType is csvFormat then
                        set fileName to "contacts.csv"
              else
                        set fileName to "contacts.vcf"
              end if
              try
                        set outputFile to choose file name with prompt "Select export destination file" default name fileName
              on error errText number errNum
                        return errNum
              end try
    -- Open the file
              try
      -- Open the file as writable and overwrite contents
                        set oFile to open for access outputFile with write permission
      set eof oFile to 0
              on error errText number errNum
                        display alert "Error opening file: " & errNum & return & errText as warning
                        try
      close access oFile
                        end try
                        return errNum
              end try
              return oFile
    end open_output_file
    --  export_to_vcard()
    --  Export each of theContacts to the open file outFile as a set of vcards.  Note that the
    --  vcard data is from the "vcard data" property of the theContacts.  This routine
    --  doesn't attempt to reformat an Outlook vcard, nor limit the fields included
    --  in the vcard.
    on export_to_vcard(theContacts, outFile)
              set vcards to {}
              tell application "Microsoft Outlook"
                        repeat with aContact in theContacts
                                  copy vcard data of aContact to the end of vcards
                        end repeat
              end tell
              repeat with aCard in vcards
      write (aCard & linefeed) to outFile
              end repeat
    end export_to_vcard
    --  export_to_csv()
    --  Export each of theContacts to the open file outFile in csv format
    on export_to_csv(theContacts, outFile)
              set csvFields to {}
    -- Get the fields of the contact to export
              set csvFields to init_csv()
    -- Write the header row
              set nFields to count csvFields
    write first item of csvFields to outFile
              repeat with i from 2 to nFields
      write "," & item i of csvFields to outFile
              end repeat
    write linefeed to outFile
    -- Export the fields of the contacts in CSV format, one per line
              repeat with aContact in theContacts
      write build_csv_line(csvFields, aContact) & linefeed to outFile
              end repeat
    end export_to_csv
    --  init_csv(): defines the fields to export when csv format is selected
    --  Each of the fields in the list must match a name used in the routine build_csv_line().
    --  The idea is to later create a a pick list so the user can select which contact properties
    --  to export.
    on init_csv()
              set csvFields to {"first name", "last name", "middle name", "title", "nickname", "suffix", "phone", "home phone number", "other home phone number", "home fax number", "business phone number", "other business phone number", "busines fax number", "pager number", "mobile number", "home email", "work email", "other email", "company", "job title", "department", "assistant phone number", "home street address", "home city", "home state", "home country", "home zip", "business street address", "business city", "business state", "business country", "business zip", "home web page", "business web page", "note"}
    end init_csv
    --  build_csv_line(): format one line for the csv file
    --  Parameter csvFields determins which fields to include in the export.
    --  Unfortunately I've not figured out how to use perl-style generation of
    --  indirect references.  If I could, this would have been much more elegant
    --  by simply using the field name to refer to a Contact properly.
    --  Note that email address are a special case as they're a list of objects in
    --  Outlook.  So these are handled specially in the export function and can only
    --  be selected by the column names "home email", "work email", and "other email". 
    --  Outlook allows a contact to have more than one of each type of email address
    --  but not all contact managers are the same.  This script takes the first of
    --  each type.  So if a contact has more than one "home" email address, you will
    --  only be able to export the first to a csv file.  Suggest you clean up your
    --  addresses in Outlook to adapt.  The alternative is to support multiple
    --  columns in the csv like "other email 1" and "other email 2", but that's not
    --  supported in this version.
    --  Another note.  In this version, any embedded "return" or "linefeed" characters
    --  found in a property of a contact are converted to a space.  That means that
    --  notes, in particular, will be reformated.  That said, this gets arond a problem
    --  with embedded carriage returns in address fields that throw off importing
    --  the csv file.
    --  Also note that at this time IM addresses aren't supported, but it's an easy add
    --  following the same logic as email addresses.
    on build_csv_line(csvFields, theContact)
              set aField to ""
              set csvLine to ""
              set homeEmail to ""
              set workEmail to ""
              set otherEmail to ""
              tell application "Microsoft Outlook"
                        set props to get properties of theContact
      -- Extract email addresses from address list of contact
                        set emailAddresses to email addresses of props
                        repeat with anAddress in emailAddresses
                                  if type of anAddress is home then
                                            set homeEmail to address of anAddress
                                  else if type of anAddress is work then
                                            set workEmail to address of anAddress
                                  else if type of anAddress is other then
                                            set otherEmail to address of anAddress
                                  end if
                        end repeat
      -- Export each desired fields of the contact
                        repeat with aFieldItem in csvFields
                                  set aField to aFieldItem as text
                                  set aValue to ""
                                  if aField is "first name" then
                                            set aValue to get first name of props
                                  else if aField is "last name" then
                                            set aValue to last name of props
                                  else if aField is "middle name" then
                                            set aValue to middle name of props
                                  else if aField is "display name" then
                                            set aValue to display name of props
                                  else if aField is "title" then
                                            set aValue to title of props
                                  else if aField is "nickname" then
                                            set aValue to nickname of props
                                  else if aField is "suffix" then
                                            set aValue to suffix of props
                                  else if aField is "phone" then
                                            set aValue to phone of props
                                  else if aField is "home phone number" then
                                            set aValue to home phone number of props
                                  else if aField is "other home phone number" then
                                            set aValue to other home phone number of props
                                  else if aField is "home fax number" then
                                            set aValue to home fax number of props
                                  else if aField is "business phone number" then
                                            set aValue to business phone number of props
                                  else if aField is "other bsiness phone number" then
                                            set aValue to other business phone number of props
                                  else if aField is "bsuiness fax number" then
                                            set aValue to business fax number of props
                                  else if aField is "pager number" then
                                            set aValue to pager number of props
                                  else if aField is "mobile number" then
                                            set aValue to mobile number of props
                                  else if aField is "home email" then
                                            set aValue to homeEmail
                                  else if aField is "work email" then
                                            set aValue to workEmail
                                  else if aField is "other email" then
                                            set aValue to otherEmail
                                  else if aField is "office" then
                                            set aValue to office of props
                                  else if aField is "company" then
                                            set aValue to company of props
                                  else if aField is "job title" then
                                            set aValue to job title of props
                                  else if aField is "department" then
                                            set aValue to department of props
                                  else if aField is "assistant phone number" then
                                            set aValue to assistant phone number of props
                                  else if aField is "age" then
                                            set aValue to age of props
                                  else if aField is "anniversary" then
                                            set aValue to anniversary of props
                                  else if aField is "astrololgy sign" then
                                            set aValue to astrology sign of props
                                  else if aField is "birthday" then
                                            set aValue to birthday of props
                                  else if aField is "blood type" then
                                            set aValue to blood type of props
                                  else if aField is "desription" then
                                            set aValue to description of props
                                  else if aField is "home street address" then
                                            set aValue to home street address of props
                                  else if aField is "home city" then
                                            set aValue to home city of props
                                  else if aField is "home state" then
                                            set aValue to home state of props
                                  else if aField is "home country" then
                                            set aValue to home country of props
                                  else if aField is "home zip" then
                                            set aValue to home zip of props
                                  else if aField is "home web page" then
                                            set aValue to home web page of props
                                  else if aField is "business web page" then
                                            set aValue to business web page of props
                                  else if aField is "spouse" then
                                            set aValue to spouse of props
                                  else if aField is "interests" then
                                            set aValue to interests of props
                                  else if aField is "custom field one" then
                                            set aValue to custom field one of props
                                  else if aField is "custom field two" then
                                            set aValue to custom field two of props
                                  else if aField is "custom field three" then
                                            set aValue to custom field three of props
                                  else if aField is "custom field four" then
                                            set aValue to custom field four of props
                                  else if aField is "custom field five" then
                                            set aValue to custom field five of props
                                  else if aField is "custom field six" then
                                            set aValue to custom field six of props
                                  else if aField is "custom field seven" then
                                            set aValue to custom field seven of props
                                  else if aField is "custom field eight" then
                                            set aValue to custom field eight of props
                                  else if aField is "custom phone 1" then
                                            set aValue to custom phone 1 of props
                                  else if aField is "custom phone 2" then
                                            set aValue to custom phone 2 of props
                                  else if aField is "custom phone 3" then
                                            set aValue to custom phone 3 of props
                                  else if aField is "custom phone 4" then
                                            set aValue to custom phone 4 of props
                                  else if aField is "custom date field one" then
                                            set aValue to custom date field one of props
                                  else if aField is "custom date field two" then
                                            set aValue to custom date field two of props
                                  else if aField is "note" then
                                            set aValue to plain text note of props
                                  end if
                                  if aValue is not false then
                                            if length of csvLine > 0 then
                                                      set csvLine to csvLine & ","
                                            end if
                                            if (aValue as text) is not "missing value" then
                                                      set csvLine to csvLine & "\"" & aValue & "\""
                                            end if
                                  end if
                        end repeat
              end tell
    -- Change all embeded "new lines" to spaces.  Does mess with the formatting
    -- of notes on contacts, but it makes it cleans the file for more reliable
    -- importing.  This could be changed to an option later.
              set csvLine to replace_text(csvLine, return, " ")
              set csvLine to replace_text(csvLine, linefeed, " ")
              return csvLine
    end build_csv_line
    --  replace_text()
    --  Replace all occurances of searchString with replaceString in sourceStr
    on replace_text(sourceStr, searchString, replaceString)
              set searchStr to (searchString as text)
              set replaceStr to (replaceString as text)
              set sourceStr to (sourceStr as text)
              set saveDelims to AppleScript's text item delimiters
              set AppleScript's text item delimiters to (searchString)
              set theList to (every text item of sourceStr)
              set AppleScript's text item delimiters to (replaceString)
              set theString to theList as string
              set AppleScript's text item delimiters to saveDelims
              return theString
    end replace_text

    Thank You, but this is a gong show. Why is something that is so important to us all so very, very difficult to do?

  • Transfer address book from M-access to Mac address book

    Hi,
    I have a relatively new MacBook pro 17", and i am new to the whole operating system.
    My old laptop running on Windows XP has all my houses address's for friends and everyone on it stored in Microsoft Access, and i wish to transfer this to the mac addresss book.
    can anyone help me with this?
    I would also like to say that when i have tried opening up the address's in M-Access i have exported them as a .txt file yet Mac Address book does not recognise this.
    I have already also managed to transfer email address's from Microsoft outlook and this worked fine.
    If you know the answer would you mind emailing me to
    [email protected]
    MacBook pro 17" Mac OS X (10.4.8) 2.33ghz 2gb X1600-256vram

    no, from Microsoft access i can not export a text file,
    for some reason it doesn't have this option
    thanks

  • Moving address book from PC outlook express to Mac address book

    What software or other magic do I need to get the address book with the group lists out of Outlook Express PC and into Mac's Address Book?
    Tried Thunderbird -- that didn't separate the groups of lists nor did it bring over all the information.
    Mac is an OS X 10.5.8

    Better to post where all the Leopard Address Book gurus hang out:
    http://discussions.apple.com/forum.jspa?forumID=1223

  • Move contact from Outlook 2007 to Outlook 2010 via POP3

    Dear Expert,
    My My company just upgrade from Windows XP to Windows 7 by using Easy Transfer. And he move outlook 2007 to 2010 by using Easy Transfer too. we have used POP3 from mail hosting. we got the problem in
    contact address didn’t shown in picture. Please advice

    You can try to export/import categories using OutlookFreeware.com's
    free
    Export Master Category List and
    Import Master Category List tools. There are also free utilities for
    exporting contacts and
    importing contacts, give it a try!Alexey Kuznetsov,
    Relief Software

  • Updates to contacts from outlook 2007 on Iphones and Ipad

    Hello... I was wondering if anyone else is having issues finding a solution to this problem.  I work for a large distribution company and I am responsible for making sure all the mobile equipment is up to date with the latest contact information from Outlook.  We do not have an exchange server and therefore contacts are not automatically updated when a change is made in Outlook.  Right now I manage the list from my main PC and then the list is then updated manually onto each and every device (we have almost 300 devices).  I would like to be able to manage these updates remotely if possible.  Does anyone know of a program that works with Apple Iphones and Ipads?  We have tried many different types of programs (including icloud) and our mobile service provider has also made attemps to help us with this issue.  Any advice would be greatly appreciated.

    Do you have google sync installed for your contacts?  If you do, IT may be what is doubling your contacts!  I run 2000, not 2007, but I had a similar problim. 
    AND each time I tried to correct any addresses Google thoguht they were new and recoppied the whole address book again!  Went for 700 contacts to over 8000 before I got it figured out

  • HT4489 How to import contacts from outlook 2007?

    Can someone explain to me how I can import my contacts from my pc using microsoft outlook 2007?

    Hi,
    You can import your contacts from your Outlook using iTunes. Connect yout iPhone / iPad to iTunes, then set sync contacts with outlook option. Then Sync your device.
    Note: Your existing contacts may get replaced if you don't read the options carefully.
    You can check out this website if you need more detailed information on this.
    -aneesh-
    www.sarayoo.info

  • IO7 removed my contacts from Outlook 2007

    After updating to the iO7, my contacts are all now showing up as "in icloud".  When I create a new email, all of my contacts are gone from the drop down boxes and I can not select ANY of my contacts to add to the "To:" or "CC:" at all. 
    How do I fix this issue????
    I am running Windows 7 Professional with Windows Office 2007 - Outlook 2007.
    Thanks,

    To back up. if you still want V24 in case the newest does not work it is here http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/24.8.0/win32/en-GB/
    Note the win and en_GB in the link hence the need for that information to point you to the right download. It is however a public FTP server, so your welcome to look around if you want to.

  • TS1324 how to sinc contacts from outlook 2007 to iphode5 in itunes 11.0.4.4

    I was a blackberry user. Now i am a iphone user . I have done a sinc beetwen my old blackberry and the outlook . I have my blackberry contacs in the outlook contacts agenda . But i cant find a way to import this contacts to my iphone from the itunes 11.0.4.4 . could anybody help , please?

    Hello telmofromriodejaneiro,
    Congratulations on your new iPhone!  I found an article with steps to sync your contacts from your computer to your iPhone:
    iTunes 11 for Windows: Sync contacts, calendars, and other info with iPod, iPhone, or iPad
    http://support.apple.com/kb/PH12317
    If you are still having trouble syncing your contacts, I recommend reviewing the following article:
    iPhone, iPad, iPod touch: Troubleshooting contact and calendar syncing via USB on Windows
    http://support.apple.com/kb/HT1692
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Address book transfer from Palm 3x to Mac Address Book Lion

    Have a vintage Palm3x synched with a vintage Dell Inspiron 8300 desktop computer using XP.  Recently aquired a Mac Book Pro with the new Lion OS.  Is there any way to transfer the address book and memos from the old machine to the new?  Apple recommended trying to transfer via a flash drive using the .csv format.  When I tried to export the data from the Palm Desktop OS 3.0.1 to the flash drive, I got a message: :  "Export error, *.csv contains an invalid path".  Heard from another source that Palm 3X is incompatible with Lion OS anyway, and to try to export to Microsoft Outlook on the old Dell first and then to attempt to synch with the Mac from Outlook...  
    Any ideas on how this might be done, and if so, what exact steps should I take?  Should I still attempt to sync with Outlook with .csv format? Tried this, but couldn't find the appropriate folder to export to - under the C: drive, there were only about 6 or 8 options, none of which seemed to have anything to do with Outlook.
    Post relates to: Palm IIIx

    I tried going to the application support folder to get the address book to transfer from my iMac with Leopard to my Powerbook with Tiger. It didn't work for me either. So here's what I did and it worked like a charm:
    Select all contacts in each separate group in your address book on your iMac and drag them individually to a thumb or flash drive. This will create a vcard for each of the groups. ( I had 8 groups). Plug the drive into your Powerbook, add the name of each group you are transferring, and drop each group into the proper group on the Address book. This essentially copies each V-Card from one computer to the other. If you have obsolete addresses on your Powerbook, they will be automatically updated. This may be too late to help you, but perhaps someone else may have the same problem.

Maybe you are looking for

  • Error uninstalling Adobe Acrobat X Pro

    SCCM 2012  Server is at SP1 CU3  Clients are varied...  I have a package created to run the following command line:  msiexec /x {AC76BA86-1033-F400-7760-000000000005} /qn  It is set to run Hidden  Requirements:     Any platform     Estimated disk spa

  • How do perform a factory reset on my iMAC7,1 without the disc?

    I recently inherited a 2007 model iMAC model 7,1 operating the Mac OS X version 10.4.11 but I want to restore it to its factory settings. How do i accomplish this without the installment disc that originally came with the iMAC?

  • When to restart the services OC4J_BI_FORMS & HTTP_SERVER

    During the deployment of our application on the 10G application server, we generally make entries in the following files: 1) Default. 2) fmrweb.res 3) forms90 4) formsweb and 5) registry files. but i am not sure changes into which files needs me to r

  • Why are my photos below and not to the right?

    I have a layout problem and it's driving me nuts. The code I have for a page is a hodgepodge of sorts and I cannot, for the life of me, figure out how to get two pictures to be on the right hand side. This is what I want it to look like: But all I ca

  • Playing sound using ActionScript 3.0 (newbie)

    I have a Flash animation I've created, and at the last minute we have decided to add one audio track to the background.  The problem is, I have a looping animation in the timeline, so simply inserting the audio into a layer in the timeline will not w