How to copy calendars from iCal?

Hello!
I want to copy the calendars (and all the events) from my iMac to my macBookPro. I tried to copy the Library>Application Support>iCal files but  when i open iCal, i see the previous version, not the new one. Which file do i have to copy to see my new events and calendars in iCal?

mduenes,
How to Merge iCal Calendars | Mac|Life

Similar Messages

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

  • Export a single calendar from iCal

    How do I export a single calendar from iCal? I have several calendars but only want to send someone one of them.

    Click on calendars, select calendar wchich you want to export then go to File>Export>Export... and save file on the desktop and then send file via email.
    But if by calendar you mean calendar Event, then double click on event and in "Add Invitation" field add email of the person which should have access to your event.

  • How do I sync from ical and address book to office for mac 2011

    How do I sync from ical and address book to office for mac 2011 in outlook?  icloud is turned on, sync is turned on in outlook and in itunes.  Email working fine in outlook, but no contact or calendar information.  Microsoft said it is an Apple issue.  They said icloud is not compatible with Outlook.  I have OS Lion if you need to know that. 

    See Here
    https://discussions.apple.com/message/16982951#16982951

  • Ordering Calendar from iCal?

    So I wan to order my calendar from iCal so i click buy and it tells me the price and thats it. How do I print it and pay for it?

    Are you trying to buy an iPhoto calendar?
    After you press the "Buy" button and see the price of your order, you need to press the blue button "pay" in the lower right corner to place your order.
    Regards
    Léonie

  • Delete calendar from ical

    How do I delte a calendar from iCal.
    I right click on it and the delete function is not an option.

    When that calendar you want to delete is selected, you should be able to do so from the Edit menu.
    Good luck

  • IPod not showing all Calendars from iCal

    I just got a new iPod classic and when I hook it up to my MacBook and sync my calendars from iCal not all of them show up. I have tried syncing all and some selected, but if it didnt show in all, it wont show even checked off. Is this a bug in the system?
    Thanks

    Hello Kristen,
    Have you double checked the media type of these TV Shows in iTunes? To do so, locate the TV Show, right->click on it and choose "Get Info" from the Shortcut Menu. When the window pops up, head over to the Options tab. There should be an option for *Media Type* with a drop down list next to it. Make sure that is set to "TV Show" and nothing else. Then hit OK when you are finished and sync the updated changes to your iPod.
    Another thing to check is the settings you have configured from under the *TV Show* tab for your iPod in iTunes, when you have it plugged in. It may be set to sync all "unplayed" episodes. You will want to change this to something that is more fitting.
    I would start with these two possibilities, and then we will go from there if need be.
    Hope this helps.
    B-rock

  • How to copy file from application server

    Hello experts,
    How to copy file from one folder of application server and paste it to other folder of application server(application server is same)?
    Is there any function module exists???
    thanks in advance
    Saurabh

    Hi you can use this function module to move a file from application server to another folder on application server.
    call function 'WS_FILE_COPY'
               exporting
                    destination = m_destination
                    source      = m_source
               importing
                    return      = return.
    Plus u can use this function module to delete the file from that folder from which u want to replace it.
          call function 'WS_FILE_DELETE'
               exporting
                    file   = m_source
               importing
                    return = return.
    The above FM can help u copy a file from one folder to another and delete the file from that folder.

  • How to copy images from another MC in reversed order??

    Hi everyone,
    I'm new to AS3 and have been fighting and searching for a solution to this problem for a week now, and I'm VERY close!
    I crated a MC holding of a series of images (about 50) and I jump around in it using plenty AS3 scripts (most of which I don't fully understand yet, but I'm working on that to! )
    I had to find a way to "rewind" (= play backwards) the MC. Since there is a stop(); command in almost every frame, prevFrame does not work and if I put that in a loop, it goes WAY to fast (but worked).. So I could think of only one way...
    Create a new (reverserd) MC with the same image sequence ald reverse it manually and play that one.
    This all works fine (very proud of it ).
    Now my question:
    To get this to work for multiple image sequences, I have to load all images twice (once in MC_1 and again in MC_2 and select them and reverse them).
    Not a big one, unless you want to create MANY of those SWF's...
    Is it possible to load the 50 images of the first MC in reverse into the second MC dynamically? JUST the images, noting else.
    extra info: the MC_2 is already in the lib(empty) and placed on the stage.
    something like:
    var pointer:Number=1;
    for (var:i:Number=50;i>=0;i--) {
    get MC_1.picure(var);
    put it in MC_2.frame(pointer);
    pointer = pointer + 1;
    All help is welcome and please take into account that I have little experience and copy most of my scripting from people like you
    T.I.A.
    Melluw

    I tried your advice (thanks for that)
    The event I already have is the mouse leave
    I //-d out the part I removed (what did work)
    The code I ended up with is:
    function Start() {
    stage.addEventListener(Event.MOUSE_LEAVE, cursorHide);
    function cursorHide(evt:Event):void {
    var currFrame = MC_1.currentFrame;
    if (CCW == true) {  //it is true in this case
      movStart = (50 - currFrame);
    else {
      movStart = currFrame;
    if (movStart>25) {
      MC_1.prevFrame();
    // removed swapChildren(MC_1, MC_2); // This is the part I removed
    // removed MC_2.gotoAndPlay(movStart);
    else {
      MC_1.gotoAndPlay (movStart);
    And if I leave the stage on the part where movStart is indeed >25
    Nothing happens,
    So I guess this is not what you meant
    Subject: Action Script 3 how to copy images from another MC in reversed order??
    I cannot direct you in the loading of the images approach, it will be too complicated, and will probably not work anyways... when you move away from a frame that has dynamic content, you lose the content.  So basically, there is nothing practical in taking that approach.
    I do niot understand what the problem will be with the enterFrame/prevFrame approach. If everything you can do with the mouse is already used (which I doubt) by the first mc, then there is nothing else you can do with this file.  You probably just need to rethink your control scheme.  You should search Google for "AS3 slideshow tutorial", and to lighten up your design, add "XML" in that search.
    >

  • I have macbook pro 13" I want to know how to copy files from my mac to the external Toshiba Hard Drive. I can't even delete files from my external hard drive. please help me my macbook HD is almost full and I have to copy my images to the Toshiba HD

    I have macbook pro 13" I want to know how to copy files from my mac to the external Toshiba Hard Drive. I can't even delete files from my external hard drive. please help me my macbook HD is almost full and I have to copy my images to the Toshiba HD

    To delete files from your external HDD, attach it to your MBP and drag the unwanted files to trash and then empty trash.
    Then you select the files that you want to transfer by 'drag and drop' to the external HDD and trash the files on your MBP.
    Ciao.

  • HT4623 How to copy contacts from iPhone 3gs to iphone 4.

    How to copy contacts from iPhone 3gs to iphone 4.

    First youll need to back up all your contacts to you computer, then sync your new iphone and be sure to tick the boxes to sync all you contacs. Also if your iphone 3 has icloud, back them up to icloud, and then restore your new iphone from a icloud backup, No computer needed

  • How to sync calendar from max osx mountain lain to nokia n97

    Dear Colleague,
    My quation as in the subject "how to sync calendar from max osx mountain lain to nokia n97"
    Kindly help me.
    Thank you, Reagrds,
    andreas

    Not possible. Nokia hardware is not compatible with Mac OS X.

  • How to copy files from a color classic w/broken floppy drive to an i-book ?

    How to copy files from a color classic w/broken floppy drive to an i-book ?
    I have a Coplor Classic with a system 7.
    There is no ethernet on color classic. The floppy drive is dead.
    I need some important files I have on the color classic...
    How do I connetct them to transfer files?...

    The easiest way, as AppleIIFreak has suggested, is probably to find another older Macintosh computer (with the round MiniDIN printer port) to be used as an intermediary. You could then connect the two machines by means of LocalTalk cabling, or just a plain Mac serial printer cable between the printer ports, and then set up file sharing. From that other Mac, you should be able to forward the files via Ethernet, diskettes (if you have an external USB floppy drive for the iBook) or email (Internet).
    If a second old Mac is not available, you may want to try something else. It would not be unusual for a Color Classic to have ClarisWorks already (obviously, one cannot expect anything new to become installed). If so, that program suite would contain a communications part. This means that you could connect an external serial modem, and send the files over the phone lines (or locally, modem-to-modem, in principle as in KB article # 22229; sometimes a very simple home-built line simulator may have to be added) to any other computer using a terminal emulation application with file transfer capabilities. It would also be possible to connect the modem port directly to the serial port of a PC, through a combination of a Mac modem cable (MiniDIN-8M to DB-25M) and a standard PC null-modem cable (DB-25F to DB-9F).
    Jan

  • Does anyone know to how to copy notes from an ipod to an ipad

    Does anyone know to how to copy notes from an ipod to an ipad

    See iPod: Storing and reading notes to extract the existing notes on the iPod.
    If you only need to view them on the device Dropbox would be one way to go.
    tt2

  • How to copy videos from iPhone to iPhone? The videos are in QT format and were taken using the iPhone camera.

    How to copy videos from iPhone to iPhone? The videos are in QT format and were taken using the iPhone camera.Help me, anyone? Thanks in advance.

    Just to add.....I created a folder on my PC to store all videos taken from my iPhone and my wife's iPhone.
    I just cannot sync those videos taken using my wife's iPhone to my iPhone.

Maybe you are looking for

  • Unable to get PAGE_COUNT working

    I am a new Xserve user and I have been unable to get PAGE_COUNT working despite the fact that SSI and other environmental variables are functioning for me. Does anybody know what additional settings are required for PAGE_COUNT? Do I need to initiate

  • IWeb had a password protected site capability. Now what can I use that gives me an equivalent functionality?

    Greetings All, I took over the web site for a club using iWeb. This worked great for several years (2009 to June 30, 2012). I still use iWeb today (minus the password protected members only portion). We have a need for a members only section of the w

  • Selected music won't sync.

    I thought I had this cracked but .... I've checked the box next to 'Sync only ticked songs & videos' on the iphone summary screen. I've checked all the boxes of the music I want on my iphone... Go back to the iphone summary screen & on the music app

  • Purchase Order (PO) delete

    sir, how Purchase order (PO) can be deleted. Regards, Praveen

  • CE_CONVERSION in ABAP AMDP method

    Hi, I'm trying to get some knowledge about the usage of the AMDP procedures in the business suite on HANA. I've been trying to create a simple example where i convert a currency from one to another using and AMDP procedure and the CE_CONVERSION. Howe