My calendar on my iphone is different from the one on my macbook, help

On my MacBook Pro I have duplicate birthdays, duplicate events, and when I enter new events into my MacBook's calendar it doesn't transfer to my iPhone 4s, even though I have "all calendars sync using icloud"  Help

Some how I have gmail calendars, yahoo calenders, etc.  I just want everything on my mac and iphone

Similar Messages

  • Can anybody help me in finding the reasons why the time of email received are different from the one on my macbook which time is correct

    Hi
    Can anyone help me in finding the reason why the date on e=mail reced is different from the one on my MacBook eventhough it is correct
    Thanks

    Try this...
    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    If it doesn't work then perhaps a full tear down and rebuild of iTunes will fix things. See Troubleshooting issues with iTunes for Windows updates for details.
    tt2

  • I would like to change my Apple ID on my IPAD only as it is different from the one I use on my MAC and IPhone

    I would like to change my Apple ID on my IPAD only as it is different from the one I use on my Mac and IPhone

    Welcome to the Apple Support Communities
    Go to Settings > iCloud > Delete account, and Settings > iTunes and App Store > Apple ID > Log Out, and then login with the new Apple ID

  • When I insert a photo from iPhoto into my iMovie, the photo that appears in the movie is different from the one that I inserted - why is this and how can I make it work properly?

    When I insert a photo from iphoto into imovie, the photo that appears is different from the one that I inserted.  Why is this and how can I make it work properly?

    WHat version of iMovie, and iPhoto?
    THIs forum is for iMovie iOS (iPads, iPhones).
    Are you talking about iMovie for Mac?

  • Why can't I make a purchase from my new IPod using a new credit card which is different from the one registered with my apple account ?

    Why can't I make a purchase from my new IPod using a new credit card which is different from the one I have registered with iTunes before ?

    You can only use one credit card to one Apple ID.

  • Why is the library on my phone different from the one on my computer (I have iTunes Match)

    Why is the library on my phone different from the one on my computer? (I have iTunes Match) I just want the song off my computer to be the songs I have on my phone.

    Hey there Sparkly3gs,
    It sounds like your camera is not rotating as expected in the camera app. I want to recommend starting by quitting the running apps on the phone.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.
    When you have done that restart the phone:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    If the issue persists, I would next backup your device to iTunes, and restore it:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    I would suggest before restoring from your backup setup the device as new and make sure the camera functions as expected. Then restore from your backup and verify it still works.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • How I download a MP4 series of videolectures (that the seller has stored in Amazon S3 and has sent to my iPad email address--which is different from the one I use from the MacBookPro) from my iPad to my MacBookPro-.

    How I download a MP4 series of videolectures (that the seller has stored in Amazon S3 and has sent to my iPad email address--which is different from the one I use from the MacBookPro) from my iPad to my MacBookPro (so that I can the save them in iTunes and then synchronize some of the videolectures to the iPad?)

    To set it up as POP you need to delete the account, reboot the phone by holding the HOME and SLEEP buttons at the same time until an Apple logo appears (about 10 seconds), then add it back following these instructions: Forcing creation of a POP or IMAP email account
    I understand that you have used the same account for many years, but the technology is also changing constantly. Years ago the standard was POP (Post Office Protocol), which was designed at a time when it was inconceivable that anyone would access their email from more than one device. When people started using multiple devices, for the most part they wanted to see changes on one device mirrored on another. A new standard, IMAP (Internet Mail Access Protocol) was developed. With iMAP the master copy of all messages resides on a server, and multiple devices are kept in sync with the server. So if you delete a message from one device it is removed from the server, and then removed from all other devices when they next sync. This is the same way Microsoft Exchange works. Other benefits of IMAP include the ability to have multiple mail folders that are kept in sync across devices. In your case you could use this to create a separate folder for each family member, so they could move messages to their own folder and not clutter up the shared Inbox. Most computer mail readers can even automatically sort incoming mail into folders based on the contents of the message.
    IMAP is considered a "higher level" standard than POP. When you create a mail account iOS devices query the server and ask what it supports; if it says it supports IMAP then the account is automatically configured for IMAP. So if you really want POP you must fool it, as described in the link above. In my experience Android devices default to the highest level protocol also, and I suspect newer Blackberries do (although it has been 15 years since I used a BB).

  • HT5930 Why does my Aperture v3.5.i look different from the one shown in the online videos

    Why does my Aperture v3.5.i look different from the one shown in the online videos

    Are you asking about the colorful icons in the video?
    The video must have been done with an Aperture version 3.2.4 or earlier. Since Aperture 3.3 are the icons drab and gray - the Aperture 3.3 Release Notes are calling this:
    Newly designed monochrome source list and toolbar icons.
    The Release notes will tell you, what has changed since then:
    http://support.apple.com/kb/TS2518
    --Léonie

  • HT5622 The apple ID on my phone is different from the one on ICloud.  How can I change my ICloud ID??  I don't remember the password and it keeps asking for it!!!!!

    The apple ID on my phone is differnt from the one on ICloud.  I have gotten married and changed my ID for Apple.  My ICloud ID is correct in my PC but my phone is incorrect.  I don't remember the password for the ID for ICloud.  How do I change the ID???

    Welcome to the Apple Community.
    Did you create a totally new ID or just change your old one.

  • How to have a JComboBox display an item different from the one selected

    Hello,
    I have a JTable (single column). I have set this column cell editor to be a JComboBox...
    JComboBox stdComboBox = new JComboBox();
    TableColumn column_zero = stdTablewCombo.getColumnModel().getColumn(0);
            column_zero.setCellEditor( new DefaultCellEditor(stdComboBox) );I have added a lovString array say {"A", "B", "C") to this stdComboBox. However, when the user selects a value from this list, I need to display a value from another lovString array say {"1", "2", "3"}. So if the user selects A then 1 needs to be displayed.
    I have a TableModelListener on this table that is getting me the correct selected index for any of the JComboBoxes on any of the rows. But I am little lost on how to display the value from the 2nd list.
    Thanks.

    Yes...but do I do that in the TableModelListener ?
    This is what I've tried in the TableModelListener:
    public void tableChanged(TableModelEvent e)
             System.out.println(e.getSource());
               if(e.getType() == TableModelEvent.UPDATE)
                    TableModel model = stdTablewCombo.getModel();
                    int row = e.getFirstRow();
                    this.cellValue = ((String)model.getValueAt(row, 0));
                    if (cellValue != null)
                         this.selectedIndex = this.stdComboBox.getSelectedIndex();
                          System.out.println("Selected Index:" + this.selectedIndex);
                          if (this.selectedIndex >= 0)
                             String valueToSet = this.lovStringB[this.selectedIndex];
                             model.setValueAt(valueToSet, row, 0);
                          else
                               System.out.println("Value in cell is not from List");
                          }It returns the selectedIndex value allright.
    It sets the value of valueToSet string allright.
    it also does the model.setValueAt allright....but this triggers a tableChanged event and it goes back up - this is also fine. However, when it now comes back to the this.selectedIndex = , this again returns the index of the original selection and not a -1 (for values not in the ComboBox list). This makes it go into an infinite loop and gives me a StackOverflowError.
    Edited by: 799076 on Oct 10, 2010 9:41 AM
    Edited by: 799076 on Oct 10, 2010 9:49 AM

  • I cant' control the font - size displayed during edition is different from the ones (1 or more - never know) sent.

    1) When I edit my e-mail, the font is always the same - arial 10 pts. But once the e-mail is sent, what I can see in my 'sent' box and what the receiver gets is all messed up, especially when I have pasted some text. There are parts with huge font and there are with such a small one that it's difficult to read it. Or the whole text is extremely large or tiny.
    I need to write in HTML for I often must highlight some parts. I searched many forums but nowhere found any answer.
    2) When i get an e-mail the problem is similar: it can be written with the letters you can distinguish from the other side of the room or on a contrary - you would use binoculars to read it comfortably. The least font is set to 10 pts.
    Thunderbird 31.3.0, Win 7 (64).

    From John Waller: “If you're using IE8, hit F12 to launch Developer Tools which give you a point and click method of locating the relevant CSS rule on screen.”
    I have Internet Explorer 8 (IE8) so tried this method.
    This sounded like another promising possibility; however, I have not been able to change the font size in my post using this method.
    I have gone to Dashboard > Posts > Edit > then moused-over my post > clicked on "edit" and then hit F12. An enormous amount (20 pages or more) of CSS appears. I tried picking out the font size that I thought pertains to the post (under Text Area), and I have changed the font size from 13px to 24px; however, I have not been able to “save” the new setting. When I go back to it, it is back to 13px.
    As a result, I have not been able to use a trial-and-error method to establish which font size I must change in order to change the font size of my post.

  • I can't update apps on my IPhone because my e-mail address is different from the one that shows up on my apps update screen

    I can no longer update my apps on my IPhone 4 because I have a new e-mail account. When I try to update with my Apple ID the e-mail that shows up on the screen is my old e-mail address and since I once shared that with another person I no longer know the Apple ID for that particular e-mail.
    How do I change the old e-mail address and keep it from showing up on my apps update screen? I have deleted the old e-mail account from my phone.
    Thank you

    deena102 wrote:
    I can no longer update my apps on my IPhone 4 because I have a new e-mail account. When I try to update with my Apple ID the e-mail that shows up on the screen is my old e-mail address and since I once shared that with another person I no longer know the Apple ID for that particular e-mail.
    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID

  • Hp smart web printing: font is different from the one on internet page and hardly readable

    there is no space between etters in the printout which makes the text hard to read.
    How can I overcome this problem?
    System: XP
    Printer: HP laserjet  P2055d
    Internet Explorer 8

    In IE8 on the lowest toolbar, to the right hand side is a "tools" pull down. Click on it, then select "Explorer Bars", you should see one called "HP Smart Web Printing". If you do and it does not have a check by it, simply click on that option. An SWP toolbar should appear. If you do not have thswp line I would suspect an installation problem.

  • Iphone app store id is different from the id that is on my settings in the store section.

    hi guys, everytime i try to download a app it says my id is different from the one im suppose to be using. in my settings i go to the store section and it has the one im supose to be using but when i try to download or update a app, a different one comes up. please help

    All purchases through iTunes are locked to the Apple id used to purchase them ( the original owner )
    No way of transferring to another id, ever

  • We have 3 iPads 3 iPhones 3 Apple id's.  We want to use 1 calendar we can all access on each device and have each device update or sync and we all receive notifications from the one calendar. We do not want to share photos contacts, ect.  Please help

    We have 3 Apple Id's, each ID using an iPad and an iPhone (3 id's, 3 iPads, 3 iPhones). We want to use one calendar on all 6 devices and have that one calendar update or sync to all devices.  We would like all 6 devices to provide notifcations from the one unique calendar as well.  We do not want to share contacts, photos, ect.  Please suggest how to achieve this, with the name of the calendar, if I am to get one from the App store, and how to set this up.  Please talk in easy terms as I am technically Challenged. Thank you.  3 iPad air 2, 2 iPhone 6 plus, 1 iPhone 4s.

    Hello there MizzouTrojan,
    If I understand correctly you want all 6 devices to have access to a single calendar that each device gets notifications for and can edit. You can do that with an private iCloud shared calendar. First sign into www.icloud.com and use these steps from the following article to share a calendar:
    iCloud: Share a calendar with others
    Share a calendar privately
    Click the Share button to the right of the calendar name in the sidebar, then select Private Calendar.
    Note:    You can also share the same calendar publicly. For instructions, see the next task, “Share a calendar publicly.” 
    Type the invitee’s email address in the Add Person field and press Return.
    Click the pop-up menu with the invitee’s name and choose access privileges (View & Edit or View Only). 
    For each person you want to share the calendar with, repeat steps 2 and 3.
    When you’ve invited everyone and set their privileges, click OK.
    Invitation emails are sent from your iCloud email address to the participants you specified.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

Maybe you are looking for