How can I edit events in on the iPad syncing with mobileme beta version?

We use MobileMe to sync events in Cal between an iMac, a MacBook and 2 iPhones. We just migrated to the beta version of Calendar in Mobile me and it works fine. We share calendars between our machine successfully using MobileMe (Beta).
We just got a brand new iPad (WiFi 16GB) and configured it without problem except one. All the events are visible but cannot be edited on it. We can create a new event on the iPad but it won't show on the iMac.
This issue does not exist with the Contacts or the Mails
I guess this requires a specific parameter setting in MobileMe in this case. What do we need to change?
Thank you in advance for helping.

Actually we just found how to configure the iPad in the information provided by Apple in the MobileMe page (Calendar Beta for iPad)

Similar Messages

  • How can I print a pdf in the actual size with a page border?

    How can I print a pdf in the actual size with a page border? (2 pages per sheet preferred)
    I usually print pdfs of books at a copy shop and they turn out fine.
    The problem comes when I try to print the same books at home.
    I use Adobe Acrobat X with the same settings: "multiple pages per sheet" (2x1) and page border. But the pages are slightly shrunken when printed. I think this is because my printer can't print as closely to the margins. Still, two pages should be able to fit on one sheet in actual size. Are there any layout settings that I can play with to find a better fit, besides portrait and landscape?
    If I select page scaling "none," I'm able to print the pdf in actual size, one page per sheet. But there's no option to add a page border.

    I have a test with some questions (multiple choice, FIB, matching, etc). I have just one button to submit all the answers, and after submiting the student can see his score and review the test to know where he failed. He can't answer again. However, he can change the answer multiple times before submiting.
    "if i turn on success/failure captions the student will see them while answering" - before submitting
    "if i turn them off he wont know what's the right answer" - after submitting
    My results page is the default. I didn't use any variable. When i go to the results page after reviewing the test all the entry boxes are "wrong".

  • How can I remove Personal Hotspot for the iPad

    How can I remove Personal Hotspot for the iPad, I use apple configurator but I still can NOT do it. any idea?

    I mean hide it, or remove it or delete it. I just don't wanna anyone on my enterprises use it because my data plan gonna be high cost.
    supported by my carrier, I asked my carrier if they can remove it ? they said they can NOT.

  • How can I open and listen to the PDF documents with audio in my iPad?

    How can I open and listen to the PDF documents with audio in my iPad?

    You need to use a PDF reader that supports multimedia. Adobe Reader 10.3 does not. Adobe has not stated whether it will support multimedia in the future.
    In the meantime, you could buy an application that does like PDF Expert. Read about it here:
    Finding the Best Tablet PDF Reader

  • IPAD ID: I have changed my ID (mail) and now I can updated my apllications in the ipad because still appears my first ID... How can I change my ID in the IPAD????

    I have changed my ID (mail) and now I can updated my apllications in the ipad because still appears my first ID... How can I change my ID in the IPAD????

    Apple ID (your e-mail address) that was used to purchase apps are forever tied to that Apple ID for updates.
    Apple ID cannot be merged or transferred to another Apple ID.
    You can change the e-mail address associated with the Apple ID below:
    https://appleid.apple.com

  • How can I write new objects to the existing file with already written objec

    Hi,
    I've got a problem in my app.
    Namely, my app stores data as objects written to the files. Everything is OK, when I write some data (objects of a class defined by me) to the file (by using writeObject method from ObjectOutputStream) and then I'm reading it sequencially by the corresponding readObject method (from ObjectInputStream).
    Problems start when I add new objects to the already existing file (to the end of this file). Then, when I'm trying to read newly written data, I get an exception:
    java.io.StreamCorruptedException
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    Is there any method to avoid corrupting the stream? Maybe it is a silly problem, but I really can't cope with it! How can I write new objects to the existing file with already written objects?
    If anyone of you know something about this issue, please help!
    Jai

    Here is a piece of sample codes. You can save the bytes read from the object by invoking save(byte[] b), and load the last inserted object by invoking load.
    * Created on 2004-12-23
    package com.cpic.msgbus.monitor.util.cachequeue;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.RandomAccessFile;
    * @author elgs This is a very high performance implemention of Cache.
    public class StackCache implements Cache
        protected long             seed    = 0;
        protected RandomAccessFile raf;
        protected int              count;
        protected String           cacheDeviceName;
        protected Adapter          adapter;
        protected long             pointer = 0;
        protected File             f;
        public StackCache(String name) throws IOException
            cacheDeviceName = name;
            f = new File(Const.cacheHome + name);
            raf = new RandomAccessFile(f, "rw");
            if (raf.length() == 0)
                raf.writeLong(0L);
         * Whne the cache file is getting large in size and may there be fragments,
         * we should do a shrink.
        public synchronized void shrink() throws IOException
            int BUF = 8192;
            long pointer = getPointer();
            long size = pointer + 4;
            File temp = new File(Const.cacheHome + getCacheDeviceName() + ".shrink");
            FileInputStream in = new FileInputStream(f);
            FileOutputStream out = new FileOutputStream(temp);
            byte[] buf = new byte[BUF];
            long runs = size / BUF;
            int mode = (int) size % BUF;
            for (long l = 0; l < runs; ++l)
                in.read(buf);
                out.write(buf);
            in.read(buf, 0, mode);
            out.write(buf, 0, mode);
            out.flush();
            out.close();
            in.close();
            raf.close();
            f.delete();
            temp.renameTo(f);
            raf = new RandomAccessFile(f, "rw");
        private synchronized long getPointer() throws IOException
            long l = raf.getFilePointer();
            raf.seek(0);
            long pointer = raf.readLong();
            raf.seek(l);
            return pointer < 8 ? 4 : pointer;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#load()
        public synchronized byte[] load() throws IOException
            pointer = getPointer();
            if (pointer < 8)
                return null;
            raf.seek(pointer);
            int length = raf.readInt();
            pointer = pointer - length - 4;
            raf.seek(0);
            raf.writeLong(pointer);
            byte[] b = new byte[length];
            raf.seek(pointer + 4);
            raf.read(b);
            --count;
            return b;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#save(byte[])
        public synchronized void save(byte[] b) throws IOException
            pointer = getPointer();
            int length = b.length;
            pointer += 4;
            raf.seek(pointer);
            raf.write(b);
            raf.writeInt(length);
            pointer = raf.getFilePointer() - 4;
            raf.seek(0);
            raf.writeLong(pointer);
            ++count;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#getCachedObjectsCount()
        public synchronized int getCachedObjectsCount()
            return count;
         * (non-Javadoc)
         * @see com.cpic.msgbus.monitor.util.cachequeue.Cache#getCacheDeviceName()
        public String getCacheDeviceName()
            return cacheDeviceName;
    }

  • HT1766 I purchased an iPad air and chose a backup from my iPhone 5s.  The only issue is only 30 of my photos downloaded to my iPad and none of the music.  How can I get all items on the iPad?

    I purchased an iPad air and chose a backup from my iPhone 5s.  The only issue is only 30 of my photos downloaded to my iPad and none of the music.  How can I get all items on the iPad?

    you are using I tunes as the middle man for this back up, right?
    When you plug in the pad to i tunes, give it a unique name, like my pad.  I tune may be thinking it is talking to your phone.  It will keep track of what you what on each device.  Then plug your phone back in, and make sure your photos are uploaded to the computer - in i photo if you are using a mac, or in whatever photo program you are using on a windows device.  You also want to make sure you have uploaded to the computer all of your music.
    Once you get all that stuff there, plug the pad back in, and go through each of the tabs - selecting the music, photos etal that you want on the pad, then resync.

  • I have an interactive CD-Rom as part of my Italian language text, and have loaded it onto the iMac.  How can I also copy it to the iPad?

    I have an interactive CD-Rom as part of my Italian language text, and have loaded it onto the iMac.  How can I also copy it to the iPad?

    You can only install apps from the iTunes app store on your computer and the App Store app directly on the iPad. Does the maker of the CD have an app in the store with the CD contents already in it ?

  • Did ios7.4 help the ipad sync with itunes

    did the update of ios 7.4 help the ipad sync with itunes - songs not playing

    Try reset all settings
    Settings>General>Reset>Reset All Settings
    Note: Data will not be affected but settings will be reset.

  • How can i edit a photo to a specific height & with . Using photoshop elements 4.0

    how can i edit a photo to be a specific height & width using photo shop elements 4.0

    Use the crop tool. Enter the dimensions on the tool's option bar.

  • How can I see a list of the assets associated with a sequence?

    How can I see a list of the assets, both online and offline, associated with a sequence?

    Exporting an EDL or copying and pasting a timeline into a bin gives a complete list of the clips in a sequence, but what I really would like is a list of the files used, without any duplications due to multiple clips from a single reel. Is there any quick way to automatically generate such a list?

  • How can I edit and delete IOS 7 IPAD safari favorites?

    In IOS7/Ad safari, how can I edit or delete safari favorites?
    Thanks!
    Alan

    Thank you so much!   This solved my problem.
    I wish Apple made this sort of thing more accessible in its documentation somewhere.   I Google'd extensively but was unable to find anything relevant.
    Thanks much again!
    Alan
    P.S. -- I assume there's no way to delete multiple bookmarks/favorites simultaneously (I did it one at a time)...

  • How can I restore my photos if the iPad and my lap top back up have been erased to correct a problem?

    How can I retrieve my photos if my iPad was scrubbed to correct a sign-on problem? The "genius" at the Apple Store suggested I erase my back up as well as my iPad apps to avoid a repeat of the problem. He DID NOT tell me all of my photos would be erased along with the apps I'd downloaded!
    Help, please!

    If you didn't have the photos stored somewhere else, then they are gone. A 'backup' is not and should never be considered long term storage. Photos should be extracted to a computer on a regular basis as you would with any other digital camera, and the computer should be backed up as well.

  • How can I keep a playlist on phone when syncing with new computer?

    When syncing my IPhone I am prompted with an ominous message that says "Are you sure you want to remove the existing music ... from this phone and sync with this ITunes library? Music .... will be removed and items will be synced from this ITunes library" The answer is no because I have a playlist I would like to keep on the phone, but add one which resides on the computer I am attempting to sync with. That is not an choice presented, the choices are Cancel or Remove and Sync. Apple should either give more options or at least a better explanation. I have synced this phone and computer combination before but have since created a new playlist in the computer (a Mac Mini).
    So how can I keep a playlist on the phone and add one from the computer too? Is it possible to view the phone as a drive and move items around in that manner? I use ITunes on both Windows and Mac platforms but this issue has always been problem for me. I also have IPhone 3 (used as an IPod), IPhone 4S and Iphone 5.

    Unless you can get the iPod backup file (and restore the iPod from that file on your new computer) from the "dead" computer you will lose all the app data you can export via email.
    - Yu can trabsfer iTnes purchases from the iPod by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    - You can transfer non-itunes purchased music to the new computer by using one of the third-party programs discussed in this previous discussion.
    Best iPod to PC
    - After you move the stuff to the new computer, either restore the iPod from the backup, or if no backup, restore to factory defaults,new iPod and sync.

  • How can I display event notes on the relevant event in week/day view?

    Hi folks,
    I'm looking for a way to display the event notes on the actual event in week or day view.
    This will greatly help plan out my week (especially for repetitive events with custom notes for each occurrence).
    I can understand that Apple ommitted this feature to avoid clutter on short-duration events perhaps?
    Clicking on the event (or using the Inspector) to see the notes is not an option. I need an overview that can be viewed at a glance or even printed.
    Looking forward to your suggestions...
    Trev

    Hi Trev,
    With iCal as it is the only suggestion I have would be to add the full text to the title of the events.
    FYI, this is a user to user forum. By posting here you are not guaranteed someone from Apple will read it. If you'd like Apple to know about this I suggest you send them feedback.
    Best wishes
    John M

Maybe you are looking for

  • ColdFusion 11 and Solr

    I just installed ColdFusion 11. I am pretty sure I selected the option to install the addons like Solr, but when I am in the coldfusion administrator under Data & Services, I click ColdFusion Collections and I get nothing. It won't go to the page at

  • Can't find imported iphone photos in iPhoto

    I phone pictures have been uploaded to iphoto on several occasions and they can not be found in the iphoto app. 

  • How can you post MP3's on your web site to different forums

    I want to attach MP3's to different web sites....like this example. http://www.gearslutz.com/board/high-end/137086-cm7-gt-2247-le-samples.html I was told you have to put your MP3's on a web site and then attach the URL to the comunity forum you want

  • DataSocket Failures followed by Inability to parse URL

    I am having a recurring problem with Data Socket Where I get a "No traffic from server " error or "write failed" How can I repair this?

  • Joins in BI Administration layer

    Hi, I have created few dimension in Owb, along with a cube. now i imported them in BI administrations physical layer. is it necessary to join them both on physical and business model an mapping layer or its enough to join them on physical layer. seco