ICal icon gone

getting this error message: You cannot open the application “iCal” because it is not supported on this architecture.
Does anyone know how to recover iCal application?

Mari Ann,
Welcome to Apple Discussions.
1. Do you have any idea why this may have happened?
2. Did you recently change, or update something that precipitated this behavior?
3. Has iCal worked in the past?
4. Is the iCal application still located within the Applications folder?
5. Have you repaired disk permissions lately?

Similar Messages

  • Little Red Number on Ical Icon on dock

    I have a little red circle at the upper right hand corner of my Ical Icon on the dock. It is the same as the number that appears when I have 4 emails waiting for me in Mail. I don't publish my calendar, nor do I have any alarms, nor do I have any events of merit. I just use it as a desk calendar. How do I get rid of the Four in the circle? Looked everywhere for this answer.

    I just figured out how to get rid of the numbers. Click Notifications on the bottom left part of the Ical screen and some blank invitations will show up. Click one and a box shows up that gives you the option of deleting the Notification/Invitation. I did that for the 4 little boxes and the number is gone.
    stuart

  • ICal icon on my Mac Book Air displays a circled number at the upper right corner as does Mail for new emails - how do I find out what item(s) that number is referring to? And why does it show up on the Mac Book Air and not my 4S iPhone?

    A circled number appears in the upper right corner of the iCal icon on my Mac Book Air. What does it mean? How do I resolve it? Why doesn't it appear on my 4S iPhone via the iCloud?

    Glenn,
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification. Since OS X 10.7.2 is required for iCloud integration, I am not surprised that there are anomalies between the iPhone and the MacBook Pro.

  • Date in iCal icon not in right place

    Does anyone know why the date in my iCal icon shows like this:
    !http://www.feisar.plus.com/ical.jpg!
    In all the screenshots I've seen of Leopard, the date is shown in the white part of the icon. The numbers in mine are shifted up a few pixels.

    Strangely, I just did a completely fresh install of Leopard onto another disk partition, and the icon shows up correctly.
    So, I figured it must be something to do with my upgrade installation, so I did a fresh 'Archive and Install' onto my main hard disk thinking it would fix it, but no, the problem is still there.
    So I presume it is something in both the User accounts I have set up that is doing it. but oddly, it also does it if I set-up and Log in as a Guest account.
    Anyone got any ideas?

  • I have reviewed all written responses about the number in red circle that appears on ical icon and all of them mention an envelope in the bottom left-hand corner with an invitation.  I have the number but no envelope.  How do I remove it?

    I have a number in a red circle on the ical icon at the bottom of the desktop.  I know from reading previous (quite old) posts that there should be an envelope with an invitation in the left-hand bottom corner of the ical page.  I don't have the envelope.  My partner recently got a new Mac and was trying to join our calendars and it caused some problems for me so she discontinued that merge.  We are no longer connected (by Mac, I mean).  This may have caused the problem but now I don't know how to get rid of that number.  I can't find any event that she added to my calendar to click on to perhaps get rid of it.  Any ideas?

    pacull,
    Use iCal>View>Show Notifications to choose what to do with the notification.

  • What is the little Red 1 on the iCal icon in the Doc?

    Uh...what is that little red 1 on the iCal icon in the doc when I open iCal...and how do I make it go away?
    I'm sure a ridiculously simple answer is headed my way...Thanks

    Moving Still,
    That means that you have an event invitation. Click on the envelope icon in the bottom left corner of the iCal window to display the invitation and choose what to do with it.
    ;~)

  • Why is the date on the iCal icon the 17th July!?

    I was amusing a friend recently showing him how the date on the iCal icon changes to the current date when you open it up and he asked an interesting question ... why does the icon show the date as the 17th July when the application is not open?
    I had never really thought about it before so decided to search the internet for a reasonable answer ... the following are a list if interesting events which occured on the 17th July (none of which however seem likely to be the reason for the icons date):
    1995 - The Nasdaq stock index closes above the 1000 mark for the first time.
    1989 - First flight of the B2 Stealth Bomber.
    1987 - The Dow Jones Industrial Average closes above the 2500 mark for the first time.
    1976 - Viking 1 lands on Mars.
    1975 - Russian and American astronauts meet in space as the Apollo and Soyuz spacecraft's dock successfully.
    1964 - A new land speed record is set by the Bluebird (driven by Sir Donald Campbell) reaching a speed of 429mph.
    1955 - Opening of Disneyland in California.
    1936 - Start of Spanish Civil War.
    1917 - The British Royal Family change their name to Windsor in place of their German family name Saxe-Coburg-Gotha.
    1790 - The first sewing machine is patented by Thomas Saint.
    1453 - End of the One Hundred Years War.
    I then came across this page on the Apple site ... http://www.apple.com/pr/library/2002/jul/17ical.html ... which gives the obvious answer that the reason for the icons date is simply that the program was first introduced at MacWorld on the 17th July 2002! Simple!

    Have you read ?
    http://support.apple.com/kb/TS3579

  • Dynamically Change icon (like iCal icon) (iPhone OS 3.1)

    I'd like to be able to change the icon in a tab bar to reflect the current date...rather, I'd like to have a background image, with the date as a number on top of that—basically what the iCal icon on OS X does. Is there a way to create the number on that icon, or is this not possible?

    musicwind95 wrote:
    when I create the new tab, how do I know which one it's replacing?
    I'm not sure you've seen the view hierarchy yet. Are you sure you set the "View Mode" switch to the Center position in the MainWindow.xib window (see the instructions for displaying the small-icon view hierarchy in my May 22 post).
    If you're looking at the hierarchy (with all the nodes of the tree expanded), note each view controller owns a UITabBarItem object. This point is often misunderstood, since we see the tab bar items on the tab bar. But each tab bar item is a child of its controller, and the address of the tab bar item is stored in the 'tabBarItem' property of that controller. So when we replace the tab bar item in this line of the example:
    - (void)awakeFromNib {
    self.tabBarItem = tabItem;
    We're setting the 'tabBarItem' property of 'self' to the address of a new tab bar item. Therefore we're changing the tab bar item for the controller which received the awakeFromNib message. If that controller is connected as the first child of the tab bar controller, we'll be changing tab bar item #1. If that controller is the second child, we'll be changing tab bar item #2, etc.
    Of course if more than one view controller is an instance of the same custom class, e.g. FirstViewController is the class for both the first and third controllers, the tab bar items for both #1 and #3 will be reset when the respective controllers receive the awakeFormNib message. In that case we'd need a way to know whether 'self' was the address of the first or third controller. That could be done in several ways. For example, we could tag each controller's original tab bar item in IB. Then we might do something like the following to ensure the item replacement code only runs for the controller object which owns tab bar item #1:
    - (void)awakeFromNib {
    if (self.tabBarItem.tag == 1) {
    // replace tab bar item
    Once again, the above if-condition would only be needed if the first controller and one or more other controllers were of the same class.
    Would this code be better off in the app delegate or the view controller?
    The code belongs in a method of the view controller which wants its tab bar item to be replaced.
    I've created the tab bar in IB (or rather, I started with a Tab Bar template), so I don't have a view controller for the tab bar itself.
    Referring again to the small-icon view hierarchy in the MainWindow.xib window, note the tab bar is connected directly to the tab bar controller. The tab bar controller is the controller for the tab bar.
    ... In at least two of the tabs that I'm working in, I'm displaying a table view that leads to a navigational hierarchy. How would I set that up?
    This time it's essential to be able to see the small-icon view hierarchy in the MainWindow.xib window. So please follow the instructions in my May 22 post in case you haven't done so already. Next, follow these steps (which assume tabs 3 and 4 will each bring up a table view under a nav bar which is controlled by a nav bar controller):
    Add a new UIViewController subclass in Xcode for the tab 3 controller. Check both Options so the new class will be a subclass of UITableViewController, and a matching XIB file will be created;
    Name the subclass ThirdViewController (name it whatever you want, but the class will be referred to as ThirdViewController here);
    Open MainWindow.xib, make sure the XIB window is visible (Window->Document) and its View Mode switch is in the Center position, then expand the small icon tree so you can see all the view controllers under the Tab Bar Controller;
    Drag a UINavigationController object into the XIB window, and drop it onto the Tab Bar Controller icon. If you only had two controllers to start with, the Nav Controller object should now be in the last (3rd) position. If you already had a third controller, drag the Nav Controller icon to place it under the second controller. The Nav Controller icon should now be in the third position;
    Expand the Nav Controller subtree, and select the Root View Controller icon;
    Open the Identity Inspector and set the Class of the Root View Controller to ThirdViewController;
    Open the Attributes Inspector and set the Nib Name to ThirdViewController;
    If you checked "With XIB for user interface" when making the ThirdViewController class in the first step, ThirdViewController.xib should already be setup correctly; i.e. File's Owner will be set the ThirdViewController class, the 'view' outlet of File's Owner will be connected to a Table View object, and the Table View's delegate and dataSource outlets will be connected to File's Owner;
    Open ThirdViewController.xib, select the Table View and locate the Simulated User Interface Elements group;
    Set Top Bar to Navigation Bar. This optional setting will paint a dummy nav bar in the Table View editor window and cause the size of the Table View to be adjusted to fit. The dummy nav bar is just a placeholder for the real one which will be created at runtime. You can't place controls on the dummy bar; it's just to help you see how the screen will look;
    Repeat the above steps to add a nav controller at position 4, making a FourthViewController class for the root controller;
    If you now have too many tab positions, you can delete each extra controller by selecting its icon and selecting Edit->Delete.
    That should complete the project skeleton, and you should now be able to Build and Go. You won't see the table views though, until you set up the data source methods in the respective controller implementations.
    - Ray

  • Date on iCal icon

    I've recently noticed that the date on the iCal icon is wrong. Right now it shows '5', when I launch iCal it changes to '9' (today's date). It's annoying as it do use the date on the icon. I've no idea as to what would be causing the problem or where to start to solve it, so I'm here.
    Cheers in advance

    I realize this has been discussed endlessly, but I'm throwing in because I'm up too early on a Sunday:
    I always thought the previous launch date was a feature, no joke intended. The idea was that the old icon display date showed you, up front and obvious, the last time you checked your agenda. I guess this isn't much use if you're bad at remembering dates but there's a potential clock on the menu bar to learn that.
    I wouldn't pipe up without a recommendation though. A simple idea; would launching iCal at login, but hiding it, change the icon date display to your satisfaction? It would be running and I'm sure one could script a launch and quit, but you could right-click iCal in the dock to select Open at Login (or list it with the operator "+" in the following location) then under System Preferences/System/Accounts/My Account/Login Items you could toggle on Hide under "These items will open automatically when you log in."
    At least it would update daily if you log out daily. I wonder if the date rolls over if iCal is left running, if you're the kind of account that leaves their computer on 24x7?

  • How to I get rid of a "footnote-like" number by my iCal icon?

    Suddently I have a "footnote-like" number by my iCal icon.  I have my calendar items color coded and the "footnote" also shows up when I open my calendar.  I don't know how the footnote got there or how to get rid of it.

    The footnote is by my tasks identified with a blue color.  I unchecked all of the other calendars and then looked through my calendar at all of the blue items.  I didn't find anything like a "meeting invitation."  I searched the calendar for "invitation," but that didn't result in anything.

  • Why is my iTunes icon gone from my phone?

    Why is my Itunes icon gone from my phone. I don't have it anymore.

    Check: Settings - General - Restrictions - iTunes = ???

  • ICal icon in the dock is NOT live

    One of the first things I noticed in Leopard was that FINALLY, the iCal icon in the Dock reflects the current date without iCal being open. This was "confirmed" by several reviews I read online.
    Woohoo! Apple finally responded to the #1 complaint about iCal and the Dock! Right?
    Wrong. They simply defaulted it to OCT 26 for Leopard's release, which should now be known as October Fool's day.
    Honestly Apple, how hard would this be to fix? You even did it on the iPhone! You spent all that effort on live reflections in the dock but can't fix a bona fide usability problem?

    you're not alone. my ical dock was also buggy. when it was closed it displayed the date that was one earlier than the current date in the menu bar. and when i opened, ical, it displayed the current date. i removed the icon and then replaced it like you did and it fixed the bug (that was really annoying me).
    i had a clean install of Leopard, don't know if you did upgrade or clean install.

  • HT1386 why won't my ipad charge from my computer - my iphone does! and where has my facetime and contacts icons gone?

    Why won't my ipad charge from my computer when my iphone does? also where have my facetime and contacts icons gone?

    A computer USB port does not provide enough power to charge and run the iPad at the same time but it will charge it if the iPad is turned off.  It will take about four times as long to charge than with the iPad charger.
    The Contacts icon may be inside a folder, such as Utilities.
    There is no Facetime icon.  Start a Facetime link from a contact.

  • Red one on ical icon on iPad iOS 4.2

    What is that little red 1 on the iCal icon in the doc when I open iCal...and how do I make it go away?
    When I go into iCal, there is no invite in the lower left corner. How do I reset this or make it go away? Thanks for any help you can provide.

    Ingenico has a 1D Bluetooth barcode scanner certified MFi by Apple.
    http://baracoda.ingenico.com/Baracoda-i-fly.aspx
    Baracoda i-Fly is compatible with Apple iPod touch, iPhone and iPad.
    Baracoda i-Fly supports IAP Bluetooth profile and is MFi certified, which means it is 100% compatible with Apple development standards and performances.
    Its Bluetooth connection is bidirectional, which enables the i-Fly to transmit data both ways in mode « No Data Loss »).
    Furthermore, Firmware update is also possible, which is not the case for non-MFi certified devices.

  • Favorites icon gone from Oracle SQL Developer Help screen

    Favorites icon gone from Oracle SQL Developer 3.0 Help Center screen
    How do I get it back?
    In Oracle SQL Developer 3.0 I clicked
    Help->Table of Contents
    to bring ut the Help Center window.
    It the Help Center window I used to have a Favorites tab next
    to the Contents TAB on the left side of the window.
    I did an unpin some how and now I can't get the Favorites
    TAB back.
    On the right side there is a Star + icon that does
    Add to Favorites.
    I can add links to favorites but I have no way to go to these
    saved favorites anymore.
    How do I get the Favorites TAB/Icon back?
    Thanks

    Hi John,
    SQL Developer depends on JDeveloper code for the Help. After closing the Favorites tab I see no way to re-open it in the UI, so I imagine there may be a bug on the JDev side. Fortunately, there is a manual fix:
    In file product-preferences.xml
    In directory C:\Documents and Settings\<userid>\Application Data\SQL Developer\system3.0.04.34\o.sqldeveloper.11.1.2.4.34
    use Notepad to look for the lines like:
          <value n="helpDynamicLinksNavigatorLocation" v="3"/>
          <value n="helpFavoritesNavigatorLocation" v="0"/>
    Just change the value "0" to "2"Regards,
    Gary
    SQL Developer Team

Maybe you are looking for

  • ALSA and/or PulseAudio sudden stutters

    Hello! Recently, I have switched to Arch distribution, and since then, sometimes run into the following issue: 1. Sometimes, not always - audio output becomes, well, let's name it, "filled with gaps" - various blank spaces occur, different by delay a

  • VLC - Corrupted Package

    I try to install VLC, but I fail each time because of the following: # pacman -S vlc resolving dependencies... done. looking for inter-conflicts... done. Targets: libmad-0.15.1b-2 sdl-1.2.12-1 libmpeg2-0.4.1-1 lame-3.97-1 libvorbis-1.2.0-1 a52dec-0.7

  • Dynamic time field in Variant

    Hi , I would like to create a variant for a custom report with time being dynamic.Purpose is to execute this report every hour as background job with time also as an input .ie suppose job is running every hour , report should fetch data  within this

  • How get email address from received email?

    In the old days, like 6 months ago, I could depend on being able to salvage an intended recipient's email address from a note they sent to me. Just click on the name in a received email, then open a "new" email under that address, bang out the messag

  • IPhoto does not recognize when I ask it to print

    I have iPhoto 6.06 and was printing photos fine. Then suddenly the program stopped recognizing when I clicked on print. Nothing happens...the program just sits. Any ideas?