Left iCloud - how to get iCloud calendars synced from iPhone?

Like many people have experienced, iCloud's calendar-syncing issues have made a mess of my calendar-dependent schedule.An unmitigated disaster. I finally signed out of iCloud, and left the iCloud calendars on my iPhone, the only place other than iCloud my multiple calendars currently exist, due to Outlook sync problems.
Now, I can't get the multiple calendars on iPhone to sync with ANYTHING else, not google calendar, not outlook, not iCal. Only the main calendar syncs up, noe of the colored other categories I was using.
If anyone has a notion of how to deal with this I'd be deeply appreciative. Thank you!!

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

Similar Messages

  • Hi fellas could anybody know how to get back calendar out from trash to original dock below the screen

    Im having problem getting my calendar out from trash(not deleted) to where this belong to dock below the screen accidently click when im using apps cleaner,i try to swipe my application from trash bin to dock station but keep bounce back to bin,i check on help site said simply open trash bin select the application you want to save,go to top screen see finder then go to file and click say PUT BACK but main issue is that words are grey out ,im on mountain lion version 10.8.4 at the moment for now i can only  use calender by swipe from trash bin to desktop its only i can open than click main dock of calender will say unable to open because it in the trash so can anybody know how to get this out in any way,i dont like to have two icons of calendar on desktop and dock station....i be happy can somebody give advice.......regards

    and prior to that ihave  uploaded my all the photos and videos to icloud from iphoto
    Which part of iCloud are you referring to? iCloud Drive? iCloud Photo Library Beta? My Photo Stream? Shared Photo Stream?

  • Icloud calendars missing from iPhone

    This morning there is only one iCloud calendar on my iphone.  None of my other iCloud calendars or exchanges calendars are showing.  They ARE NOT listed for me to check them as calendars I want to show.  They ARE on the iCloud and on the Exchange but they ARE NOT on the phone.  I have restarted the phone and they are still not there.  Also, everytime I close a re-open the calendar app it is blank and I have to go to the settings and choose to show  the only calendar that is still on the phone.  Any suggestions?

    There are a number of systems down at the moment: http://www.apple.com/support/systemstatus/

  • 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

  • How to get my video's from iphone 4 onto my laptop ??

    Help ! I have taken several video's on my iphone 4, and have tried several times to get these downloaded onto my laptop so i can save them... the laptop has taken the photo's but will not recognise the video's.... also can't seem to find a way to get them onto facebook either ?? can anyone suggest how to get this sorted ??

    KAY20680 wrote:
    Help ! I have taken several video's on my iphone 4, and have tried several times to get these downloaded onto my laptop so i can save them... the laptop has taken the photo's but will not recognise the video's.... also can't seem to find a way to get them onto facebook either ?? can anyone suggest how to get this sorted ??
    To get them moved to your PC: Connect your iPhone with the USB cable. Once it is recognized, go to My Computer and just select the iPhone as you would any other USB storage device. Copy/paste, cut/paste, click/drag, etc. the picture/video files you want to copy from your iPhone to your PC.
    To post to Facebook: Start up the Facebook app and go to the News Feed. In the top left corner next to the 'What's on your mind?' text window you'll see a camera icon. Touch that and select Choose From Library. Then post away.
    Dave

  • Calendar sync from iPhone fails when Powerbook calender is open.

    I just updated my calendar on my iPhone, but the new dates didn't make it into my Powerbook Calendar even tho' iTunes thought the sync was complete. I tried another sync from iTunes with same ommission. I then closed my calendar on my Powerbook, started another sync, and the new dates were there when the sync completed and I re-opened my calendar on the laptop. I have all the latest- Mac OS 10.5.4 and iPhone 2.0.2. I never had to check the state l of my laptop applications before when syncing. What's going on?

    I can't remember where I found this but it worked for me. To get appointments composed on the iPhone to sync with Outlook, the appointments must be recurring. So what I do now until Apple gets this problem fixed is make all of my appointments recurring with start and end date on the same day so they only show up once. Try it, it works for me.
    Joe
    Windows Parts-Pieces Windows XP Pro 3GB, 2.8GHZ
    BJ Hammond
    Posts: 1
    From: Indiana
    Registered: Jul 21, 2008
    New! Re: Calendar Items Created on the iPhone do not sync to Outlook 2007
    Posted: Jul 21, 2008 11:11 AM in response to: thejoeyz Reply Email
    This worked for me. Thanks so much! It's still a pain in the "you know what!" Make sure you do the following.....
    1. Repeat, Every Day, Save
    2. End Repeat, Enter Same Date as above, Save

  • Calendar Sync from iPhone 3G & Mobile.me to Outlook works with new firmware

    YEAH - SOLUTION TO ONE PROBLEM FOUND !
    Appointments I created on the Iphone do not get synced to Outlook via Mobile.me
    *NO LONGER SO !*
    I upgraded my firmware on my iPhone 3G to version 2.0 (5A347) by clicking on the Restore button in tha iTunes interface. It then downloads a new firmware to the iPhone and with this - I can sync all tha way !

    I can't remember where I found this but it worked for me. To get appointments composed on the iPhone to sync with Outlook, the appointments must be recurring. So what I do now until Apple gets this problem fixed is make all of my appointments recurring with start and end date on the same day so they only show up once. Try it, it works for me.
    Joe
    Windows Parts-Pieces Windows XP Pro 3GB, 2.8GHZ
    BJ Hammond
    Posts: 1
    From: Indiana
    Registered: Jul 21, 2008
    New! Re: Calendar Items Created on the iPhone do not sync to Outlook 2007
    Posted: Jul 21, 2008 11:11 AM in response to: thejoeyz Reply Email
    This worked for me. Thanks so much! It's still a pain in the "you know what!" Make sure you do the following.....
    1. Repeat, Every Day, Save
    2. End Repeat, Enter Same Date as above, Save

  • How can I separate ipad sync from iphone sync?

    When I went to sync my iPhone 5 after syncing my new iPad Air for the first time, it wanted to install my iPad apps on my iPhone, even after I unchecked the box next to install new apps.
    How can I ensure that my iPad syncing is completely seprate from my iPhone syncing?

    The iphone is not a storage/backup device.  The sync is one way - computer to iphone.  The exception is itunes purchases:  File>Transfer Purchases
    Copy everything from your other library/computer, or your backup copy, to your new library/computer

  • How to get older Calendar display on iPhone with iOS 7.1.1?

    I find the new display of the Calendar on iPhone after upgrade to 7.1.1 absolutely impractical. I want to be able to see a whole day of appointments on the whole screen (with scrolling), rather than a view of the month at the top, and 3 lines of appointments at the bottom. Besides, entering a new appointment is now more difficult because scrolling the screen is sometimes impossible without altering what was just entered.
    Can I go back to the display I had before the upgrade? Thanks.

    No.
    Turn your iPhone in landscape mode to see 5 days at a time with scrolling up and down.
    I have no problem scrolling to another area when entering a calendar event altering what I have already entered.

  • How to get rid of Music from iPhone 5S

    I have the iPhone 5S and ios 7.1.2.  I do not keep any music on my phone, none at all.  Yet, when I open the Control Center, there's a song and music controls where the old volume control used to be. When I go into the Music App, there are 7 songs that I did not put on the phone.  AAMOF, I don't even have some of those songs in iTunes (a couple of them I have in iTunes).  Where did this music come from?  I cannot find any way to delete these songs from my phone. 
    When I go into the Control Center out of habit to change the iPhone's volume, it starts playing the song that's there.  I don't want this music thing on my phone, I want the volume slider thing back.  What can I do? How do I get rid of those 7 songs?
    Oh, and in Settings/Music, I have "Show All Music" turned off.
    TIA,
    Audrey

    Thanks for your reply.  Nothing happens when I swipe to the left.  When I swipe to the right, the song opens and starts playing.  Same result whether I swipe the songs while they are in the list, or when I open the song first.
    What else can I do?
    Audrey

  • Can someone please help - I want to sync my icloud calendar with my iphone calendar.  All of my entries from previous months are on my icloud calendar but not my iphone.  How do I get them back on there?

    Can someone please help - I want to sync my icloud calendar with my iphone calendar.  All of my entries from previous months are on my icloud calendar but not my iphone.  How do I get them back on there?  I have corrected my settings for future entries (I think/hope) but want to put the old stuff back on.

    Try this...
    Settings > Mail, Contact, Calendars.  Scroll down to Calendars and set "Sync" as desired.

  • How can I sync my various email accounts into an iCloud account.  Example.  I have an embarqmail.account.  How can I get it to sync with iPhone, iPad, iMac so that I don't have to read or review eMails on all 3 devices.  Thanks

    How can I sync my various email accounts into an iCloud account.  Example.  I have an embarqmail.account.  How can I get it to sync with iPhone, iPad, iMac so that I don't have to read or review eMails on all 3 devices.  Thanks

    You need OSX 10.7.2 or higher in order to access icloud.  The mobile me account is now defunct (it closed down more than a year ago).

  • Q10 questions, Auto Cc & iCloud Calendar Sync

    Hello everyone,
    I have 2 questions as below:
    1. Auto Cc function is missing.
    2. iCloud Calendar Sync always error.
    my Q10 is under 10.1.0.4181
    I'm very appreciate for your support.

    1, the AutoCC was a service of your former BIS account, and there is no BIS account now. Instead, if you're using an IMAP email server, you should find the function to autoCC your emails there.
    On an IMAP email account, your sent emails should sync to your server anyway. Why do you need the AutoCC?
    2. How to integrate iCloud contact, calendar, or email accounts on the BlackBerry 10 smartphone  
    BlackBerry Q10 smartphone Calendar and Contact synchronization fails with the error "Failed to sync ...
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I have Lion on my laptop and I want to back up my calendar TO my iphone. Not the reverse. iCloud only goes from iphone to iCloud to mac not the other way. Also, why doesn't "sync" mean update most recent changes across all devices?

    I have Lion on my laptop and I want to back up my calendar TO my iphone. Not the reverse. iCloud only goes from iphone to iCloud to mac not the other way. Also, why doesn't "sync" mean update most recent changes across all devices? I thought that was the point of iCloud. Any suggestions since iCloud doesn't seem to work?

    It's a work computer so I wanted to save them to my iTunes so I can access from another computer.  Should I go to a home computer and just Import for best results?  If so how do I do this?  Also, why would I be synched with another library and how do I find out what this is?  Very new/green user here

  • Sync occurs only from computer to ipod. How do I get it to sync from ipod to my computer calendar?

    My Ipod is only syncing from my computer calendar to my ipod.  How do I get it to sync from my ipod to my desktop calendar?

    I don't use Outlook, but manybe this article will help http://support.apple.com/kb/HT1418

