How do I get iCal to display my event notes when working on my MacBook?

I just got an iPad 3G (which I love) and am bothering to use iCal for the first time. So far, it seems to be going well. The only disappointment is that when I view iCal on my iPad, I can see the notes attached to each calendar event. However, when I view the same calendar on my MacBook, I can only see the list of events. To view the notes, you have to double click every event, which seems really counter-intuitive and a complete waste of time (why enter a note if you can't see it)? Is there a way way to get my notes to display in iCal on my MacBook? What am I missing? Thanks for your help!!

The iPad has the same calendar views as the MobileMe (paid) calendar. The great looking calendar is not available on any other apple machine to my knowledge.
I purposely updated my MobileMe to get that calendar, not realizing that doing that update took away the ability to publish/share my calendars with family members or friends who weren't MobileMe users. So I got a pretty calendar and lost all the sharing functions I needed. Major dislike.

Similar Messages

  • How do I get Firefox to display the information bar when a pop up is blocked I accidentally clicked on "Don't show this message when pop-ups are blocked" when a pop up was blocked. How do I get this message to reappear again when a pop up is blocked?

    I just updated Firefox but can't get it to display the message when a pop-up is blocked. Most times I want them blocked but sometimes I need them enabled.

    You can see a pop-up block icon in the right corner of the Status Bar if you have chosen to hide the information bar at the top.
    You can left-click that pop-up block icon on the Status Bar and remove the check mark from "Don't show info message when pop-ups are blocked"
    You can look at these prefs on the '''about:config''' page and reset them via the right-click context menu:
    Status bar icon: browser.popups.showPopupBlocker
    Info bar at the top: privacy.popups.showBrowserMessage
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.

  • How do I get Firefox to display the information bar when a pop up is blocked

    I accidentally clicked on "Don't show this message when pop-ups are blocked" when a pop up was blocked. How do I get this message to reappear again when a pop up is blocked?
    I generally find pop ups annoying, but sometimes they are necessary to use certain websites properly. Now I can't get the information bar to come back when a pop up is blocked. How do I get it back?
    == Operating system ==
    Windows XP

    You can see a pop-up block icon in the right corner of the Status Bar if you have chosen to hide the information bar at the top.
    You can left-click that pop-up block icon on the Status Bar and remove the check mark from "Don't show info message when pop-ups are blocked"
    You can look at these prefs on the '''about:config''' page and reset them via the right-click context menu:
    Status bar icon: browser.popups.showPopupBlocker
    Info bar at the top: privacy.popups.showBrowserMessage
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.

  • How do I get a "Details" display--as the default--when downloading a file, in the "Enter name of file to save to..." dialog box?

    When I receive an attachment to an email, and I click it and select "Download", I get the "Enter name of file to save to..." dialog box (because I already set the option to "Always ask me where to save files." But the file display always defaults to a "List". At least recently. I don't recall it always doing that. In any case, I want it to default to a "Details" display, in ascending order, as I can then find things sooo much faster that way. (I often use the "Date Modified" tab to bring to the top the most recent version of a file.) I know that I can go to the "View Menu" icon and select "Details", but each time I go into a sub folder while in this dialog box, I have to do that all over again and it wastes a lot of time and attention.
    I did some internet searches but didn't find a way to fix this.

    Thanks for reaching out, glennr.
    The dialog box you are describing is controlled by Windows, not Firefox, so unfortunately Firefox cannot change what you see by default.
    I think your best bet would be to ask on the [http://answers.microsoft.com/en-us/windows/forum/windows_xp?auth=1 Windows support site].

  • How to I get iCal to open on login (not just startup but also open a new window)

    I have added iCal to the startup on login in user preferences but it only starts the program, what I am trying to achieve is it startup and open a new window for me to review my daily calendar as soon as I login to my computer.

    Thank you, "the-edmeister" -- You render a great service, one that lifts my spirits.
    Your answer also taught me to be a little more persistent, as I had started looking at Preferences, and just didn't notice the icons (including Applications) at the top of that window that would have led me to my answer.
    Dave

  • How do I get rid of xml tags but not when the tag has copyright in it?

    I tried this but it does not seem to do anything:
    temp_string=temp_string.replaceAll("\\<.*?(!copyright)\\>", "");An example of this is that if I have: <meta name ="copyright" > I do not want to get rid of the tag. In other words, I do not want to get rid of any tags that have the word "copyright" in them, but I want to get rid of all other tags.
    Edited by: setaret2004 on Dec 16, 2008 4:11 PM

    setaret2004 wrote:
    Also if I want to include license as well do I just do: str = str.replaceAll("<(?![^<>]*(copyright|license))[^<>]*>", ""); Is that correct?Yes, you can do the same thing with all three regexes. Now, explanations:
    "<(?![^<>]*copyright)[^<>]*>" This regex does one lookahead, scanning forward for the word "copyright" before beginning the actual match. It's a negative lookahead, so if the word is seen, the lookahead fails and so does the overall match. If the lookahead succeeds, the match position is returned to where the lookahead started and the real matching begins.
    A naïve approach would use ".&#x2A;" or ".&#x2A;?" in the lookahead, but then it would be free to scan past the end of the tag and find the word in the next tag or halfway through the document; lookaheads are slippery that way. But I used "[<>]&#x2A;", so once it reaches the closing ">" it stops scanning.
    That means, for every successful match the regex scans the whole tag twice--once for the lookahead and once "for reals". That won't be a problem in most cases, but if you're matching many large chunks of text, performance could suffer. Each of the other regexes only traverses the tag once. "<(?:(?!copyright)[^<>])*>" This one steps through the text one character at a time, at each position doing a negative lookahead before matching the character. That sounds like a lot of work, but in the vast majority of cases the lookahead will only have to look at one character before yielding.
    "<(?:(?!copyright|[<>]).)*>" This is basically the same as the second regex, but it does all the real work in the lookahead. I don't recommend it; it's less readable and probably less efficient than the second regex. But both the second and third regexes can be made more efficient by using [possessive quantifiers|http://www.regular-expressions.info/possessive.html] (that whole site is highly recommended, by the way): "<(?:(?!copyright)[^<>])*+>", "");
    "<(?:(?!copyright|[<>]).)*+>" The first regex can use a possessive quantifier, too, but not in the lookahead: "<(?![^<>]*copyright)[^<>]*+>"

  • How Can I get my JayBird Freedom Bluetooth Earbud Headset to Work with my MacBook Pro-Retina

    I have a 1st gen iPad and a relatively new MacBook Pro 15 Retina.  As well, I also have a Jaybird Freedom Bluetooth Earbud Headset (Mic/Stereo Speakers).  Finally, I have a Droid X (I'll explain in a minute why I mention this).
    My BT Earbuds can pair with my iPad and my Droid X just fine.  As a matter of fact, it can bind with my iPad for audio, and my Droid X for phone audio at the same time.  However, even when the Droid X and the iPad BT is disabled (on both), my MacBook Pro will not work with the Bluetooth earbuds.  I am able to pair them (it shows as a Jaybird Freed Headset, and shows that it can be used as an audio output/input device), but when I try to use the earbuds for audio, it almost hangs up for a few moments, then finally fails and reports that "there was an errr connecting to your audio device.." with the "stop using headset" as my only option.
    My MacBook Pro Gen 2 with Snow Leopard used to be able to pair with this headset.  I'm not sure if it is the OS or the newew generation laptop.  I have seen a few other threads on this, but no fixes that work for me.

    Just posted a problem I'm having connecting my Jaybird Freedom and iPhone5 (https://discussions.apple.com/thread/4716045). The Jaybirds connected fine with an iPhone4s and another (forgotten) device so I don't think the problem lies with the Jaybird. I'd be interested if you hear differently.

  • How do I get iCal to sync to my iphone 4. It used to work and now it won't. Any suggestions will be most appreciated.

    How do I get iCal on my Mac to sync with my iphone 4.
    It used to work and now it doesn't.
    I am not on MobileMe or the Cloud.
    Any suggestions will be most appreciated.

    Hi Arezzo
    I'm asuming you are using iTunes then to sync? this can be done over WiFi or the USB cable.
    Review your setting for the calendar sync once iTunes is open and your iPhone is connected. Make sure your Calendars are selected to sync that you need. By default all calendars will.
    So the option i have for you is to reset the sync service and this will reset those settings in iTunes. Meaning that you will have to switch them on again in iTunes to sync. But this mostly clears unresolved sync issues.
    Please do yourself a favour and hit backup in iTunes before doing any testing. iTunes will then keep a local backup of your iPhone in case of any data loss.
    {added}
    open Terminal from your Utilities folder and paste this command in to reset. OS X 10.6 - 10.8
    /System/Library/Frameworks/SyncServices.framework/Versions/A/Resources/resetsync .pl full [press Enter]
    if it prompts for a password, just type your password and hit [Enter] again.
    Open iTunes then set your syncs up and it should then carry on again.
    Message was edited by: WaldoWTM

  • How can I get iTunes to display the tracks from a CD in their original (album) order?

    To be absolutely honest, I don't really understand what this box is for, so I shall just use it to repeat and expand on my question. (I have already sent a "Feedback" comment on the same topic).
    How can I get iTunes to display the tracks from a CD in their original (album) order?
    It seems to me that there is something very basic wrong with the way iTunes handles CD Tracks.
    Professionally produced CD tracks are seldom if ever in a randomised order. Why then does iTunes seem unable to display the tracks in the order they appear on the original CD source - whether from a personally owned CD or from a download from the iTunes Store?
    Some music demands a specific, non-alphabetic sequence in order to make sense. Why does it seem that iTunes only offers Alphabetic, or reverse alphabetic order - both of which make a nonsense of the original, often intended order of tracks?
    Why not replace the so-called "cover-art" in the bottom left hand corner if the iTunes window - which, while it may look attractive to some, gives the barest of information concerning the original disc, with a list of the original CD tracks in their original order, so that the user can easily reestablish the order in which they should be played.
    As I would expect legibility might be a problem with doing this, why could not the original contents, (in their original order), at least, be displayed when the "cover art" is double clicked-on - the result of which at present gives me an enlarged version of the "Cover Art". While on the subject of the contents of the source disc, what about all the album notes which someone takes trouble to write in order to increase the appreciation of the music on the CD and the listener's general background knowledge of the artists involved. Such notes, it seems to me, have considerable intrinsic value in their own account. I would, I think, normally be prepared to buy such "Sleeve notes" - so long as a "taster" was supplied (as it is for the music) - for something like the cost of a single 'Tune" on iTunes.
    These two aspects let Apple iTunes down enormously, in my opinion. I think that by chopping even quite protracted sequences of music up into bits does no one any favours - except perhaps Apple's already quite substantial bank balance. People have to be aware that two and a half, to three and a half minutes is a very short time to develop a piece of worthwhile music, and that there are many, many composers, not all of whom are alive today who have written music that huge masses of mankind value for the enrichment of their lives and the human condition in general.
    Please make the viewing of iTunes tracks in their correct order by default possible. By all means have the alphabetical variations available as offering a different approach to the music, but not the sole approach to it - PLEASE.
    Frustratedly yours
    Alan Whitaker
    PS I work at my old 24" iMac Intel Core 2 machine which runs OS "Tiger" - because it is more beautiful to look at, the screen is more pleasant to work on, and because, in some ways it is more capable (it will run FreeHand MX without needing a "patch"), than my more recent 21.5" which runs "Snow Leopard". (I don't find it that much slower, either).

    Dear Mike
    Thanks for the support. I am utterly amazed that after all the hype about how good iTunes is that it cannot play a downloaded CD in the correct order, and that what that order should be is not available directly from within one's own iTunes installation. (I know that one can go back to the iTunes Store to check what the order should be, but having downloaded the tracks surely iTunes is clever enough to retrieve this important information.
    My iTunes to differ from yours in that I have also noticed that it seems unable to download copies of my "talking books" in the correct order either. But in my case it downloads them - from a CD - in order, but with the first track downloaded first - so that it appears at the bottom of the column of tracks so that it would get played last! (At least this is, while being inexplicable, a relatively "logical" bit of blundering and because of this is relatively easy to put right!).
    I like many genres of music, some of which are not really programmed except perhaps by the artist performing them. I know that Frank Sinatra was very careful to programme his album songs to obtain a particular effect and in relation to the keys of the music. iTunes presumes to know better.
    Film scores may be totally randomly put together, in some cases, but in others the order is vital to one's appreciation of the music as a whole and how it relates to the plot of the film.
    In symphonic music most works are divided into sections and are conceived by the composer that way. Some individual sections may gain a life of their own if played separately, but they are never complete in the sense that the composer envisaged them without being placed in their proper context.
    Opera and probably most choral music too, is similar except that the words may well become meaningless if the order is changed at the whim of a piece of ill-written computer code, while ballet music has to be heard totally within its sequential context or it becomes meaningless.
    Finally, I would venture that iTunes, by jumbling up the order of the tracks as recorded on a CD, does an immense disservice, not only to the music on a particular CD, but to music in general, by expressing everything in terms of "Songs" - which it seems to interpret as stand-alone items of between 2 and 4 minutes whatever the genre. Even the way the iTunes publicity speaks of how many "songs" it can store instead of how many minutes or hours of recorded sound. This has to be another brick in the wall of "dumming-down" of people's expectations, and the shortening of their attention spans.
    I don't know about anyone else, but I feel betrayed by Apple over this. Perhaps the look, feel and general presentation of an item are not the most desirable features of a consumer product. Maybe it should be judged more on it fitness for the purpose for which it was sold. There is one other possibility - that Apple are trying to redefine "Music" - and that everything that lasts longer than about 3.5 minutes or is in the form of what could for want of a better term be called symphonic in the broadest sense is something else - not "Music" within Apple's new definition, at all!
    Well that's off my chest! now I can get down to creating some sort of order in my iTunes Libraries, knowing that I have to reconsult all the sources in order to confirm the source playing order.
    Anyway thanks again. At least I know that it is not just me
    alanfromthatcham

  • How do I get iCal to print the calender just as it appears on the screen, not as lines down the side to indicate length of event?  I like the whole bubble of time approach as it is on the screen.

    How do I get iCal to print my calendar just as it appears on the screen?  I like the whole block-out method rather than just a line down the side indicating the time devoted to an event.  Is there any way to change the style of how it' sprinted?

    View > Sidebar > Bookmarks (Ctrl+B)
    Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily.

  • How do you get ical to show on your home screen?

    How do you get ical to show on your home screen? I deleted it from my homescreen (somehow) and i want to get it back.

    Just open the International preferences panel, go to Times, Customize, and click on the leftmost number (hours). A small triangle lights up, and a pop-up list of various formats opens. Just select the one you like (1-24 or 01-24). Make sure to set the Date & Time preferences to 24-hour clock first.

  • How do I get facebook birthdays displayed in my calendar to show up in the notification center?

    How do I get facebook birthdays displayed in my calendar to show up in the notification center?

    Thank You! The birthdays are still showing up in the drop down menue. Between the stocks and the weather widgets. Is there a fix for that???

  • How can I get my desktop display to go to 1440*900?thanks[solved]

    I am using KDE 4,My problem is I can't set my graphics display to 1440*900
    In my searching
    I've found this on the Ubuntu forum, which seems to be my issue. It doesn't matter what I set up in xorg.conf file, it ignores it.
    It references a file called "kcmrandrrc", which doesn't seem to exist on my system. I am not sure where KDE is getting the 320x200, 320x240, 400x300,...,640x480, 800x600 and 1024x768 graphics modes. It's not from xorg.conf.
    I found this file...
    "krandrrc"
    Which contains the following...
    [Screen_0]
    OutputsUnified=false
    UnifiedRect=0,0,0,0
    UnifiedRotation=1
    [Screen_0_Output_CRT1]
    Active=true
    Rect=0,0,1154,768
    RefreshRate=0
    Rotation=1
    How can I get my desktop display to go to 1440*900
    thanks
    Last edited by icywalk (2010-01-27 10:18:30)

    What I was looking for was something along these lines:
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "NvAGP" "3"
    Option "Overlay" "False"
    Option "ConnectToAcpid" "False"
    SubSection "Display"
    Depth 1
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 32
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Then you put in the 1400x900 that you wanted in the Modes line.
    If you are to use Xorg -configure successfully, you will need to do it from a console screen.  If you are using like kdm or gdm,  I would suggest that you log out, then go to a console screen (<ctrl><alt><f1>) and then log in to an account.  You will need to su, and then issue the following command to shut down x: telinit 3  that command should shut down X and your login manager.
    After that you can run Xorg -configure and do whatever else you need with it.
    Then, to get back to what you had before, the command telinit 5 should restore you back to your gdm or kdm or whatever.  (Normally <Ctrl><Alt><F7> will get you back to your login manager, if it doesn't try F6 or F8 until you find it.)
    HTH

  • HT201335 How do I get airplay to display more networks?

    I'm in my corporate office and there are 30 or so airplay networks.  I need to connect to a network that is not in the default list that appears.  How do I get airplay to display more networks?

    It should display the closest ones. I would ask someone around your office what the name(SSID) of the WIFI network that is your company(some "hide" the network). Just press "other" and manually type it in with the password. The ipad will automatically connect to it from now on.
    Edit: Or just go for a nice stroll around the building until it pops on the list. The list updates every few seconds or so(wheel turns..) Exercise too

  • How can i get ical invitations to work with outlook users?

    how can i get ical invitations to work with outlook users?
    I can send ical meeting invitations but outlook users are having problems having the meeting show up in their calendar….

    My Epson is able to do scans using Image Capture without any problems at all.
    Allan

Maybe you are looking for