ICal v2.0.3 buggy To Do List

Haven't been using the to do list for a while, decided to use it today and it's giving me problems.
Sometimes the color of the calendar (home, work, etc.) shows up, sometimes not. Several items seem to have duplicated themselves. I only typed them in once, but they show up two times in the To Do pane. When I delete one, both disappear.
Any ideas/suggestions?
TIA

Hi illmelancholies,
Welcome to Apple Discussions.
I'm sorry to say I don't think anyone here has figured out a way to control the order of To Do printing.
BTW: you might want to change your alias from something other than your email address. Click on preferences to the right side of this window, then click on "My Profile".

Similar Messages

  • How do I set up a two or three column schedule in iCal? Looking to have multiple person listing appointment times.

    How do I set up a two or three column schedule in iCal? Looking to have multiple person listing appointment times.

    How do I set up a two or three column schedule in iCal? Looking to have multiple person listing appointment times.

  • ICal changes the date in to do list

    Hi,
    I am hoping that someone can help me - it's not a big problem, but quite irritating. When I create an event in my iCal and then drag it to the to do list, after a while the to do list changes the date.
    F e I have an exam on Saturday, i create the event in iCal, drag it to the to do list, and first its says "Saturday" but after a while, it changes to Friday. I delete the whole event, but it keeps on happening, and its pretty annoying.
    My computer is not even 1 year old, but I'm having small issues like this already. My screen goes from grey to blue-ish once in a while too, but that's another story...
    Hoping that someone can help me figure out what's going on...
    Have a nice day,
    Stella

    Thanks for your reply John. I didn't get the notice that you replied until I searched again now for a solution. I figured out what cases the date change. When the iCal event that is typed into the calendar has a time that is later than the current TIME (which it always is by default because it rounds up to the next hour), and that event is then dragged into the To-Do list, the date is increased by one (as displayed when you double-click the event in the To-Do list. However, the day of the week and date listed in the ACTUAL To-Do list is correct until at least a day passes.
    If I manually adjust the event from time rounding down to the nearest hour it always shows the correct date when double-clicking in the To-Do list.
    This is quite confusing to explain but it is clear something is not working as it is supposed to if I can make it work by simply subtracting an hour to the event at the time I create it. Is there a fix for this or do I just need to manually set the time back for every event I create by an hour to get it to work correctly?

  • ICal 5: day view: how can the list on the left side be hidden?

    hi fellows
    how can the list on the left side in the day-view of iCal 5 be hidden, so that the computer-screen only shows the graphic-bars (right side)?
    Thanks a lot for your help
    Mullika

    Sorry, but there was nothing in your last post.

  • Ical not storing all data & cant initialize lists

    okay so im trying to store all ical data in seperate lists for hours months years and the actual event ect....it worked fine for a while but now its not storing all the events....and then when it did it would carry over from one run to another. I figured out that was probably because they were properties but when i make the lists global i get a "this variable is not initialized" problem. and even if i somehow managed to fix that its still not reading in all the data. ive been at this for 2 hours and cant see the problem. please help:
    variable defs:
    (*System Variables*)
    global running_processes
    global _weekday
    global _date
    global _month
    global _year
    global _hours
    global _minutes
    global _seconds
    global time_ofday
    (*iCal Variables*)
    global iCal_Open
    global iCal_Run
    global iCal_Calendars
    global iCal_Events
    global icaleventsstore
    global icaleventslast
    global iCalEvents_StartMonth
    global iCalEvents_StartDate
    global iCalEvents_Startyear
    global iCalEvents_Starthours
    global iCalEvents_StartMinutes
    global iCalEvents_EndMonth
    global iCalEvents_EndDate
    global iCalEvents_Endyear
    global iCalEvents_Endhours
    global iCalEvents_EndMinutes
    global iCalEventsStart
    global iCalEventsEnd
    code to split up dates and date:
    on Ref_Events()
    proc()
    if running_processes contains "iCal" then
    (*if iCal is open do the code as normal*)
    set iCal_Run to 1
    set iCal_Open to 1
    tell application "iCal"
    set iCalEventsStart to the start date of every event in every calendar
    set iCalEventsEnd to the end date of every event in every calendar
    set iCal_Events to the summary of every event in every calendar
    set x to 1 --holds calendar to be used
    set y to 1 --holds event to be used
    repeat while x is less than or equal to the number of items in iCal_Events
    repeat while y is less than or equal to the number of items in item x of iCal_Events
    get item y in item x in iCalEventsStart as string
    set temp_date to the result
    --start dates
    set iCalEvents_StartMonth to iCalEvents_StartMonth & the second word of temp_date
    set iCalEvents_StartDate to iCalEvents_StartDate & the third word of temp_date
    set iCalEvents_Startyear to iCalEvents_Startyear & the fourth word of temp_date
    set iCalEvents_Starthours to iCalEvents_Starthours & the fifth word of temp_date
    set iCalEvents_StartMinutes to iCalEvents_StartMinutes & the sixth word of temp_date
    --end dates
    get item y in item x in iCalEventsEnd as string
    set temp_date to the result
    set iCalEvents_EndMonth to iCalEvents_EndMonth & the second word of temp_date
    set iCalEvents_EndDate to iCalEvents_EndDate & the third word of temp_date
    set iCalEvents_Endyear to iCalEvents_Endyear & the fourth word of temp_date
    set iCalEvents_Endhours to iCalEvents_Endhours & the fifth word of temp_date
    set iCalEvents_EndMinutes to iCalEvents_EndMinutes & the sixth word of temp_date
    --event description
    get item y in item x in iCal_Events as string
    set temp_event to the result as string
    set icaleventsstore to icaleventsstore & temp_event
    set y to y + 1
    end repeat
    set x to x + 1
    end repeat
    end tell
    else
    (*if iCal is not open do the code then close it*)
    if iCal_Run is 0 then
    set iCal_Run to 1
    tell application "iCal"
    set iCalEventsStart to the start date of every event in every calendar
    set iCalEventsEnd to the end date of every event in every calendar
    set x to 1 --holds calendar to be used
    set y to 1 --holds event to be used
    repeat while x is less than or equal to the number of items in iCalEventsStart
    repeat while y is less than or equal to the number of items in item x of iCalEventsStart
    get item y in item x in iCalEventsStart as string
    set temp_date to the result
    --start dates
    set iCalEvents_StartMonth to iCalEvents_StartMonth & the second word of temp_date
    set iCalEvents_StartDate to iCalEvents_StartDate & the third word of temp_date
    set iCalEvents_Startyear to iCalEvents_Startyear & the fourth word of temp_date
    set iCalEvents_Starthours to iCalEvents_Starthours & the fifth word of temp_date
    set iCalEvents_StartMinutes to iCalEvents_StartMinutes & the sixth word of temp_date
    --end dates
    get item y in item x in iCalEventsEnd as string
    set temp_date to the result
    set iCalEvents_EndMonth to iCalEvents_EndMonth & the second word of temp_date
    set iCalEvents_EndDate to iCalEvents_EndDate & the third word of temp_date
    set iCalEvents_Endyear to iCalEvents_Endyear & the fourth word of temp_date
    set iCalEvents_Endhours to iCalEvents_Endhours & the fifth word of temp_date
    set iCalEvents_EndMinutes to iCalEvents_EndMinutes & the sixth word of temp_date
    --event description
    get item y in item x in iCal_Events as string
    set temp_event to the result as string
    set icaleventsstore to icaleventsstore & temp_event
    set y to y + 1
    end repeat
    set x to x + 1
    end repeat
    end tell
    quit application "iCal"
    end if
    end if
    if icaleventsstore is not icaleventslast then
    say "new events stored in I Cal. Would you Like to View a List of all events?"
    display dialog "View List of Events?" buttons {"Yes", "No"} default button 2
    if the button returned of the result is "Yes" then
    choose from list icaleventsstore with prompt "All the Current Events"
    else
    -- action for 2nd button goes here
    end if
    set icaleventslast to icaleventsstore
    end if
    end Ref_Events

    You need to be careful when using conditional statements to set global variables (the global declaration does not set any values). I can't tell from the just the one handler you posted, but an example would be the iCal_Run variable - unless it is declared somewhere else, it won't have a value if there isn't an iCal process.

  • ICal-Alarm-OpenFile How to Clear cached List?

    Hello,
    If you set an alarm for an event, and choose "OpenFile" as the action, you will see a list of most recently used options.
    Great!
    Now I created a flawed Automator App and trashed it, then went ahead and created the correct one.
    The old one keeps showing in the list even though it doesn't exist anymore... This is not elegant and is annoying.
    I tried trashing everything under: (UserHome)>Library>ApplicationSupport>iCal
    and restarted the computer. All events went away but that list was left untouched.
    How can I get rid of it?
    Thanks
    iMac (Intel Core Duo) 17"   Mac OS X (10.4.7)  

    Ok... Found it myself!
    Trash (UserHome)>Library>Preferences>com.apple.iCal.plist
    Nothing beats OSX!

  • ICal is jumping on iPhone 5 in list mode

    When I go to scroll through iCal in list mode it's been jumping randomly. If I don't touch it it will go back to where I wanted it after a couple seconds. It's happened repeatedly though.
    Is anyone else having this problem?

    I'm getting the same on iPhone 4S since ios6 upgrade and its driving me nuts!
    Any ideas out there (other than wait for 6.1)

  • ICal 2.0.2:Printing TO DO LISTS

    When I try to print out the TO DO List in iCal exactly the way I organized it, it shuffles the order when I try to print it out. It's completely illogical, as i try to find some reason for the reorganization. Please help. I am using version 2.0.2.

    Hi illmelancholies,
    Welcome to Apple Discussions.
    I'm sorry to say I don't think anyone here has figured out a way to control the order of To Do printing.
    BTW: you might want to change your alias from something other than your email address. Click on preferences to the right side of this window, then click on "My Profile".

  • Why are iCals help windows empty?  Topics are listed in a pulldown menu, but the help page that pops up is blank.

    Why are iCal's help windows empty?  Topics are listed in a pulldown menu, but the help page that pops up is blank.

    It could be the work of one of your add-ons, or even add / mal-ware.
    Look thru your add-ons list and make sure you know what each one is
    there for. Also,
    check the programs that are on your computer
    '''''Windows > Start > Control Panel > Uninstall Programs.'''''
    Go thru the list and use a web search to check any that you don't
    know what they are.<BR><BR>
    '''''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-caused-malware Troubleshoot Firefox Issues Caused By Malware]'''''

  • ICal not showing calendar list, crashing frequently

    I just upgraded from Snow Leopard to 10.7.2 a few days ago and I've found iCal to be extremely buggy.  In addition to frequent crashes, I am unable to see my calendars in the Calendars list.  Here's what I get when I click on it:
    Is anyone else experiencing this?  I feel like I need to reinstall the app, but can I do that without having to reinstall the entire system?

    Gunnar - did you solve this problem.  Having similar issues and have not been able to find a solution.

  • List events in iCal

    I want to do something which should actually be relatively simple, but proves near impossible in iCal. I want to move a date range of events (eg all events from October 2006 to September 2008) from Calendar A to Calendar B. I want to archive old events in Calendar B and leave only current and future events in Calendar A. In a program like Outlook I would display all events in a list view, sort them by date, select the date range I'm intersted in and move the events. iCal doesn't seem to have a list view option, which makes this seemingly simple task surprisingly difficult. I tried going to month view and selecting events this way, hoping to at least be able to move items month by month. But I can't seem to select items by dragging over them, nor does cmd-A ("Select all") do any thing. The only way to accomplish the task is to tediously control-click every single item.
    I also tried solving my problem using the search field. But you can only search by content (event titles, notes etc), not by date range. I haven't figured out a search parameter that would return all events (in Outlook, if you search for "" you get a list all events back). I then tried searching for a very common string, such as "e", hoping to cover many events, and being left with only a few to manually clean up later. This did return a very long list, which I could sort by date and then select a large contiguous chunk, but when I wanted to manipulate it (i.e. move it to another calendar), iCal crashed.
    Is there any more sensible way to solve this - after all quite simple - task?

    I am having the same problem. I have tried different scenarios and it looks like its an issue with syncing from MobileMe. I thought I had it beat when I saw my preferences for in iCal were set to to start at 8AM and end at 6PM. I made it Midnight to Midnight but that did not fix it.
    I am perplexed - has to be a bug!
    Message was edited by: RaoulDuke

  • In address book & iCal each of our accounts are listed as iCloud can this be changed?

    I have a family Me.com account, all now in the cloud.
    In address book, iCal etc each of our accounts are listed as iCloud any way of renaming them to match the person?
    Mail is fine.
    Many Thanks
    Phil

    Hi Dave,
    Funny you mentioned 1932, as the birthday entry in my 'Address Book' is the 06/04/1932.
    Since it is not before but actually within 1932, is this what's causing the issue?

  • How do you add a reminder to a shared list in iCal

    I'm trying to add a reminder to a shared list in iCal, but I do not see the list as an option in the "Get Info" window or in the "Calendar" menu list. This shared list was shared with me in iCloud, and if I log into iCloud.com, I can add the item there. I think I can also add via my phone, but I'm not sure. Also, I can see items in the shared list, and I can check them off. I just can't add.
    I don't know if this is an iCloud issue, but I am able to add items in iCal to a shared list *I* created, just not to one that my wife created. Is there some setting in iCal to enable this?

    It is not easy to see and I found it by messing around. First of all put them in daye order by dragging the screen down and touching the little alarm clock at the top.  Then touch the space below the earlies reminder and a new one comes up. It defaults to 'today' so you have to touch the new reminder and then touch the 'i' button that appears. You can then change the date and time etc. No easy.
    I dont understand why Apple do these thongs before updating the user guide!
    Hope this helps.

  • ICal day view upcoming events list--can it be turned off?

    Just upgraded to 10.7 and the changes to iCal (v. 5.0.3) are horrifying. I plan most of my daily work on iCal and really need the Day view of the calendar to fill most of the window and show more details on my calendar items as it did before in 10.6. As it is now, the left half of the screen is now taken over by a list of upcoming events which gives the daily view too little space, so all my calendar items and notes are truncated. Makes it very difficult to work with. Is there a way to turn that upcoming view off? I don't understand why it's there. If I've selected "day" as my view option, it stands to reason that I don't need upcoming events for this week. The rationale behind that being there taking up all that unnecessary space is beyond me.
    Barring that, anyone have any suggestions for an iCal replacement? I have a long list of other complaints but this one is a big one. If I can't fix this, I need to move on to something else.

    Same question here... over a year later!  Mine's about iCal 6, but it's the very same issue.
    Cannot stand the scrolling list of events.  When I select a day view, I want to concentrate on that day's events-- and not see a long list of other events for other days!
    Rick, did you ever find a solutiion?  Maybe there's a hidden Terminal command to turn it off.  I kept looking for dot within the pane divider to collapse it, but it's not there.  Nor is there an option under Preferences!
    Long live Snow Leopard and the old iCal!

  • Can I see my to do`s list from ical on the iphone?

    I use iwork 08 and I allready have a to do list on my ical, but in my iphone after sync I only see my calendar, contacts, etc. but not my to do list. How can i see it?

    I use a combination of Toodledo.com (a free online To Do manager, though I upgraded to their $15/yr "Pro" service) and an app for the iPhone called "Todo" (oddly enough) by Appigo. This iPhone app syncs perfectly back and forth to Toodledo.com and of course you can manage your to do list via Safari on your Mac or any browser from anywhere (like Internet Explorer at work, airport, etc). It costs $9.99 from the iTunes store, but its well worth it. Less structured than OmniFocus (which is overkill for me) and works via the web so I can access my data from anywhere on any device.
    Also, through Toodledo.com you can subscribe to a shared iCal calendar that contains your To Do list - so, while you can't edit through iCal (must edit on the web at toodledo.com or on your iPhone via Todo or the toodledo.com iPhone-specific webpage), you can SEE your to do list on the side pane of iCal.
    Works very well, actually. At the least I can see my to do list when iCal is open, and the web app is very easy to use. And Appigo's iPhone app Todo is very well written and has a great interface. There is also a Dashboard widget you can download that lets you manage your to do list.
    And Appigo also has an app called Notebook which also syncs notes back and forth to Toodledo.com ($4.99 I believe from iTunes).
    (I have no relationship with Appigo, but I did buy both of these app and I think they're well worth the price).

Maybe you are looking for

  • Remote not working

    I thought I would throw this question out there before I did anything drastic: Yesterday my AppleTV remote stopped working. No indication that it was a battery problem. Our iPhone remote apps still work. I bought a new battery. Still nothing. Like I

  • How do i keep my contacts if i delete my icloud account from my phone?

    i am trying to delete my icloud account from my phone but how do i keep my contacts? my broher is on the same icloud account how do i get his contacts off of my phone

  • IDVD won't recognize any QuickTime files...

    Suddenly iDVD doesn't recognize any of the files I had created previous DVDs with, nor is it recognizing new .mov files I have created. QuickTime, FCP, and DVD Studio Pro all still recognize and use the .mov files. Has anyone else had this problem? I

  • Where to pass Special G/L Indicator to BAPI_ACC_DOCUMENT_POST.

    Hello SAPients, I'm using BAPI_ACC_DOCUMENT_POST and I'm passing all data in tables ACCOUNTGL and CURRENCYAMOUNT. My understanding is that using this BAPI is equivalent to posting data using TCode FB01. FB01 has a field named "Special G/L Indicator".

  • Laptop mode -- where to find error messages on boot

    Hi guys, I get some error messages when booting. I have the time to read that they are related to laptop-mode, but they quickly disappear. I have activated the ENABLE_LAPTOP_MODE_TOOLS in my laptop-mode.conf file, but I can't find the error messages