Z22 / Franklin Covey - Daily Notes and Category syncing

I have two issues that I'm having when syncing between the Z22 and Franklin Covey PlanPlus. 
1) Daily Notes - Modifications between Daily Notes are not syncing.  I can make changes WITHIN the body of already existing Daily Notes from prior days, that have been already synced. 
However, if I try to APPEND additional information to the bottom of an existing Daily Note from a prior day, that has already been synced, the appended information will not sync.  This behavior is the same whether I append the information on the Z22 or on the PlanPlus desktop.
2) The categories in Contacts do not stay synced up between the Z22 and PlanPlus.  The categories were originally entered on to the PlanPlus desktop.  After the sync some of the categories made it over to the Z22.  Some did not.  I had to manually duplicate those categories on the Z22.  Then a couple months later, for no apparent reason, the categories that I had to manually enter on the Z22 disappear.  The contacts themselves are still there.  They have just lost their category designation.
Any suggestions would be appreciated.  Thank you.
Post relates to: Palm Z22

Similar Messages

  • Exchange notes and tasks sync

    Does notes and tasks sync from Exchnage mail account to Iphone? what ios version is required for this and are there any sync restrictions - only one way and so on?

    No, can't be done and No, there are no apps that can do this (by Apple's decree).

  • Do notes and photos sync back during reformat?

    I am running iOS 4.2.x and planning to move to 5.1.1 on a iphone 4. I wanted to ask whether Notes will sync back after I wipe everything and do a clean install of the new OS. Also, will all the photos go back into the Camera Roll or will they be placed in a separate Album? Last question is whether the calendar will sync back its events. I have multiple google calendars sync with the device. Thanks.

    You have to intiate the sync with iTunes which syncs from your computer to the iPhone, not the reverse. Same with your photos.
    When you start the upgrade another backup of the device is made that you can restore after the upgrade. However, photos and notes must be on your computer because they are not part of the pre-restore backup.

  • When will "Notes" and "Tasks" sync?

    When will the upgrade take place to be able to sync my notes to my iMac? And, when will tasks sync too? These are fairly basic functions for those who actually use their iPhone for professional purposes.

    Thank you. Obviously, I am new at asking questions here. I appreciate the straight forward and honest response though. I suppose I should just be happy for what it does do for now. I have noticed that Microsoft seems to be a little too quick to try to please and releases applications that ultimately fail and frustrate. Once I personally lose confidence in something, it turns into a general lack of confidence pretty quickly. Building the trust back after that is quite a task if at all possible. So, perhaps, Apple's approach is better. I wouldn't want to admit that I have personally lost my ability to be reasonably patient.

  • Why does Apple not support syncing Entourage Notes and Tasks with the iPhone?

    I'd like to know why Apply syncing does not support notes and task syncing with the iPhone.  It used to when I had a Balckberry and used a third party sync app.
    I bought the iPhone (4S) thinking that syncing would be smoother and have less problems than I was having with the Blackberry and third party sync software.  Are there any plans to support this?
    Ron

    ronmac990 wrote:
    Are you running Windows or OSx?
    Normally I run OS X, but on a whim I tested iCloud on Windows and was able to get Outlook to read and create Notes. It supposedly supports Tasks too, but I can't figure out how to use Outlook.
    I suggest reposting your question to the iCloud for PC forum: https://discussions.apple.com/community/icloud/icloud_on_my_pc
    or the iCloud for iOS forum: https://discussions.apple.com/community/icloud/icloud_on_my_ios_device

  • Failed to create a daily note

    I have successed to create a appointment using the sample code in the document of Oracle® Calendar Application Developer’s Guide,but failed to create a daily note.
    main code like this
    oracle.calendar.soap.iCal.iCalendar ical =
    new oracle.calendar.soap.iCal.iCalendar();
    oracle.calendar.soap.iCal.vCalendar vcal =
    new oracle.calendar.soap.iCal.vCalendar();
    vevent = new oracle.calendar.soap.iCal.vEvent();
    ical.addvCalendar(vcal);
    vcal.addvComponent(vevent);
    // set the vEvent attributes
    vevent.setEventClass(m_eventClass);
    // Start time
    vevent.setDtStart(k_startTime);
    // Duration
    vevent.setDuration(k_baseDuration);
    // Location
    vevent.setLocation(k_baseLocation);
    // Summary
    vevent.setSummary(m_testName);
    // UID
    vevent.setUid(m_uid);
    // Event type
    vevent.setXEventType(m_xEventType);
    // Description
    vevent.setDescription(ical.toString());
    oracle.calendar.soap.client.CreateCommand create =
    new oracle.calendar.soap.client.CreateCommand();
    create.setCmdId(m_cmdid);
    create.setiCalendar(ical);
    // Create the Oracle Calendar client SOAP stub
    // and set the basic authentication header
    System.out.println("Creating the Oracle Calendar client SOAP stub");
    oracle.calendar.soap.client.Calendarlet cws =
    new oracle.calendar.soap.client.Calendarlet();
    // Login
    if (cws == null) {
    return;
    Initialization myInit = new Initialization();
    myInit.initBasicAuth(cws, "test", "12345",
    "http://myhost:7777/ocws-bin/ocas.fcgi");
    // Next, make the SOAP call
    System.out.println("Making the SOAP call");
    oracle.calendar.soap.client.CalendaringResponse response =
    cws.Create(create.getElement());
    My call method is:
    MyEventCreateTest myEventCreateTest =
    new MyEventCreateTest("20060715", "PT01H00M",
    "Somewhere exotic", "MyEventCreateTest8",
    "MyEventCreateTest-UID-8",
    oracle.calendar.soap.iCal.vEvent.k_eventClassPublic,
    vEvent.k_eventTypeDailyNote,
    "CommandID-MyEventCreateTest", false);
    myEventCreateTest.run();
    and the log is:
    Creating the Oracle Calendar client SOAP stub
    Making the SOAP call
    SOAP send buffer:
    <?xml version='1.0' encoding='UTF-8'?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Header>
    <auth:BasicAuth xmlns:auth="http://soap-authentication.org/2002/01/"><Name>test</Name><Password>12345</Password></auth:BasicAuth>
    </SOAP-ENV:Header>
    <SOAP-ENV:Body>
    <cwsl:Create xmlns:cwsl="http://www.oracle.com/WebServices/Calendaring/1.0/">
    <CmdId>CommandID-MyEventCreateTest</CmdId><iCalendar><vcalendar prodid="-//Oracle//Calendaring//Calendarlet//EN" version="2.0"><vevent><class>PUBLIC</class><description>iCalendar
    vcalendar
    vcalendar.version:2.0
    vcalendar.prodid:-//Oracle//Calendaring//Calendarlet//EN
    vevent
    vevent.class:PUBLIC
    vevent.x-oracle-eventtype:DAILY NOTE
    vevent.dtstart:20060715
    vevent.duration:PT01H00M
    vevent.location:Somewhere exotic
    vevent.summary:MyEventCreateTest8
    vevent.uid:MyEventCreateTest-UID-8
    </description><dtstart>20060715</dtstart>
    <duration>PT01H00M</duration><location>Somewhere exotic</location><summary>MyEventCreateTest8</summary>
    <uid>MyEventCreateTest-UID-8</uid><x-oracle-eventtype>DAILY NOTE</x-oracle-eventtype></vevent></vcalendar></iCalendar></cwsl:Create>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    SOAP receive buffer:
    <?xml version="1.0" encoding="utf-8" ?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <soap:Body>
    <soap:Fault>
    <faultcode>soap:Server.Error::System::SOAPRequest</faultcode>
    <faultstring>The Create method did not have a proper element in the request</faultstring>
    <detail>
    <cwsl:Error xmlns:cwsl="http://www.oracle.com/WebServices/Calendaring/1.0/">
    <Class>Error::System::SOAPRequest</Class>
    <Code>0020-00-00-00000034</Code>
    <Line>3028</Line>
    <FileName>SOAPRequestHandler.cpp,v</FileName>
    <Version>1.46</Version>
    <LastMod>2005/07/05 15:02:04</LastMod>
    <Author>fleblanc</Author>
    <Date>Fri Jul 14 16:47:41 2006</Date>
    <PID>15299</PID>
    <TID>3046071216</TID>
    <Level>Error</Level>
    </cwsl:Error>
    </detail>
    </soap:Fault>
    </soap:Body>
    </soap:Envelope>
    Creating CreateReply
    Unable to create CreateReply
    Thanks
    null

    Hi,
    You also need to set the event parameter "m_dtstartvalue" when creating daily notes and day events, as follows:
    vevent.setDtStartValue(vEvent.k_valueTypeDate);
    Regards.

  • My ipod was working fine, I downloaded some new songs and the sync would not come up. Eventually it did but all the songs did not download. I was trying to do the song that were on my computer but not the ipod. no I have no content in my ipod.

    My ipod was working fine, I downloaded a couple of songs and my sync would not work properly, the  computer said it was in sync but some of the songs didn't download. I trying just picking the ones that did not load and now I have no content in my ipod. I restores it to manufacrtureres settings and backed up from file but my ipod says no content? Any ideas please........

    Hi jaded99, Welcome to discussions, I trust you found the correct iPod forum if not here is a link. Bob :~))
    http://discussions.apple.com/category.jspa?categoryID=146

  • WCS and WLC WLAN Config not fully in sync

    Hi,
    We're facing the issue WCS and WLC WLAN Config is not fully in sync. WLC  showing server 1 is IP:10.160.22.151, Port:1812 but WCS server showing none even  after click on “Audit” button. Any idea how to resolve this issue? Is this causing any wireless problem? Attached is screen captured. Thanks for your help.

    You mentioned "audit". Have you done a WCS audit so the WLC and WCS are in SYNC?
    If you make a change on the WLC you will not see it in WCS UNLESS they are SYNC. You will see the term "mismatch".
    "Satisfaction does not come from knowing the solution, it comes from knowing why." - Rosalind Franklin
    ‎"I'm in a serious relationship with my Wi-Fi. You could say we have a connection."

  • Iphone 3g sync and lost address book, notes and all data

    Have an iPhone 3G and synced with itunes yesterday and installed all updates. After the process wqas completed, my phone rebooted and I lost all my address book contents, all notes, and my calendar was wiped clean. Can I get some help in having these items restored?

    This is the Mac OS X Technologies > iSync forum. You appear to be a Windows user - also, even on a Mac, iSync is not used for syncing the iPhone.
    I'd suggest asking in the iPhone forums:
    http://discussions.apple.com/category.jspa?categoryID=201

  • ITunes 12.0.1 now just "hangs" and does not complete the sync with my iPhone (iOS 6.1.6).

    Hello all,
    I've seen similar posts earlier in Apple discussions, but I haven't come across a definitive answer yet…So, let me ask again:
    Up until 6-7 hours ago, iTunes 12.0.1 was working perfectly well including syncing with my iPhone (I use an oldie but a goodie and it suits my purposes, iOS 6.1.6, 3GS).  Specifically iTunes now "hangs" and will not complete the syncing process with my iPhone. It get to "2 of 6" in the backing up process, and then the spinning beach ball appears. I keep my iTunes library on a separate external HD (USB).
    Even if I only want to launch iTunes 12 to use it (and NOT sync), the application freezes.
    In similar posted questions, "Linc Davis" has asked that the user run a diagnostic using the Terminal utility.  I have done this, and I paste the results below.
    Any help with this is appreciated!
    System Version: OS X 10.8.5 (12F45)
    Kernel Version: Darwin 12.5.0
    Boot Mode: Normal
    Model: MacBookPro6,2
    USB
       USB Optical Mouse (KYE Systems Corp.)
    System diagnostics
       2014-11-06 iTunes hang
       2014-11-06 iTunes hang
       2014-11-06 iTunes hang
       2014-11-06 iTunes hang
       2014-11-06 iTunes hang
       2014-11-06 iTunes hang
       2014-11-06 iTunes hang
       2014-11-06 iTunes hang
       2014-11-06 iTunes hang
       2014-11-06 iTunes spin
    User diagnostics
       2014-10-26 DiskAid crash
       2014-11-03 CalendarAgent crash
    Kernel messages
       Nov 4 00:58:33   wl0: Roamed or switched channel, reason #2, bssid 4a:xx:xx:xx:xx:70 (note: I blocked these numbers out)
       Nov 4 09:11:52   SIOCPROTODETACH_IN6: utun0 error=6
       Nov 4 09:26:03   wl0: Roamed or switched channel, reason #8, bssid 4a:xx:xx:xx:xx:70
       --- last message repeated 5 times ---
       Nov 5 00:53:48   IOAudioStream[0xffffff8020a0b200]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1,464)->(2,668).
       Nov 5 00:58:25   IOAudioStream[0xffffff8020a0b200]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1,444)->(2,644).
       Nov 5 02:48:38   IOAudioStream[0xffffff8020a0b200]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1,440)->(2,640).
       Nov 5 02:48:38   wl0: Roamed or switched channel, reason #8, bssid 4a:xx:xx:xx:xx:70
       --- last message repeated 1 time ---
       Nov 5 02:51:16   IOAudioStream[0xffffff8020a0b200]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1,420)->(2,620).
       Nov 5 08:10:45   SIOCPROTODETACH_IN6: utun0 error=6
       Nov 5 08:26:07   wl0: Roamed or switched channel, reason #8, bssid 4a:xx:xx:xx:xx:70
       Nov 5 10:09:50   smb_ntstatus_error_to_errno: Couldn't map ntstatus (0xc0020050) to errno returning EIO
       Nov 5 12:43:34   SIOCPROTODETACH_IN6: utun1 error=6
       Nov 5 12:46:11   wl0: Roamed or switched channel, reason #8, bssid 4a:xx:xx:xx:xx:70
       Nov 5 16:55:00   SIOCPROTODETACH_IN6: utun1 error=6
       Nov 5 21:51:41   IOAudioStream[0xffffff8010256400]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1,418)->(2,618).
       Nov 5 21:52:04   IOAudioStream[0xffffff8010256400]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1,658)->(2,858).
       Nov 5 21:53:44   IOAudioStream[0xffffff801567f000]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1,478)->(2,678).
       Nov 5 21:54:28   IOAudioStream[0xffffff801567f000]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1,458)->(2,658).
       Nov 5 22:00:05   SIOCPROTODETACH_IN6: utun1 error=6
       Nov 5 22:08:48   IOAudioStream[0xffffff80180a4200]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1,40c)->(2,60c).
       Nov 5 22:31:57   SIOCPROTODETACH_IN6: utun1 error=6
       Nov 5 23:01:19   wl0: Roamed or switched channel, reason #8, bssid 4a:xx:xx:xx:xx:70
       Nov 6 00:01:42   SIOCPROTODETACH_IN6: utun0 error=6
    Loaded extrinsic kernel extensions
       com.freecom.driver.BoulderScsi (1.0.0d1)
    Extrinsic daemons
       com.bitdefender.CoreIssues
       com.bitdefender.Daemon
       com.bitdefender.UpdDaemon
       com.wdc.WDSmartWareServer
       com.wdc.WDDMservice
       com.trusteer.rooks.rooksd
       com.sonycorporation.BloggieInstallerAgent
       com.oracle.java.JavaUpdateHelper
       com.microsoft.office.licensing.helper
       com.cisco.anyconnect.vpnagentd
       com.bitdefender.upgrade
       com.bitdefender.AuthHelperTool
       com.adobe.fpsaud
    Extrinsic agents
       com.trusteer.rapport.rapportd
       com.sony.BloggieSoftware.AutoRun
       com.cisco.anyconnect.gui
       com.bitdefender.antivirusformac
       com.Livestation
       com.google.keystone.user.agent
       com.divx.agent.postinstall
       com.adobe.ARM.UUID
    launchd items
       /Library/LaunchAgents/com.bitdefender.antivirusformac.plist
        (com.bitdefender.antivirusformac)
       /Library/LaunchAgents/com.cisco.anyconnect.gui.plist
        (com.cisco.anyconnect.gui)
       /Library/LaunchAgents/com.sony.BloggieSoftware.AutoRun.plist
        (com.sony.BloggieSoftware.AutoRun)
       /Library/LaunchAgents/com.trusteer.rapport.rapportd.plist
        (com.trusteer.rapport.rapportd)
       /Library/LaunchDaemons/com.adobe.fpsaud.plist
        (com.adobe.fpsaud)
       /Library/LaunchDaemons/com.bitdefender.AuthHelperTool.plist
        (com.bitdefender.AuthHelperTool)
       /Library/LaunchDaemons/com.bitdefender.upgrade.plist
        (com.bitdefender.upgrade)
       /Library/LaunchDaemons/com.cisco.anyconnect.vpnagentd.plist
        (com.cisco.anyconnect.vpnagentd)
       /Library/LaunchDaemons/com.microsoft.office.licensing.helper.plist
        (com.microsoft.office.licensing.helper)
       /Library/LaunchDaemons/com.oracle.java.JavaUpdateHelper.plist
        (com.oracle.java.JavaUpdateHelper)
       /Library/LaunchDaemons/com.sonycorporation.BloggieInstallerAgent.plist
        (com.sonycorporation.BloggieInstallerAgent)
       /Library/LaunchDaemons/com.trusteer.rooks.rooksd.plist
        (com.trusteer.rooks.rooksd)
       /Library/LaunchDaemons/com.wdc.WDDMservice.plist
        (com.wdc.WDDMservice)
       /Library/LaunchDaemons/com.wdc.WDSmartWareServer.plist
        (com.wdc.WDSmartWareServer)
       Library/LaunchAgents/com.adobe.ARM.UUID.plist
        (com.adobe.ARM.UUID)
       Library/LaunchAgents/com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID. plist
        (com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID)
       Library/LaunchAgents/com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID. plist
        (com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID)
       Library/LaunchAgents/com.divx.agent.postinstall.plist
        (com.divx.agent.postinstall)
       Library/LaunchAgents/com.google.keystone.agent.plist
        (com.google.keystone.user.agent)
       Library/LaunchAgents/com.Livestation.plist
        (com.Livestation)
    Extrinsic loadable bundles
       /System/Library/Extensions/acsock.kext
        (com.cisco.kext.acsock)
       /System/Library/Extensions/BoulderScsi.kext
        (com.freecom.driver.BoulderScsi)
       /System/Library/Extensions/WD1394HPDriver.kext
        (com.wdc.driver.1394HP)
       /System/Library/Extensions/WDUSBHPDriver.kext
        (com.wdc.driver.USBHP)
       /Library/Audio/Plug-Ins/Components/Flip4Mac WMA Import.component
        (net.telestream.wmv.import)
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
        (com.adobe.acrobat.pdfviewer)
       /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
        (com.adobe.acrobat.pdfviewerNPAPI)
       /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
        (com.divx.DivXBrowserPlugin)
       /Library/Internet Plug-Ins/Flash Player.plugin
        (com.macromedia.Flash Player.plugin)
       /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
        (net.telestream.wmv.plugin)
       /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
        (com.apple.plugin.iPhotoPhotocast)
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
        (com.apple.java.JavaAppletPlugin)
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
        (com.microsoft.sharepoint.browserplugin)
       /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
        (com.microsoft.sharepoint.webkitplugin)
       /Library/Internet Plug-Ins/Silverlight.plugin
        (com.microsoft.SilverlightPlugin)
       /Library/Internet Plug-Ins/SonyOnlineMediaEngine.bundle
        (com.sony.sonyonlinemediaengine)
       /Library/Internet Plug-Ins/TVUPlugin.webplugin
        (com.tvunetworks.TVUPlugin)
       /Library/PreferencePanes/Flash Player.prefPane
        (com.adobe.flashplayerpreferences)
       /Library/PreferencePanes/Flip4Mac WMV.prefPane
        (net.telestream.wmv.prefpane)
       /Library/PreferencePanes/RapportPreferences.prefPane
        (com.trusteer.RapportPreferences)
       /Library/QuickTime/Flip4Mac WMV Advanced.component
        (net.telestream.wmv.advanced)
       /Library/QuickTime/Flip4Mac WMV Export.component
        (net.telestream.wmv.export)
       /Library/QuickTime/Flip4Mac WMV Import.component
        (net.telestream.wmv.import)
       /Library/Spotlight/GBSpotlightImporter.mdimporter
        (com.apple.garageband.spotlightimporter)
       Library/Address Book Plug-Ins/SkypeABDialer.bundle
        (com.skype.skypeabdialer)
       Library/Address Book Plug-Ins/SkypeABSMS.bundle
        (com.skype.skypeabsms)
    Extrinsic shared libraries
       /usr/lib/libgutenprint.2.dylib
       /usr/lib/sqlite/libtclsqlite3.0.dylib
    Global login items
       /Library/Application Support/WDSmartWare/WDQuickView.app
    User login items
       Dropbox.app
       GREEN BUTTON.app
       SpeechSynthesisServer.app
    Safari extensions
       Ghostery
       Facebook Disconnect
       Twitter Disconnect
       DivXHTML5
       TrafficLight
    Restricted user files: 21
    Font problems: 40
    Bad plists
       Library/Preferences/com.apple.iphotomosaic.plist
    Desktop file count: 25
    Elapsed time (s): 75

    Dear Linc,
    Thanks, once again, for repeating yourself by sending me the message above (a message you have sent to MANY users with this problem)!
    However, you give me this great opportunity to say two things:  1) YAHOO! I fixed the problem, and 2) I want to share how I did so because I hope it helps others.
    With the help of reading info at this website http://osxdaily.com/2011/09/22/fix-the-itunes-library-itl-cannot-be-read-version -error-when-downgrading-itunes/, I followed this procedure:
    1) I deleted the iTunes 12.0.1 app from my computer
    2) In addition, in reading related details at the website above (i.e., by clicking on links on the page AND scrolling to the very bottom to view links to related articles), in my iTunes library folder, I changed MY CURRENT "iTunes Library.itl" to "iTunes Library.old", as the website advises. The current .itl file was the one being used by the iTunes app I had just deleted from my computer.
    3) I went to the "Previous iTunes Libraries" folder and dragged a copy of the second-most recent .itl file to my desktop (for me, this file was "iTunes Library 2014-07-23.itl").
    4) I re-named it to "iTunes Library.itl"
    5) I then dragged a copy of the file in step #4 to my iTunes folder (the folder in which you now also have the "iTunes Library.old" file).
    6) I closed all remaining apps on my computer that were opened and I restarted it.
    7) Now, you don't have any iTunes app on your computer, so I downloaded a .dmg of iTunes 12.0.1.26 and installed the app (for example, you can download from here: http://www.macupdate.com/app/mac/5661/apple-itunes.
    8) Once installed, I opened iTunes and immediately I got the dialogue box, "updating iTunes library" -- THIS TOOK FOREVER AS I HAVE CLOSE TO 1,000 SONGS + OTHER ITEMS IN MY LIBRARY!
    9) I patiently waited until the library update completed, but it DID COMPLETE.
    10) Viola!  iTunes 12 is not "hanging" (or freezing) any longer.  I can navigate around the application.
    CAVEATS:
    1) Before I first deleted "the corrupted" iTunes 12, I was able to open the Preferences panel, go to "Devices", and check the box that stops the app from syncing with my iPhone.  This setting seemed to carry over; thus, I have not tried to sync yet…WISH ME LUCK!
    2) After going through steps 1-10 above, I didn't immediately have Internet Radio available in the application (i.e., I didn't see it), but it is now showing up and it works!  I just had to wait for a few minutes...
    3) I also use iTunes Match, but I haven't turned it on yet in the newly installed app. On the iTunes Match page, it says, "Add this computer" or "No thanks". So, the app is behaving as if I'm just beginning to use iTunes Match for the first time.  Later, I will click on "Add this computer", and I hope it goes smoothly!
    4) This isn't a caveat, but I think I should say: my iTunes library is on an external USB HD (I have to say THANK GOD for that). Obviously, this has implications for doing steps 2 to 5 above. The newly installed iTunes 12 app had no trouble in finding where my library is (I had it set up this way back when I was using iTunes 10).
    5) One last piece of advice: Make sure that when you plug your iPhone into any other computer only to re-charge but the iTunes app on that computer wants to sync with your phone, you DON'T let it sync.  First, you should go to Preferences in the iTunes app and click on "Devices". Then check the box that says, "Prevent iPods, iPhones,…….from syncing automatically."  After that, you would be able to plug in your iPhone to another computer to re-charge it.
    FINALLY:  I THANK EVERYONE WHO WAS WILLING TO SUGGEST SOLUTIONS TO ME REGARDING THIS PROBLEM!  I see that MANY users are having this difficulty, so I thought it would be fair for me to share how I resolved the issue -- my iTunes is running fine now...

  • HT2729 i downloaded 3 songs to my pc and sync'd my ipod and the songs do not tranfer.  is this related to not having the proper itunes version vs ios?  I cannot get the songs to sync, but I can move other songs to different playlists and they sync fine...

    i downloaded 3 songs to my pc and sync'd my ipod and the songs do not tranfer.  is this related to not having the proper itunes version vs ios?  I cannot get the songs to sync, but I can move other songs to different playlists and they sync fine...any ideas what's wrong?

    Hi Dennis!
    I have a couple of steps for you to try in order to get those songs transferred to your iPod touch. First, make sure all of your software is updated with the latest versions. If the songs were downloaded from iTunes, you will also want to delete the songs from your library and then download them again from the list of past purchases on your iTunes account. An article about doing that can be found here:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    If you try a sync after those two steps and are still seeing the issue, then I would like you to try syncing the iPod by setting it to manually manage. An article outlining more information on manually managing your iPod sync can be found here:
    Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/ht1535
    If you are still having issues after that, I have another article that can outline some other reasons why your songs may not transfer to your iPod, and it can be found here:
    Some songs in iTunes won't copy to iPod
    http://support.apple.com/kb/TS1420
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • HT4759 My i phone 4s calendars have not been automatically syncing to my i cloud calendars.  I have noticed the i cloud account(apple id) on my phone is set to my primary apple id and my icloud apple id is set to the alternate id.  How do I change to prim

    My i phone 4s calendars have not been automatically syncing to my i cloud calendars.  I have noticed my phone apple ID is the primary one and my i cloud is using the secondary apple id.  I am able to log into i cloud using both IDs.  I believe the problem is the ID s are not the same on each.  I believe if I change my i cloud ID to the primary ID it will fix the issue but I can't figure out how to change it.

    To do this you will have to go to Settings>Mail,Contacts,Calendars and delete the secondary account (this only deletes it from your phone, not from iCloud).  Then go to Settings>iCloud and tap Delete Account to delete the primary account.  Next sign into your former secondary account ID in Settings>iCloud, making it the primary account.  If you wish, you can then go to Settings>Mail,Contacts,Calendars>Add Account>iCloud and add the former primary account as your secondary account.

  • I keep trying to sync things among my MacBook Pro, iPAD, and iPhone.  Usually this works fine for a few days, but then I notice that the calendars aren't syncing and the "notes" aren't syncing.  How can I get them all to stay in sync?

    I have a MacBook Pro running OS X Yosemite, version 10.10.2.
    I have an iPad 2 running 8.1.3
    I have an iPhone 6 Plus running 8.1.1
    I have my Mail, Contacts, Calendars, and Notes set up to sync over iCloud among the three devices.
    I haven't had a problem with the Mail or Contacts syncing (at least not as far as I know), but the Notes and the Calendars don't seem to stay sync'd up.  I will notice that they aren't sync'ing, will delete and re-sync and they are fine for a while, but inevitably they stop sync'ing at some point.  This has been true through earlier incarnations of operating systems, so not something new.
    How can I get them to sync and stay sync'd?

    Soundman562 wrote:
    There used to be a tab under Itunes that allowed you to select to sync things like calendar, notes etc. but this is no longer there, can anyone help?
    This was removed in 10.9.  You may have better luck getting assistance in the relevant Mac forum.

  • My notes won't sync from a google account with the macbook air, but they sync fine on the ipad air and iphone 4s??

    I keep getting this message when I try to sync my notes in a google account this message keeps popping up... mail couldn't discover the account settings.  My mail shows up, contacts and calendar sync fine, and notes from other emails sync fine.  But this one email will NOT let me sync?????? Any suggestions? 

    Go to Settings>Mail Contacts Calendars
    Scroll down to Mail section and find Show. Selecting something different here may solve your problem. Mine says "50 Recent Messages". You may need more.

  • Can I backup two devices (with different documents) to one iCloud account?  For example: iPad and iPhone, not everything is synced between the two, but I would like to backup each (seperately in the cloud), is this possible?

    Hello Apple Community,
    Can I backup two devices (with different documents) to one iCloud account? 
    For example: iPad Air and iPhone 5, not everything is synced between the two, but I would like to backup each (seperately in the cloud).  Is this possible?
    This way when I change from an old ipad to a new, I can restore with the ipad backup, and when I change from an old iphone to a new, I can restore from the
    iphone backup.
    Thank you in advance!

    Terminology check here. Do you really mean a "CD"?  There's a difference in Cloud behavior between content from a physical CD you ripped (which only has Cloud content if you have iTunes Match) and an "album" you bought from the iTunes Store.
    Read references for Home Sharing.
    iTunes: How to share music and video - http://support.apple.com/kb/HT2688 - about Music Sharing and Home Sharing
    Home Sharing Support page - http://www.apple.com/support/homesharing/
    iOS: Setting up Home Sharing on your device - http://support.apple.com/kb/ht4557 - "With Home Sharing in iOS 4.3 or later, you can stream your entire iTunes library over your home Wi-Fi network from your Mac or PC right to your iPhone, iPad, or iPod touch."
    The above can get pretty complicated.  You are probably best off by syncing both devices to a single library and/or updating the libraries on both computers to have the same content.

Maybe you are looking for

  • How to catch ALL Exception in ONE TIME

    I'm explain my issue: I'm making a program with Class, Swing, Thread ... Then all action I do on my graphical application, I use a new thread, well I want to capture in my Startup programs, all unknow exception and then, I display it with a JOptionPa

  • Help with HP 3600n printer setup

    Have a wrt54gs with wireless adapter. Trying to connect my HP 3600n printer. Can anyone take me step by step on the setup. Been with tech support for 4 hrs, still not working. Wireless is up and running. Thanks, KAP

  • Validating file/folder path from application server.

    Hi All , I have used the FM '/SAPDMC/LSM_F4_SERVER_FILE' to open F4 help for application server. Now I want to validate the folder or file returned by the FM. Can anyone help on this? Thanks Shilpa

  • Stop and start a photos slideshow

    Hi .. So I want to use the photos slide show to execute a presentation .. But this means I need to start the slideshow and then stop, present the slide (a photo of the slide in fact), and then continue to the next photo .. I.e. I want manual control

  • .dmg files open disk utility. Can't install new software

    For the last few months I've not been able to download and launch disk images (.dmg files).  Instead of a dialogue asking if I want to launch the downloaded file or some other natural step in launching the disk image, I hear the hard drive boot as if