Can Subscribed Calendars be viewed in MobileMe?

I subscribed to 2 calendars through iCal with the Location for both set up as my MobileMe address.
Both sync to my iCal on other MobileMe registered computers and to my iPhone running iOS 4.3.
Neither appear on my web accessed MobileMe Calendar. The only calendar that appears via web access is the Birthdays calendar.
Question:
Is it possible to get the iCal subscribed calendars to appear on the MobileMe Calendar?
I don't want to do the whole export thing as these calendars that I have subscribed to contain schedules that are controlled by others, i.e.: one is an NFL football team schedule that changes season to season. I do not want to have to manually update this every season.
Thanks for your responses.
Marcantonio

Is it possible to get the iCal subscribed calendars to appear on the MobileMe Calendar?
Yes, easily. Please see this Apple Tech Note:
http://support.apple.com/kb/HT4346

Similar Messages

  • Can I choose which subscribed calendars are synced via MobileMe?

    So the recent update synced all of my subscribed calendars to my phone. I don't necessarily want to do this because I subscribed to every employee's calendar in my office as well as my wife's calendar. Ideally, I'd like to ONLY subscribe to my wife's calendar.
    Is there a way around this? Do I have to turn of Calendary syncing all together? If I do that, will my personal calendars no longer sync unless I plug the phone in? Doesn't that suck? Is there a new update coming? Have I asked too many questions?
    Thanks!

    I took advantage of the MobileMe chat support to ask this question a few weeks ago, and they said no go--via MM, it's all subscribed calendars or nothing. It used to be that MM did not support subscribed calendars at all (I think)--an update added this feature but gave us no control over it.
    The chat agent might have suggested that selective syncing would be part of the next MM update, but I failed to pay much attention to that part, or to follow up, sorry.
    I think this is part of why I'm an update or so behind. Also, I installed Mozilla's Sunbird as a calendar application, and subscribed to calendars in that. Which lets me check them when I want to, but keeps them out of the syncing loop. Moving employee calendars there might be an option.
    It's possible this program might help, not sure, but it seems to be recommended for a number of calendar issues:
    http://www.busymac.com/

  • How to get SUBSCRIBED calendars synched on iPhone/MobileMe

    Create, and place this Apple script in your Appliations folder
    Instructions follow the script...
    -- iCal Duplicator 2.0
    -- MobileMe Push Sync with iCal does not currently support susbcribed calendars. This has disappointed some like
    -- myself, who rely extensively on subscribed calendars. This kludgy solution copies events from a subscribed calendar
    -- to a local calendar. Set your calendar names in the script, then run the script on a weekly/daily basis or manually to
    -- update your local copy/copies based on the subscribed calendar.
    -- Support for copying from multiple calendars has been added. You'll need to enter the source and destination names as
    -- pairs. If you want multiple subscribed calendars copied into one local calendar, you can enter the local calendar names
    -- multiple times as I have for the "Combined - Local" calendar.
    -- Christian Lindemer, July 15th, 2008 {macosxhints (a) dethbunny (.) net}
    -- * * * Edit values to match actual calendar names * * *
    -- The subscribed calendars
    property sourceCalendarNames : {"Davidcopy", "Othercopy"}
    -- The blank local calendar(s) to copy in to, in the same order as the source calendars
    property destinationCalendarNames : {"Davidcopy", "Other"}
    -- how many days to go back - the more you add, the slower the script runs.
    property oldEntryDays : 1
    on run
    --make sure we have valid names.
    try
    tell application "iCal"
    repeat with testName in sourceCalendarNames
    --this throws an error if there is no calendar with the given name, thus checking the calendar's validity.
    set testCal to (the first calendar whose title is the testName)
    end repeat
    repeat with testName in destinationCalendarNames
    set testCal to (the first calendar whose title is the testName)
    end repeat
    end tell
    on error
    --if a name can't be found, alert user and halt.
    calendarNotFound(testName)
    return --this effectively quits the script
    end try
    repeat with destName in destinationCalendarNames
    clearEvents(destName)
    end repeat
    set calendarCount to 1
    --repeat through all calendar names
    repeat with sourceName in sourceCalendarNames
    --get the calendar names and pass them to the copyEvents function
    set destinationName to item calendarCount of destinationCalendarNames
    copyEvents(sourceName, destinationName)
    set calendarCount to (calendarCount + 1)
    end repeat --repeat through all calendar pairs
    end run
    on calendarNotFound(notFoundName)
    display alert "Calendar named " & notFoundName & " was not found in iCal. Please edit the script to match your calendars."
    end calendarNotFound
    on clearEvents(destCalName)
    tell application "iCal"
    --Clear the destination calendar
    set destCalendar to (the first calendar whose title is the destCalName)
    set calendarEvents to (events of destCalendar) -- get the destination calendar's event list
    repeat with myEvent in calendarEvents -- delete each existing event
    delete myEvent
    end repeat
    end tell
    end clearEvents
    on copyEvents(sourceCalName, destCalName)
    tell application "iCal"
    set sourceCalendar to (the first calendar whose title is the sourceCalName)
    set destCalendar to (the first calendar whose title is the destCalName)
    set calendarEvents to (events of sourceCalendar) -- get the calendar's event list
    repeat with myEvent in calendarEvents -- repeat for each item found in the source event list
    --Don't bother with old events
    if start date of myEvent > ((current date) - oldEntryDays * days) then --event is in future, or within prefs for old entries
    -- gather relevant details of event to create new event with
    set eventStart to start date of myEvent
    set eventEnd to end date of myEvent
    set eventAllDay to allday event of myEvent
    set eventSummary to summary of myEvent
    -- create event in destination calendar with details of subscribed event
    tell destCalendar
    make new event at end with properties {summary:eventSummary, start date:eventStart, end date:eventEnd, allday event:eventAllDay}
    end tell
    end if --if not older than 'oldEntryDays' days ago
    end repeat --iterate through entries in source calendar
    end tell
    end copyEvents
    Let's say you have a subscribed calendar named "David"
    Go into iCal and create a new calendar ("on my Mac") named "Davidcopy" with the same color as your subscribed calendar.
    Repeat for any other subscribed cals you want to sync to iPhone.
    Open the CopyCal script
    Edit the first line of (uncommented) code which starts with property sourceCalendarNames:
    Change the names of the cals in this list to match the subscribed cals you wish to copy
    Edit the list on the next line to match the NEW cals you created ("Davidcopy" etc)
    Next look at iCal and uncheck the subscribed cals.
    Run the script and watch the copying take place.
    Now to automate this, set up an event everyday (as often as you like). Preferably this can be in another calendar you don't publish - so everyone doesn't have it cluttering their view of your cal.
    For example I have events named "sync" at 9:30am and 5pm every weekday. For the alarm, use "Run Script" and choose the CopyCal.scpt.

    on copyEvents(sourceCalName, destCalName)
    tell application "iCal"
    set sourceCalendar to (the first calendar whose title is the sourceCalName)
    set destCalendar to (the first calendar whose title is the destCalName)
    set calendarEvents to (events of sourceCalendar) -- get the calendar's event list
    repeat with myEvent in calendarEvents -- repeat for each item found in the source event list
    --Don't bother with old events
    if start date of myEvent > ((current date) - oldEntryDays * days) then --event is in future, or within prefs for old entries
    -- gather relevant details of event to create new event with
    set eventStart to start date of myEvent
    set eventEnd to end date of myEvent
    set eventAllDay to allday event of myEvent
    set eventSummary to summary of myEvent
    set eventRecurrence to recurrence of myEvent
    -- create event in destination calendar with details of subscribed event
    tell destCalendar
    make new event at end with properties {summary:eventSummary, start date:eventStart, end date:eventEnd, allday event:eventAllDay, recurrence:eventRecurrence}
    end tell
    end if --if not older than 'oldEntryDays' days ago
    end repeat --iterate through entries in source calendar
    end tell
    end copyEvents

  • Syncing subscribed calendars in iCal to MobileMe / iPhone

    Is there a way to do this? I have a few subscribed calendars that I would like to be able to see on my iPhone but I can't figure it out to save my life.

    Yes, I am very curious about this also. I absolutely need my work calender synced so I use MM to do this so my macbook and iphone are always in sync. But, I would love to see my subscriptions on my iphone - I mean, that's where I spend a lot of time looking at my calender.
    Does anyone know a work around yet? Or has apple released any more info on this yet?
    Thanks, and if there are others who would also like this feature let's chime in here...maybe someone will know a fix or someone will be able to suggest a 3rd party app...
    paul

  • Subscribed calendars "Show Calendar On MobileMe" not available

    Anyone know why the "Show Calendar On MobileMe" option is available on some webcal://ical.me.com based subscribed calendars but not others?
    For example, in my iCal, two subscribed calendars originating from the same MobileMe user (URL webcal://ical.me.com/{username}/{calendarName}.ics) allow the "Show Calendar On MobileMe" option. Yet another subscribed calendar originating from another MobileMe user (URL webcal://ical.me.com/{anotherUsername}/{anotherCalendarName}.ics), does not offer the "Show Calendar On MobileMe" option.
    Am running MacOS 10.5.8 (iCal 3.0.8). I, too, have a MobileMe account, btw.
    Thanks for any help!

    I seem to be having the same problem with repeated appointments:
    I have an appointment with a start date of Tue 2nd Sept and an end date of Wed 3rd (created on iphone).
    On mobileme.com it appears on Thursday 4th as well.
    The appointment appears correctly in iCal (synced through mobileme, not iTunes).
    Looks like a bug to me.
    Dave

  • MobileMe Subscribed Calendars NOT SHOWING

    I have one subscribed calendar on one of my two macs (imac and macbook). I have set up MobileMe on both computers but subscribed calendars do not show up when logged into mobileme online.

    Ben, I'm not sure whether I understand you. Is the following correct? You have subscribed to a "third-party" calendar, like a Google Calendar or such as [the ones provided by Apple|http://www.apple.com/downloads/macosx/calendars> for example. And now you want the events of that subscribed calendar to sync with MobileMe?
    If that's a correct summary, then read [this article on Macworld.com|http://www.macworld.com/article/134901/2008/08/mobilemecalsync.htm l?lsrc=rsstopics_mac_os_xleopard] (click the link) as well as [this Knowledge Base article|http://support.apple.com/kb/TS1213] by Apple.
    Hope that helps.
    floba
    (MN518)
    Message was edited by: floba

  • Using iCal with Google Calendars: can view subscribed calendars, but not add to them

    Something recently happened to my google calendars causing them to all disappear from Google. Anyway, that mystery remains.
    I am currently trying to re set up iCal to sync with Google Calendars and things aren't working quite right.
    In iCal, I've done Calendar>Subscribe and entered the URL for that particular Google calendar. This has been completed for the 5 separate Google calendars I have and they show up in the list of subscribed calendars.
    However, if I attempt to create a new event, the only calendar choice I have is for the main GMail calendar, not any of the subscribed "sub calendars".
    In Preferences>Account, If I select Google and then go to the "delegation"tab, there is a message that states "You can't see delegation settings when this account is offline."
    Can anyone offer some advice?
    Thanks.

    That's the part I always forget how to do. See if this answers your question:
    To select which calendars to sync to your Apple device, follow these steps:
    Open the Safari browser on your device and go to http://m.google.com/sync
    Sign in with your account and select your device from the list of devices you've set up for Google Sync.
    It's from this site: http://www.google.com/support/mobile/bin/answer.py?answer=139206

  • IPhone calendar + List View All Calendars option (MobileMe)

    Hi all,
    I'm trying to fix a problem, which maybe there for some time already, in the iPhone Calendar. I'm using MobileMe to sync contacts and appointments. All my devices are up-to-date to the latest levels of firmware and software.
    I have a normal calendar in iCal and some subscribed calendars. Ther's no difference in both type of calendars.
    This is what's happening.....
    - Individual calendars are all looking perfect in List, Week and Month view.
    - All Calendar option is looking good in Week and Month view.
    - All Calendar option is bad in List view mode.
    When selecting the last option the Today date is changed a couple of days (Today = Wednesday 10-3), but also appointments are on different days. For example the soccer games on Saturday (6-3) and Sunday (7-3) are now changed to Tuesday (9-3) and Wednesday (10-3).
    I have the same calendar on my other iPhone and nothing weird going on over there?!?
    Does somebody have a clue?
    PS. The calendars for this (MobileMe) user are all correct on the other Apple devices.
    Thanks!
    Regards,
    Arjon G. Stelinga

    Hi All,
    Got a message from cini007, but I get an error message when I want to reply to that message. I have copied the "solution" below.
    I have tried this, but it's not working. The only thing happening is it has changed the dates randomly.
    Although I have been looking for the auto shut-off option. I can't find that option only in the alarm clock options?
    cini007 posted "Re: iPhone calendar + List View All Calendars option (MobileMe)" in "iPhone calendar + List View All Calendars option (MobileMe)" on Mar 9, 2010 8:20:57 AM.
    I had Genius Bar visit with same issue—no go (was advised to reset to factory settings).
    BUT here is the SOLUTION as it happened again:
    1. set auto shut-off to never
    2. turn OFF MobileMe syncing for calendars on the iPhone (from Settings menu)
    3. wait for calendar entries to be removed—takes minutes if you have several calendars
    4. hard reset iPhone (press Home and On/Off at the same time for >5 seconds), and wait 2 minutes (about the time to reboot)
    5. restart iPhone
    6. turn ON MobileMe syncing for calendars on the iPhone (again, from Settings menu)
    Message was edited by: Arjon Stellinga
    Message was edited by: Arjon Stellinga

  • My subscribed calendar does not display in today view in iOS7. Does anyone know how to make it show up?

    I have a subscribed calendar on my iPhone. The today view in notification center shows that I have an event at xxxx and tomorrow view says I have x events but the calendar day view does not display any of the events. I need this so I can easily see which rooms my events are in. Dows anyone know how to make the subscribed calendar show up in calendar day view?

    Interesting. May have uncovered a bug. It seems that limited duration events will display, but all day events wont on mine. (iPhone 5). Does that compare to what you are seeing (unfortunately, I have nothing in a subscribed calendar until the week end, so difficult to check. I do seem to recall seeing an event from one this past week end on the iPad, however).

  • Subscribed Calendars, iCal, and Mobileme

    In iCal I have subscribed to 3 calendars, including US holidays. I have setup iCal for the Cavdav format for the new Mobileme calendar. The subscribed calendars do not show up on my iPad. Can this be fixed/changed?
    Thanks

    Do an iCal backup first if you use it on a mac too.
    When I upgraded to Caldav last week I ended up with .mac account calendar AND a mobileme one too so I had duplicatec entries.
    I would delete mobileme or .mac account on your iPad and then sign up again. It should then pick up the caldav data from the mobileme servers if you sign in at setup using cavdav info you should have been emailed.
    Message was edited by: Sickofpcs

  • How can I change the color of subscribed calendar?

    Hello!
    I have subscribed two calendars from the internet at my ipad. They automatically got the colors green and red. Now I wanted to change these colors. So I did it and changed them in the calendar-app of the iPad to blue and yellow. At first it worked. But after a few minutes, the colors automatically changed back to green and red. And that happens all the time. Whenever I change the colors of my subscribed calendars, they automatically change back a few moments later.
    Why does it happen? And how can I make my iPad keep the new color settings?
    I am using iOS 5.0.1

    I figured out a solution for changing the other calendars but not the birthday calendar. Although it's not the most direct fix, it worked for me. Apparently Apple didn't think to give us the ability to choose the calendar color. I use Entourage and sync over the air. When I upgraded to iOS 4 my calendar turned bright red and the birthday calendar was blue. I don't use the birthday calendar so it isn't even enabled in my case. What finally worked was to go through the calendar colors one at a time by disabling and re-enabling the calendar in my mail account settings. I would double click the home button to quickly switch between settings and calendar to check the color each time I enabled the calendar. I had to do this 4 or 5 times to cycle through until blue came back up.

  • Can SharePoint calendar show more than 3 items on a Day's schedule in Month view? How?

    Hi there,
    Can SharePoint calendar show more than 3 items on a Day's schedule in Month view? How?
    Thank you so much.

    Hi,
    From your description, my understanding is that you want to expand all items if a Day’s schedule has more than 3 items.
    You could accomplish your requirement with jQuery to auto expand all items when you load month view, please refer to this article:
    Auto Expand Month View on SharePoint 2013 Calendar
    http://blog.eastridge.net/auto-expand-month-view-on-sharepoint-2013-calendar
    If I misunderstand your requirement, please provide more detailed information.
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Can't group personal & subscribed calendars?

    In Mac OS 10.4, I created a calendar group which contained (1) a calendar created and managed by me for work-related events, and (2) a subscribed calendar created and managed by a colleague. I then published the combined group calendar online for my personal use.
    Under Mac OS 10.5, I can no longer group a personal calendar and a subscribed calendar. This means I'll have to recreate every single event in the subscribed calendar if I want it to show up in my personal "work" calendar.
    Any ideas how to fix this? Thanks!

    I have the exact same problem.
    This is a REAL problem and a major deception with iCal / Leopard.
    This way of splitting "personal" and "subscribed" calendars is not smart. Why ?
    We should keep the ability to group subscribed AND personal calendars into a same group of calendars. Maybe via the ical prefs ?
    I hope somebody at Apple will take care of this.

  • How can I delete a subscribed calendar, Hong Kong holidays from calendar on Ipad 4. This was inserted through a hacked gmail account.

    I Have an ipad 4 with ios 7. Through clicking on a link sent in a hacked gmail account, a 'subscribed' calendar, named Hong Kong holidays has been inserted into my calendar. How do I delete this calendar and how does it affect my personal details?
    I have changed my password.
    THank you

    Hi Cigire34,
    Welcome to Apple Support Communities.
    Are you syncing the iPad with a computer and do you see the account on your computer? It sounds like you may have Google Calendar account setup on your iPad, which will have to be deleted from settings or the Google site. The instructions in the following article should help.
    iOS: Syncing multiple Google CalDAV calendars
    http://support.apple.com/kb/ht4372
    After adding your Google Calendar account using Settings > Mail, Contacts, Calendars > Add Account… > Other > Add CalDAV Account, the primary calendar will sync with your device.
    To sync additional Google Calendars, you must configure them using this tool on the Google website. Note that you must log in to your Google account to access this page.
    Cheers!
    -Jason

  • Calendar month view has wasted space between months, can I remove? iOS 7 iPhone

    The calendar month view (both iPad and iPhone) has a gap between months eg: Jan 31 has two spaces & almost a whole line blank before Feb 1. I want the months to run sequential with no gaps. Any way of doing this?

    Use a different app.
    Unfortunately, there is no way to change the formatting of the built in app. Your only option is to look for a different calendar app and see if it meets your needs

Maybe you are looking for