ICal icon changed

I just noticed last night that the iCal icon changed to Nov 13. But it doesn't have the iCal calender part of the icon behind it, just the text part. I'm guessing this is because it's Friday the 13th. Anyone else noticed this? Or does iCal do this randomly and it's just a coincidence?
EDIT: Sorry I mean does it do this everyday and I just noticed it now? Or does it only do it for Friday the 13th?
Message was edited by: tomm0v

tommOv,
Welcome to Apple Discussions.
...I mean does it do this everyday and I just noticed it now? Or does it only do it for Friday the 13th?
I suspect that the association with Friday the 13th is only coincidental.
Do you have any duplicate fonts? If so, be sure to use the "Resolve Duplicates" menu command.
;~)

Similar Messages

  • 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?

  • Why am I getting error"403" when I enter an Apple appointment via one to one or Apple confirmation email, but not on any other ical icon non apple additions?

    Whenever I add a one to one Apple class from my one to one site and click the ical icon, I get the following error message. I also get it when I click on the ical icon from the Apple email confirming my appointment to add to my calendar on my Mac Book Pro. But, when I clcik an ical icon from say, Open Table, for a reservation I do not get the error. At the Apple store, they tried it and saw they got the same erro on their laptops as well. I notified as did the Apple store over two weeks ago, but nothing has changed.
    Error:
    The server responded with an error.
    Access to "Apple- One to One: Open Training" in " Apple Store" in account "icloud" is not permitted.
    The server responded: "403" to operation CalDAVWriteEntityQueueableOperation.
    Ignore    or   Try Again  or Revert to Server

    can you connect to the internet? today was the day the FBI shutdown a DNS server and people who were affected with the virus got shut off from the net. it was on  for 5 years.

  • Icons change after startup

    After starting up the icons on my desktop, for example a Acrobat Professional .pdf, just looks great but then changes just before finishing startup into a 'normal' icon with just some text as icon.
    Does anyone know how icons can be viewed as defined by the program (such as Adobe)?

    Sorry, didn't mean to confuse you.
    After the login window, the mac starts up and then shows the desktop. The .pdf, docx and xlsx icons on this desktop (so I saved them there once) are first shown as application icons (kind of nice icon with colors). Then during the startup of the Login Items (in my case Mail, iCal and Activity Monitor) the icons change to a regular graphic design which looks like ugly text-icons.
    (I think that on the startup of the Login Items the mac is not finished its regular startup so I don't know if these login items have something to do with it. Guess not.)

  • ICal Icon on Dock

    My iCal Icon on the Dock previously projected the Jul 17. It now has no month in the red, and the number 1. I wish it would show the defaulted icon. Does anyone know how to fix this problem?
    If so, can you please reply the answer to [email protected] if it isn't any trouble?
    Thank You So Much.
    -D.Angelle

    blage,
    Welcome to Apple Discussions.
    The first thing to try is remove the iCal icon from the Dock, and then replace it with iCal application from your application folder. Log out/in or restart.
    If that is not successful, try changing/resetting your System Preferences...>International>Formats>(Region:) (Dates) (Times) Customize... to your specifications. Log out/in or restart.
    ;~)

  • Ical skin change

    I have tried a couple of methods to change the iCal and Contacts skins in the Macbookpro Retina and neither of them have worked. Lion Tweaks, god bless his little Norwegien cotton socks, doesn't mention it doesn't work with the Ret, and Simple Change is the same. I'm not savvy enough to mess around with Terminal but if anyone hear's anything let me know. Ta.

    Hi there,
    I hade the same problem on my MacBook Pro with Retina display, MAC OSX 10.7.4. Whant you need to do is run iCal and Addressbook in "low resolution" mode in order to apply the changes.
    Here's how to do that  (http://support.apple.com/kb/HT5266):
    Quit the application if it is currently open.
    In the Finder, choose Applications from the Go menu.
    In the Applications folder that opens, click the application's icon (e.g. iCal) so it is highlighted.
    Choose Get Info from the File menu.
    Place a checkmark next to "Open in Low Resolution" to enable Low Resolution mode.
       6. Close the window and double click the iCal icon in Applications to reopen iCal.
    Hope this helps.

  • ICal icon questions...

    Hello everyone!
    I recently tried to "customize" my iCal icon, because I didn't like it red.
    So I went to my Applications Folder, right-clicked to Show Package Content > Contents > Resources and I went to find the iCal icon, named "App-empty.icns", which I opened with Preview.
    From Preview I went to Tools > Adjust Color.
    I then changed the colours of the icon until I was able to replace the red with grey, and still keep the page white.
    I saved it as a TIFF, and then changed the extension to .icns, for icons of course.
    Removed iCal from my Dock and put it back in.
    Now my changes from red to grey only work when iCal is on, and when it is not in use, it goes back to the original red version.
    If anyone knows how to make the operation effective, so that the icon is always grey, that would help a lot.
    ... And I also changed my MSN icon for it to be made of 2 blue figures and the Dictionary icon for it to have a black cover. However, those changes did not work at all, yet I went through the same procedure as for the iCal changes.
    Any suggestions?
    Thanks

    Ok, I found a software called iConiCal...

  • Does anyone know what to do about iCal colors changing.

    Does anyone know what to do about iCal colors changing.   Ever since ios7 came out I have many problems.  I kind of feel like Apple has become Microsoft at twice the price??  Anyway, today all my calendars (iPhone, iPad, iCloud and on my Mac) all changed colors from the customer colors I had set.  I have about 5 calendars.
    I was able to change them back on my Mac, my iphone and my ipad, but not in iCloud.   Once each of the ones I changed updates / syncs it reverts to the incorrect colors again.  I have tested back and forth, and it is definetly coming out of the iCloud.com.  The web site will not let me chance colors, so once it updates / sync, all my other devices and calendars sync to the purple in iCloud.
    I could go on and on about my frustrations with the apparent lack to testing, and the irony around Microsoft and their "bugs".  It is more important that I find a cure, as this is really annoying.
    Has anyone else seen this today

    Don't spend a lot of time trying to change it. It's an iCloud problem that's happened before, and when it happened in August it went back to the correct colors in a few days. Just be careful when you add new items to the calendar to use the right calendar (even if the color is wrong), otherwise you'll have things out of synch when the correct colors come back.

  • 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.

  • Desktop Icons Change

    After I download Adobe Reader all the icons change to Adobe symbols and I can not open them.

    What is your operating system & version?
    If it is Windows 7 or Vista, see http://helpx.adobe.com/acrobat/kb/application-file-icons-change-acroba t.html

  • Why does iCal automatically change the date of the entry i am making to the day before??

    why does iCal automatically change the date of the entry i am making to the day before??
    for example, when i am attempting to make a 'all-day' appointment on october 2nd 2011, it automatically shifts it to october 1st.
    but if i am doing a timed appointment for only a few hours, it will allow me to put it on that day.
    i am trying to put in travel dates so any help on how to fix this, would be greatly appreciated.

    alsdman,
    Quit iCal, and try removing the com.apple.iCal.plist file from your Macintosh HD/Users/yourusername/Library/Preferences Folder. Since that Library is now hidden, you have to use the Finder>Go Menu>Depress the "Option" key>Library. Drag the .plist file to your desktop, and log out/in or restart and check iCal for functionality.
    Also go to System Preferences...>Language & Text>Formats>Region: and set/re-set the appropriate "Region."

Maybe you are looking for

  • PRRW - Displaying separate line items for separate Wage Type / tax Code

    Hi , In the Travel trip PR05 after the trip is setteled, the trip no. need to run with the Posting run through Tcode: PRFI. Then we need to Run the Created Document using the Tcode: PRRW. My Requirement is that for some WAGE TYPE which are assigned w

  • Horizontal scrolling with mousewheel

    I was wondering if anyone knew how to create horizontal scrolling with the mousewheel in Adobe Muse. So that instead of the page moving up/down when the mousewheel is used, it moves left to right so that the user dosen't have to manually scroll. Is t

  • Large number of attributes reduces data display in Query (PLS HELP).

    Dear Guru's We have newly upgraded our system to 7.0, Currently i have a Query based on master data info object(0 equipment) which contain several attributes, due to huge number of attributes, i cannot see data for few  attributes( Ex:-0service descr

  • How to make height on the HU mandatory

    Dear expert. Do you know is there a way to make the height of each HU to be mandatory in VL01N, or VL02N transaction, when packing the material? The field name is HOEHE. Thank you!

  • Vacation messages / server side mail rules

    With WebMail depreciated in OS X Server, is there a recommended (incorporated) way for users to configure vacation messages and other server side rules?