How do I merge my hotmail calendar into ical?

I am trying to upload my hotmail calendar into ical. How do I do this?
Thanks!
Casey

HI,
Try Version Tracker for a utility can can export to the iCal format.
Carolyn

Similar Messages

  • I ended up having two id's, one being my original when first getting into itunes and the other came when I opened a me account.  I have purchases under the original id.  How do I merge the old account into the new account

    I ended up having two id's, one being my original when first getting into itunes and the other came when I opened a me account.  I have purchases under the original id.  How do I merge the old account into the new account

    Sorry, but it is not possible to merge two Apple IDs/iTunes Store accounts.
    Regards.

  • How do i merge two pdf files into one

    How do i merge 2 pdf files into one.

    Open up the first pdf in Preview
    Then from Menu
    select from Edit Menu
    Select Insert (your choice of)
              Page from Scanner
              Page from File (select your PDF file)
              Blank Page
    You can then save as your first file or rename it

  • How do I combine all my calendars into one and delete the others?

    I have a work computer, a home desktop, and Apple air laptop and an 1phone 4s.
    I use Outlook calendar for all my appointments and only need one calendar.
    When I get notifications of my upcoming events on the Oulook page and on my iphone, I get multiple notifications, sometimes as many as 6 times.
    How can I combine all my calendars into one and delete the others?

    Your old account is the one you migrated, but it has been renamed because the new account had the same name. "Fixing" this is a bit complicated. It is possible to transfer data from one account to the other. See Transferring files from one User Account to another.
    A cleaner solution is to do this:
    Create a temporary new admin user account with a completely different username.
    Log into this new account.
    Delete the new account you created before migrating.
    Delete the old account you migrated that has the changed name.
    Re-migrate your old account from the Mini.
    Log into the newly migrated account and delete the temporary account.
    And, the simplest solution is to use the migrated account as-is and delete the account you originally made on the new computer.

  • How do I merge 105 PDF's into a Single PFD?

    How do I merge 105 pdf's into a single PDF.
    I have already tried doing this in PREVIEW, selecting all, and then saving, and saving as. But it is for me, to no avail. When I re-open, all I get is the first page.
    please help.

    CRB wrote:
    How do I merge 105 pdf's into a single PDF.
    I have already tried doing this in PREVIEW, selecting all, and then saving, and saving as. But it is for me, to no avail. When I re-open, all I get is the first page.
    So, I'm not the only one unable to merge docs thru Preview.
    This is why I wrote my own script to do that.
    --[SCRIPT join_PDFs]
    Enregistrer le script en tant que Script : join_PDFs.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:
    aller au menu Scripts , puis choisir join_PDFs
    Vous pouvez également enregistrer le script en tant qu'application.
    Vous pourrez alors glisser déposer les icônes de PDFs à fusionner sur celle du script.
    J'ai trouvé le code principal dans une page Web.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    Sous 10.6.x,
    aller dans le panneau "Général" du dialogue Préférences de l'Éditeur Applescript
    puis cocher la case "Afficher le menu des scripts dans la barre des menus".
    --=====
    Save the script as a Script: join_PDFs.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:
    go to the Scripts Menu, choose Numbers, then choose "join_PDFs"
    You may also save the script as an application.
    Then you will be anle to drag an drop PDFs icons on the script one.
    I found the main code in a Web page.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/01/18
    --=====
    on run
    if parle_anglais() then
    set les_fichiers to choose file "Select the PDFs files to merge" of type {"com.adobe.pdf"} with multiple selections allowed without invisibles
    else
    set les_fichiers to choose file "Sélectionner les fichiers PDFs à fusionner" of type {"com.adobe.pdf"} with multiple selections allowed without invisibles
    end if
    my main(les_fichiers)
    end run
    --=====
    on open sel
    my main(sel)
    end open
    --=====
    on main(lesPDFs)
    local p2s, alias_existe, aPath, chemindu_nouveauPDF, les_UNIXs
    set lesPDFs to lesPDFs as list -- just for safe
    set p2s to "" & (path to startup disk)
    tell application "System Events" to set alias_existe to exists disk item (p2s & "joinPDF.py")
    If it doesn't exist, create a symbolic link to a python script
    delivered by Apple in an Automator process.
    if not alias_existe then
    set aPath to quoted form of "/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py"
    do shell script "ln -s " & aPath & " joinPDF.py"
    end if
    set chemindu_nouveauPDF to "" & (path to documents folder) & (do shell script "date +_%Y%m%d-%H%M%S") & ".pdf"
    set les_UNIXs to {}
    repeat with i from 1 to count of lesPDFs
    copy quoted form of POSIX path of item i of lesPDFs to end of les_UNIXs
    end repeat
    set les_UNIXs to my recolle(les_UNIXs, space)
    do shell script "./joinPDF.py -o " & quoted form of POSIX path of chemindu_nouveauPDF & space & les_UNIXs
    tell application "Finder" to open file chemindu_nouveauPDF
    end main
    --=====
    on recolle(l, d)
    local oTIDs, t
    set oTIDs to AppleScript's text item delimiters
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to oTIDs
    return t
    end recolle
    --=====
    on parle_anglais()
    return (do shell script "defaults read 'Apple Global Domain' AppleLocale") does not start with "fr_"
    end parle_anglais
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) mardi 18 janvier 2011 12:24:51

  • How do you merge multiple pdf's into one document?

    How do you merge multiple pdf's into one document?

    Hi pharmovative,
    You can use the Combine PDF feature of Adobe PDF pack to combine multiple PDF files into one document. (Or, if you have the full version of Acrobat, you an do it there as well by choosing Create > Combine Files into a Single PDF.)
    Please let us know if you need further assistance.
    Best,
    Sara

  • How do i merge multipule pdf files into one file?

    how do i merge multipule pdf files into one file?

    One method:
    Open Acrobat XI Pro - use this "click path":
    File :: Create :: Combine Files into a Single File
    Be well...

  • How do I merge 2 pdf files into one file?

    How do I merge 2 pdf files into one file?

    I use PrimoPDF (free download) to create pdf files. To merge two docs/pdfs/etc., print the first to a new pdf using Primo. Close it, then print the second and save it to the same new pdf. Primo gives you the option to 'append' or 'overwrite' the original file. By using 'append', you are just adding it to the back of the existing file. You can do this repeatedly to resort or combine existing pages into a new pdf.
    Also, I'm using Adobe Reader X.

  • How do I merge multiple pdf documents into 1 with my iPad ?

    How do I merge multiple pdf documents into 1 with my iPad ? We are required by our customer 1 document that includes 4 different documents from different departments. Currently with our PC we can merge PDF files, excel or word files in to 1 PDF document. How can I do the same with our iPads and iPad minis using adobe?

    blogs.adobe.com We are excited to announce that Adobe CreatePDF application is now available on iOS. With this, Adobe brings rich, high-fidelity and Acrobat-like PDF creation to the iOS devices. You can now convert all your documents on iPad, iPhone & iPod touch devices to PDF for reliable, secure sharing and viewing across PCs, tablets & Smartphones.
    Robert Monsalve
    [signature removed by host]

  • How do I merge new imported photos into an existing event?

    How do I merge new imported photos into an existing event while using the latest version of iPhoto?

    You can merge two Events simply by dragging one to the other.
    You can move photos between Events by drag and drop or by first flagging them, then switching to Events View and selecting the target Event and going Events Menu -> Add Flagged Photos to selected Event.

  • HT1296 How do I sync my computer calendar into my iphone?

    How do I sync my computer calendar into my iphone?

    What program is your calendar in on your computer? What computer OS do you use? If it is a supported calendar application, you can connect the iPhone to the computer, open iTunes, on the Info page select the calendar and sync. Too many other variables right now to answer your question easily. Please answer the earlier questions.

  • How to import calendar into iCal?

    I am trying to import a calendar into iCal. Here is my AppleScript:
    set theFile to "Sample.ics"
    tell application "iCal"
    open theFile
    end tell
    tell application "System Events"
    tell process "iCal"
    tell window "Add events"
    click pop up button 1
    click menu item "New Calendar" of menu 1 of pop up button 1
    click button "OK"
    end tell
    end tell
    end tell
    I have specified a full path for theFile in the actual script. Here is what happens when I run it:
    The iCal icon starts jumping and the script just stays running. If I hunt around I can find the "Add events" window and it is just sitting there waiting for interaction. If I click the pop up button and select New Calendar then click OK the file imports like I wanted and my script errors out saying it can't find the "Add Events" window. Clearly my script loads the file into iCal fine. Then it has problems. Here are my guesses as to what goes wrong:
    1. maybe the "Add event" window is modal and iCal won't respond to the script until the window is dealt with.
    2. maybe the pop up button is not a pop up button and is some other UI element .
    3. maybe there is an issue with focus
    4. maybe I have no clue, should stop speculating, and someone will help me.

    I'm stuck too. Although the Accessibility Inspector describes the “Add events” window as belonging to iCal, the script seems not to see that window as a UI element of iCal:
    tell application "iCal"
    activate -- essential statement!
    open theFile
    end tell
    tell application "System Events" to tell process "iCal"
    return UI elements
    end tell
    --> {window "iCal" of application process "iCal" of application "System Events", menu bar 1 of application process "iCal" of application "System Events"}
    It doesn't even seem possible to bypass the process by using the keystroke command.
    Message was edited by: Pierre L.

  • How to import Lotus Notes or Outlook calendar into iCal ???

    Is there a way to import calendar data from either Lotus Notes or Outlook calendar into iCal ? Is there a generic data type file that I must first get the calendar file into before importing into iCal ?

    The file must be .ics. I used to simply use Missing Sync to get my calendars synced up, however it's not yet supported in Leopard.
    So, in order to get my office Outlook data over to Ical, I simply used the following "macro"
    http://sourceforge.net/project/showfiles.php?group_id=136194
    Simply follow the instructions...it worked well for me. all my work data got transferred over.

  • Importing Now Up To Date Calendar into iCal

    I have been using NUTD for ten years. It is now starting to crash often with the latest OS software. So I would like to import my entire NUTD calendar into iCal. However, I cannot figure out how to do this. I have looked at discussions on the subject, but they all seem to be several years old. Any new ideas on doing this? I have a Bed and Breakfast and need the past ten years calendar info, plus the reservation info that goes out three year from now. So I need to import 13 years worth of calendar data.

    I just did a full migration from Now Up-to-Date to iCal and was successful using a tip obtained elsewhere. The key is to pass the data through Excel and Palm Desktop. Now can't export vCal yet and iCal won't import tab delimited text. However, Palm Desktop can import tab-delimted text and export vCal.
    I don't think you can successfuly create multiple iCal calendars from the Now categories going through Palm Desktop; I didn't try that. To make sure it worked out, I did it using multiple export/imports doing one Now category at a time by passing it through Excel. Here's a summary of the steps:
    1. Export your date rage from Now in tab-delimited format.
    2. Open the export file in Excel, sort by category.
    3. Extract all entries for each category into separate workbooks, save each as tab-delimited text file format.
    4. Open Palm Desktop and create a new calendar for the category (e.g business, personal, special events, etc.) Save it in a temp place like your desktop.
    5. Import the text file to the new Palm Desktop calendar
    6. Export from Palm Desktop to a vCal file
    7. Create a new calendar in iCal for the category to be imported
    8. Import the vCal file into that calendar.
    Repeat steps 4-8 for each Now category.
    There were some anomolies I couldn't explain (like some single-day all-day events becoming two-day events in iCal), but I just cleaned those up manually.
    Repeating events in the Now Calendar will become multiple single events in iCal. Also, if you have any commas in titles or notes, the process of passing through Excell wil put " " around those entries in iCal. If this bothers you, you could pass the saved Excel text files (from step 3) through a text editor (Text Wrangler works best, TextEdit should do it also) to delete the quotes if you want.
      Mac OS X (10.4.8)  
    MacBook Pro   Mac OS X (10.4.8)  

  • How do I remove a lunar calendar from Ical -- it is not listed as a calendar in Ical

    How do I remove a lunar calendar from Ical -- it is not listed as a calendar in Ical when I open Ical

    Look at some of the lunar events, and see what keywords they are using - eg moon or phase. Use one of those keywords in the search box. Find the earliast occurence in the list and delete it. This may take out all subsequent occurences, or you may have to delete them individually.

Maybe you are looking for