Ical week numbers and heat map missing in preferences

Hi,
This page describes that you can turn on/off the heat map and week numbers:
http://www.controlyourmac.com/2012/02/10-amazing-features-of-ical-5-on-os-x.html
I migrated from 10.6 to 10.7.4 and wonder where these checkboxes are.
So, the configuration looks different. There is no Alerts part and no heat map and no week view. May this be due to the fact that I migrated from 10.6. and some configuration files got screwed up?
Thank you very much for any help!

Have you told Apple that you would like to see this feature included in iCal? You can do so at OS X Feedback, but there is no point in saying it in the discussions because Apple very carefully does not read postings on this user-to-user site.

Similar Messages

  • 10.6 iCal week view and mini calendar are out of sync-how to fix?

    How does one re-establish "sync" between the large window week view and the small mini calendar month view displayed on the lower left side? Mine is out of sync by a month. Thanks!

    Are they off by always the same amount of time or they drift apart over time?
    If the former, you may try a quick adjustment, though it is a manual affair. Control-click on the clip in the browser, choose "Open in Timeline" and try moving the audio to match.
    If I remember correctly, DV tape audio could be recorded in 32KHz or 48KHz. The latter is the one that should be used, always.
    Maybe this one was recorded at 32KHz?

  • Once I restored my iphone 3g after iOs update, all my stored numbers, and apps are missing

    I just downloaded the iOs update for my iPhone, and now all my contacts, pics, aapps, and phone and text history is gone.  Can someome help me figure out how to restore my iPhone from Itunes backup, as i backed it up before the download

    when you have your phone plugged into itunes on the computer, right-click on the name of your phone on the left-hand side and select 'restore from backup'

  • ADDING WEEK NUMBERS IN THE CALENDAR OF IPHONE

    Hi,
    haven't found option of adding week numbers on my iphone 3gs calendar. in working life week numbers are pretty important and would need the option on daily basis. i syncronise my calendar from office outlook / exchange. office supports the feature, but week numbers dont follow.
    any ideas anyone?!

    I use Google calendar and sync it to my iPhone calendar over the air via Google Sync. There are a number of "gadgets" or sub-calendars you can add to your Google calendar (i.e. Moon phases, contacts birthdays, etc.) that will sync over to iPhone. I searched for week numbers and sure enough there is a "gadget" that will add this functionality with an option of weeks starting on Sundays or Mondays. Though I've never used them, I now have week numbers on my iPhone calendar.
    You would have to set up a free gmail account to create a google calendar but you wouldn't need to use it (mail or calendar) except to sync week numbers if you don't want to. If you want to go through the (relatively) small amount of trouble to do this just start a gmail account and then follow these instructions: http://www.google.com/support/mobile/bin/answer.py?answer=138740&topic=14252
    Except of course you will only turn on calendar. Then (on your MAC) go to your gmail and click on 'calendar' in the upper left. From there click on 'settings' in the upper right, then on the 'labs' tab. Enable the option to 'Add any gadget by URL.' Save this setting then go back to the calender itself and on the right where it says 'Gadget URL' paste http://sites.google.com/site/gcalweeknumbers/Home/calendar-gadget.xml
    Then, on your phone's web browser go to http://m.google.com/sync and sign in with your gmail info. Bookmark this page. Select your device and check the boxes for 'My Calendars' and 'Week Numbers'. Now when you open the calendar app on iPhone tap 'calendars' on the upper left and you should see (yourname)@gmail.com (Exchange) with 'Week Numbers' listed below it. Make sure you are viewing 'All Calendars' within the app and week numbers will show up on the Sunday or Monday of each week.
    I apologize if these directions are not clear enough or too wordy. I tried to describe it for someone without much experience with this stuff (meaning myself). It may seem like a lot of trouble, but if you really want week numbers you can do it!

  • Count weeks backwards and passing the breakpoint between 2014/2015. Code finds non existing week numbers

    Hi
    I've tried to figure out where I've gone wrong here. I've tried to make an application to keep track of time spent in different Projects and activities within them. I want the user to quickly to have access to the last 6 weeks in a Combobox. I haven't quite
    got it yet since my code finds week 53 last year (2014) and dissregards week 1 (2015).
    I'll state right away I'm not an experienced VB programer so maybe I've missed something trivial.
    Thanks in advance
    //Tony
    Public
    SubWeeknumber()
    DimmyCI
    AsNewCultureInfo("sv-SE")
    Dimdfi
    AsDateTimeFormatInfo=
    DateTimeFormatInfo.CurrentInfo
    Dimcal
    AsCalendar=
    myCI.Calendar
    DimcurrentTime
    AsSystem.DateTime=
    System.DateTime.Now
    Dimdate1
    AsDate=
    currentTime.Date
    Dimweek
    AsInteger=
    cal.GetWeekOfYear(date1, myCI.DateTimeFormat.CalendarWeekRule, myCI.DateTimeFormat.FirstDayOfWeek)
    Dimweekcounter
    AsInteger
            weekcounter = -5
    '*********************Does not work properly, claims there is a week 53 2014, which there is not. Skips week 1 for some
    reason
    Whileweekcounter <= 0
    Dimnumber_of_weeks_back
    AsInteger
    Dimlast_week
    AsSystem.DateTime=
    currentTime.Date.AddDays(number_of_weeks_back)
    Dimprevious_week
    AsInteger=
    cal.GetWeekOfYear(last_week, myCI.DateTimeFormat.CalendarWeekRule, myCI.DateTimeFormat.FirstDayOfWeek)
                ComboBox_week.Items.Add(
    String.Format("{0}",
    previous_week))
                weekcounter = weekcounter + 1
                number_of_weeks_back = number_of_weeks_back - 7
    EndWhile

    The thing is that the GetWeekOfYear method returns the week of the year of the date you pass in, i.e. when you pass in 2014-12-29 it will return 53 instead of 1.
    How to determine the number of the week is varies between different countries. In Sweden (sv-SE) and most other European countries, the ISO-8601 standard is used:
    http://sv.wikipedia.org/wiki/Veckonummer
    Then week 1 of a year is per defintion the week that contains the 4th day of January. You will have to write some code to determine this yourself since there is a slight difference between ISO-8601 week and .NET's week numbering:
    http://stackoverflow.com/questions/11154673/get-the-correct-week-number-of-a-given-date
    Here is an example for you that should work:
    Public Sub Weeknumber()
    Dim myCI As New CultureInfo("sv-SE")
    Dim dfi As DateTimeFormatInfo = DateTimeFormatInfo.CurrentInfo
    Dim cal As Calendar = myCI.Calendar
    Dim currentTime As System.DateTime = System.DateTime.Now
    Dim date1 As Date = currentTime.Date
    Dim currentWeek As Integer = cal.GetWeekOfYear(date1, myCI.DateTimeFormat.CalendarWeekRule, myCI.DateTimeFormat.FirstDayOfWeek)
    Dim diff As Integer = date1.DayOfWeek - myCI.DateTimeFormat.FirstDayOfWeek
    If (diff < 0) Then
    diff += 7
    End If
    Dim startOfCurrentWeek As DateTime = date1.AddDays(-1 * diff).Date
    For i As Integer = 0 To 5
    Dim startOfWeek As DateTime = startOfCurrentWeek.AddDays(-i * 7)
    Dim endOfWeek As DateTime = startOfWeek.AddDays(6)
    Dim week As Integer = cal.GetWeekOfYear(startOfWeek, myCI.DateTimeFormat.CalendarWeekRule, myCI.DateTimeFormat.FirstDayOfWeek)
    If Not startOfWeek.Year.Equals(endOfWeek.Year) And endOfWeek.Day >= 4 Then
    week = 1
    End If
    ComboBox_week.Items.Add(String.Format("{0}", week))
    Next
    End Sub
    Please remember to mark helpful posts as answer to close your threads.

  • Finding missed sequence numbers and rows from a fact table

    Finding missed sequence numbers and rows from a fact table
    Hi
    I am working on an OLAP date cube with the following schema:
    As you can see there is a fact transaction with two dimensions called cardNumber and Sequence. Card dimension contains about three million card numbers. 
    Sequence dimension contains a sequence number from 0 to 255. Fact transaction contains about 400 million transactions of those cards.
    Each transaction has a sequence number in 0 to 255 ranges. If sequence number of transactions of a card reaches to 255 the next transaction would get 0 as a sequence number.
    For example if a card has 1000 transactions then sequence numbers are as follows;
    Transaction 1 to transaction 256 with sequences from 0 to 255
    Transaction 257 to transaction 512 with sequences from 0 to 255
    Transaction 513 to transaction 768 with sequences from 0 to 255
    Transaction 769 to transaction 1000 with sequences from 0 to 231
    The problem is that:
    Sometimes there are several missed transactions. For example instead of sequence from 0 to 255, sequences are from 0 to 150 and then from 160 to 255. Here 10 transactions have been missed.
    How can I find all missed transactions of all cards with a MDX QUERY?
    I really appreciate for helps

    Thank you Liao
    I need to find missed numbers, In this scenario I want the query to tell the missed numbers are: 151,152,153,154,155,156,157,158,159
    Relative transactions are also missed, so I think it is impossible to get them by your MDX query
    Suppose this:
    date
    time
    sequence
    20140701
    23:22:00
    149
    20140701
    23:44:00
    150
    20140702
    8:30:00
    160
    20140702
    9:30:00
    161
    20140702
    11:30:00
    162
    20140702
    11:45:00
    163
    As you can see the sequence number of the last transaction at the 20140701 is 150
    We expecting that the first transaction of the next day should be 151 but it is 160. Those 10 transactions are totally missed and we just need to
    find missed sequence numbers

  • Imported ical from outlook and the date across the top of the weekly view all show the date i imported..

    imported ical from outlook and the date across the top of the weekly view all show the date i imported..

    I'm confused, what does iCal have to do with this, it seems as though you went from Outlook to Entourage, is that correct?

  • How can i see the serial numbers of the hardware I have registered? my copmuters have been stolen and I'm missing one serial number.

    how can i view the serial numbers of the hardware I have registered? my computers have been stolen and I'm missing one serial number.

    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing without a court order                         
    Reporting a lost or stolen Apple product                                        
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • Iphone and ipad agenda with week numbers

    does anybody now a very good agenda for iphone and ipad with week numbers etc etc

    Yes, meetings recorded in Adobe Connect will not play back on iOS devices.
    Live meetings can be attended with the Adobe Connect Mobile for iOS app, but this app only supports live meetings.
    https://itunes.apple.com/us/app/adobe-connect-mobile-for-ios/id430437503?mt=8

  • Home and Work Calendars missing from iCal

    Help - i logged into iCal this morning and all my calendars had disappeared - apart from my Outlook calendar which i synced form my work pc using Mobile Me yesterday.
    When i first set up Mobile me, i had all my calendars. Will i be able to get my Home and Work calendars back?

    Thanks for the advice Ferd - on further investigation i suspect it was another programme - The Hit List - which i had set to sync with iCal that may have caused the issue. But the crisis has had a silver lining - i realised i was overcomplicating things anyway, and have now set up new calendars syncing only to my Sony W595 mobile phone
    Thanks again for your help.

  • After updating to yosemite aperture, pages, keynote and numbers won't open. tried to update via app store and it says apps not authorised on this account. apps were bought with the mac and have never missed an update before so why now?

    afyer updating to yosemite aperture, pages, numbers and keynote won't open
    i have tried updating them via app store only be told they aren't authorised on this account, they were bought and installed with this mac and there has never been a problem updating before so why now?
    this is the fourth time i have had to type this question out. what a terrible lay out for a support section!

    this is the fourth time i have had to type this question out. what a terrible lay out for a support section!
    You aren't likely to get an answer with that type of attitude. BTW, you are not contacting Apple on these forums. We are all volunteer end users just like you. If you want support, then call AppleCare and you can get one-on-one assistance.

  • Wifi Plus Cellular and Bluetooth MAP Profile missing

    I upgraded my iPhone4 32GB from iOS 5.1.1 to iOS 6.0
    Two of the main reasons I updated were to get the Wifi Plus Cellular option that was touted and the Bluetooth MAP Profile for text message support in my Acura.
    Upon updating I don't see either of these options in the menus, and the MAP functionality isn't working as the Acura shows it as not being compatible.
    Is anyone else aware if these were removed and/or will be fixed in a subsequent patch?

    Wifi Plus Cellular is nowhere to be found. It was in the Beta version but removed from GM and the Release.

  • HT1349 my itunes gift card is missing letters/numbers and half printed on how do i retrieve my gift card if i can't read it

    How do we activate our itunes card when I can not read all the numbers and letters

    iTunes Store: Invalid, inactive, or illegible codes

  • Weeks numbers (year view)

    Yosemite, Calendar:
    In the year view the week numbers are completely wrong? But in day, week and month are ok.
    How could I see the correct numbers in the year view, please?
    Regards

    there is unfortunately no year view available in ical at the moment.
    may i suggest you send your suggestions to apple: http://www.apple.com/feedback/ical.html

  • How do you print a monthly calendar showing week numbers?

    Is there a way to display and the print the week numbers in the monthly view in iCal. I can get the calendar to start on the first day of the wekk, Monday, but I can not find any way to show the week numbers in a column to the left of the Monday column.

    Roger is right.  You'll have to subscribe to a week numbering calendar in order to see week numbers.  I've done this and can confirm that they show when printed.

Maybe you are looking for