Maybe you are looking for

  • How can I Connect to SQL Server or other RDBMS like Sybase from Form 6i

    I want to connect Connect to SQL Server or other RDBMS like Sybase from Form 6i. I kniow that I need some gateway product but I don't know the name of the product?Can i use some other technology to do the same like client software etc. I need this he

  • Can't remember security answers

    I have just upgraded to a new iPad and iTunes won't allow me to purchase an app without answering security questions. I have never provided any info and have no idea on the answers. How can I access my ITunes Store or provide answers to new security

  • Has anyone hidden the browser toolbars etc. via the UI screen?.

    I'm trying to implement a development feature (only) so that on pressing a button I can display as much of the screen as possible by disabling the browser toolbars etc. By doing this I can gain at least three extra rows on the screen, and I suspect t

  • IPhone "crashed" after 7.7 iTunes & 2.0 Software Upgrade ;-( Please HELP!!

    Ok - well I just upgraded my iTunes last night to 7.7 so that I could upgrade my iPhone software to 2.0 (fortunately I synced my iPhone prior to doing this). So after the 2.0 upgrade, my iPhone is trying to sync and then it gives me an error (Unknown

  • Pk_mail uses which service to trigger email

    Hi We are using oracle supplied package PK_Mail to send mails from oracle. Please find the below details: OS: Windows 2003 Enterprise edition 64 bit Service Pack: SP 2 Oracle: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Producti