I cannot create an untimed Calendar event, can I?

The google comes back with scant hints when this question is posed to it.
Is it possible to create an untimed event in Calendar?
I just want to show that on Friday May17th something has to be addressed and the specific hour:minute is irrelevant. The calendar is shared between parties which is why I'm trying to make the event in that app.
I'm starting to think two things:
  (1) this is ridiculous that I cannot make this so, and
  (2) is this a subtle way of pushing me to Reminders or Notes or some other app and, if so, which one and how do I share it?

Hi,
If you do not know the time of the event the nearest thing in Calendar would be an all day event. It may be that a reminder is the more appropriate option. I do not know about sharing a list of reminders.
This is a user to user forum. By posting here you are not guaranteed someone from Apple will read it. If you'd like Apple to know about this I suggest you send them feedback.
Best wishes
John M

Similar Messages

  • Script creates+deletes Google Calendar-events. (free SMS-notification)

    I posted this in another thread too, but since a discussion would be off-topic there (http://bbs.archlinux.org/viewtopic.php?id=64933):
    Here a Python script that creates a Google Calendar-event in the main calendar, with as subject the contents of a specified file.
    Feel free to post modifications/optimizations! I use it this way to get notified of unanswered conversations in finch (as in the thread above), it was easier to work with a file then with specifying arguments..
    PS. The script uses python-mechanize, which is in community.
    #!/usr/bin/python
    # From: gondil
    # To: the Arch Linux forums ;)
    # Version 2 (deletion added)
    import mechanize
    import sys
    import urllib2
    import httplib
    from urllib2 import HTTPError
    # Create a mechanize browser
    mech = mechanize.Browser()
    mech.set_handle_robots(False)
    # With Goggles desired UAgent
    mech.addheaders = [("User-agent", "Java/1.5.0_06")]
    # See the G-API: We need a some token here, that is displayed by /~pkelchte/ (mah personal php site on ESAT that only does that)
    mech.open("https://www.google.com/accounts/AuthSubRequest?scope=http://www.google.com/calendar/feeds/&session=1&secure=0&next=http://homes.esat.kuleuven.be/~pkelchte/index.php")
    # But before we get the token, we need to submit our user-data
    mech.select_form(nr=0)
    mech["Email"] = "" # REPLACE THIS WITH YOUR GOOGLE ACCOUNT
    mech["Passwd"] = "" # AND THIS WITH YOUR PASSWORD
    try:
    mech.submit()
    except:
    print "Did not submit credentials"
    sys.exit("Error in submitting credentials")
    # Because that's not enough, we need to confirm that we want to go trough with this and submit another form...
    mech.select_form(nr=0)
    mech.submit(id='allow')
    # By now, we have one token, but it's not the final token! We need *another* token, called the AuthSubSessionToken, sigh...
    mech.addheaders = [("Authorization", "AuthSub token=\"" + mech.response().read() + "\""), ("User-agent", "Java/1.5.0_06")]
    mech.open("http://www.google.com/accounts/AuthSubSessionToken")
    # A bunch of tokens later...
    # Let's use urllib2 to do this POST request (some xml-y thing is the string you would manually type in the "New event" box on Google Calendar)
    # Encore some headers
    authsub = "AuthSub token=\"" + mech.response().read().replace("\n","").split("=")[1] + "\""
    headers = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2"}
    # Read the file that we're interested in! Damn, it's so interesting!!
    file = open('/home/gondil/public_html/fifo', 'r') # CHANGE THIS FILE WITH YOUR THING
    message = file.read()
    file.close()
    # The actual event
    event = """
    <entry xmlns='http://www.w3.org/2005/Atom' xmlns:gCal='http://schemas.google.com/gCal/2005'>
    <content type="html">""" + message + """</content>
    <gCal:quickadd value="true"/>
    </entry>
    req = urllib2.Request("http://www.google.com/calendar/feeds/default/private/full", event, headers)
    calresponse = urllib2.urlopen(req)
    # Normally, we stop here... but since Google likes traffic, we need to go to a slightly different url, with the same headers and POST data
    req2 = urllib2.Request(calresponse.geturl(), event, headers)
    try:
    calresponse2 = urllib2.urlopen(req2)
    # You can check but normally this is a 201 CREATED response or something, I don't really care... It's my code, right :P
    except HTTPError, e :
    # I placed this sleep to give the event at least a 20 second lifetime (poor, poor event...)
    import time
    time.sleep(20)
    # Retrieve the event's edit url
    eventurl = e.read().split("<link rel='edit' type='application/atom+xml' href='http://www.google.com")[1].split("'/>")[0]
    # The Deletion has to be done via httplib, because Google wants a DELETE request (urllib2 only handles GET and POST)
    conn = httplib.HTTPConnection("www.google.com")
    conn.request("DELETE", eventurl, "", headers)
    calresponse3 = conn.getresponse()
    # Again, they like to have a little more traffic, we need to append a session ID to that last url (we can find it in the redirect page)
    eventurl2 = calresponse3.read().split("HREF=\"")[1].split("\"")[0]
    # Ooh and here there is need of a new header, no questions please
    headers2 = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2", "If-Match": "*"}
    conn.request("DELETE", eventurl2, "", headers2)
    calresponse4 = conn.getresponse()
    # No errors? Ok we can close the connection
    conn.close()
    index.php looks like this (again I don't guarantee that I'll keep my index.php page like that for eternity, but I'll notify you when the url changes):
    <?php
    print $_POST['token'];
    print $_GET['token'];
    ?>
    Last edited by gondil (2009-04-23 22:45:38)

    I posted this in another thread too, but since a discussion would be off-topic there (http://bbs.archlinux.org/viewtopic.php?id=64933):
    Here a Python script that creates a Google Calendar-event in the main calendar, with as subject the contents of a specified file.
    Feel free to post modifications/optimizations! I use it this way to get notified of unanswered conversations in finch (as in the thread above), it was easier to work with a file then with specifying arguments..
    PS. The script uses python-mechanize, which is in community.
    #!/usr/bin/python
    # From: gondil
    # To: the Arch Linux forums ;)
    # Version 2 (deletion added)
    import mechanize
    import sys
    import urllib2
    import httplib
    from urllib2 import HTTPError
    # Create a mechanize browser
    mech = mechanize.Browser()
    mech.set_handle_robots(False)
    # With Goggles desired UAgent
    mech.addheaders = [("User-agent", "Java/1.5.0_06")]
    # See the G-API: We need a some token here, that is displayed by /~pkelchte/ (mah personal php site on ESAT that only does that)
    mech.open("https://www.google.com/accounts/AuthSubRequest?scope=http://www.google.com/calendar/feeds/&session=1&secure=0&next=http://homes.esat.kuleuven.be/~pkelchte/index.php")
    # But before we get the token, we need to submit our user-data
    mech.select_form(nr=0)
    mech["Email"] = "" # REPLACE THIS WITH YOUR GOOGLE ACCOUNT
    mech["Passwd"] = "" # AND THIS WITH YOUR PASSWORD
    try:
    mech.submit()
    except:
    print "Did not submit credentials"
    sys.exit("Error in submitting credentials")
    # Because that's not enough, we need to confirm that we want to go trough with this and submit another form...
    mech.select_form(nr=0)
    mech.submit(id='allow')
    # By now, we have one token, but it's not the final token! We need *another* token, called the AuthSubSessionToken, sigh...
    mech.addheaders = [("Authorization", "AuthSub token=\"" + mech.response().read() + "\""), ("User-agent", "Java/1.5.0_06")]
    mech.open("http://www.google.com/accounts/AuthSubSessionToken")
    # A bunch of tokens later...
    # Let's use urllib2 to do this POST request (some xml-y thing is the string you would manually type in the "New event" box on Google Calendar)
    # Encore some headers
    authsub = "AuthSub token=\"" + mech.response().read().replace("\n","").split("=")[1] + "\""
    headers = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2"}
    # Read the file that we're interested in! Damn, it's so interesting!!
    file = open('/home/gondil/public_html/fifo', 'r') # CHANGE THIS FILE WITH YOUR THING
    message = file.read()
    file.close()
    # The actual event
    event = """
    <entry xmlns='http://www.w3.org/2005/Atom' xmlns:gCal='http://schemas.google.com/gCal/2005'>
    <content type="html">""" + message + """</content>
    <gCal:quickadd value="true"/>
    </entry>
    req = urllib2.Request("http://www.google.com/calendar/feeds/default/private/full", event, headers)
    calresponse = urllib2.urlopen(req)
    # Normally, we stop here... but since Google likes traffic, we need to go to a slightly different url, with the same headers and POST data
    req2 = urllib2.Request(calresponse.geturl(), event, headers)
    try:
    calresponse2 = urllib2.urlopen(req2)
    # You can check but normally this is a 201 CREATED response or something, I don't really care... It's my code, right :P
    except HTTPError, e :
    # I placed this sleep to give the event at least a 20 second lifetime (poor, poor event...)
    import time
    time.sleep(20)
    # Retrieve the event's edit url
    eventurl = e.read().split("<link rel='edit' type='application/atom+xml' href='http://www.google.com")[1].split("'/>")[0]
    # The Deletion has to be done via httplib, because Google wants a DELETE request (urllib2 only handles GET and POST)
    conn = httplib.HTTPConnection("www.google.com")
    conn.request("DELETE", eventurl, "", headers)
    calresponse3 = conn.getresponse()
    # Again, they like to have a little more traffic, we need to append a session ID to that last url (we can find it in the redirect page)
    eventurl2 = calresponse3.read().split("HREF=\"")[1].split("\"")[0]
    # Ooh and here there is need of a new header, no questions please
    headers2 = {"Authorization": authsub, "User-Agent": "Java/1.5.0_06", "Content-Type": "application/atom+xml", "GData-Version": "2", "If-Match": "*"}
    conn.request("DELETE", eventurl2, "", headers2)
    calresponse4 = conn.getresponse()
    # No errors? Ok we can close the connection
    conn.close()
    index.php looks like this (again I don't guarantee that I'll keep my index.php page like that for eternity, but I'll notify you when the url changes):
    <?php
    print $_POST['token'];
    print $_GET['token'];
    ?>
    Last edited by gondil (2009-04-23 22:45:38)

  • Subsequent to Yosemite or updates, my repeating calendar events can not be updated as before. When I update an event (of the repeating event) on my MacBook Pro; its reverts back when I shut it down and come back, and doesn't update other devices?

    Subsequent to Yosemite or updates, my repeating calendar events can not be updated as before. When I update an event (of a repeating event) on my MacBook Pro; its reverts back when I shut it down and come back, and doesn't update other devices?
    Has anyone experienced this and does anyone know a fix?

    This is incredibly frustrating for me too!
    I have a repeated monthly event for a discount at a store that is offered on the first Tuesday of every month. So I have a repeated event taking place on the 1st of every month. In the previous month I reset next month's date from the 1st to whatever date falls on the first Tuesday.
    But ever since upgrading to Yosemite, I am experiencing the same problem as the original person who posted. The date saves on my calendar but does not sync to my iCloud. When I reboot the computer, the date reverts back to the 1st.
    I'm thankful I don't have any events that needed to be tracked because ALL of my previous changes in the past have reverted back to the 1st of the month. I would have been in the same terrible situation as yaz999 in having to manually change every event in previous months.
    Why hasn't this bug been fixed yet???!!!

  • Some Calendar events can't be deleted

    I have several repeating calendar events that I created in my home calendar (icloud) which can't be deleted. Under event details the "edit" and the "delete event" is missing. I can't delete or modify these events at all. Dragging and dropping the event doesn't work either. The cloud is syncing fine as both my iphone and ipad have all the same events with the same issue.

    I am having the same issue.  I created a repeating event and invited others to it.  It won't let me edit it, nor delete it.  I changed my status to "Decline" and it disappears; however, as soon as I try to exit the event window, everything shows back up and my status reverts to "Accepted."  The only two buttons I have access to is "Revert" and "Reply."  Both end up with the same results - event still shows up and I am still in an "Accepted" status.
    I tried editing the original entry as well as follow-on events (later in the repeating cycle).  I cannot edit anything other than my status, which doesn't change in the end.
    I am running Mountain Lion 10.8.1 on a 6-core Mac Pro.  This issue also occurred within Lion (10.7.x).
    It also does the same thing on my iPhone - I decline the event, it disappears, but then pops back up a few seconds later.
    I am using an iPhone 4 using iOS 5.1.1
    Any ideas on how to delete (or even modify times, dates, locations, etc.)?
    Jim

  • Cannot push back new calendar events to Mac, duplicate calendars, more...

    I'm having tons of issues with iCal and my iPhone since 2.1. New events entered on my iPhone show up in MobileMe online, but not on my Mac, ever. Duplicate calendars are starting to show up in my iPhone, and now NONE of my calendars are showing up in MobileMe (all my events are still there though). What gives Apple?

    Apple, have you even read this post? MobileMe/iPhone service is terrible, simply awful. New events in my laptop calendar sometimes don't show up on my iPhone, or from my iPhone to my laptop, events are showing up twice other times, calendars are being duplicated, this is a total mess. I need this calendar to keep track of meetings and appointments, and at this rate, I simply cannot trust the iPhone to do this right.
    I remember when Apple products "Just Worked". Now, they simply don't work well at all.

  • TS1347 I cannot save a new calendar event on my iPhone 5 S tried everything but events do not save?

    I cannot save a new event in my calendar on my iphone 5 s?

    hmm. Try restarting you iphone. Iphone 4? worked for me. let me know!

  • I cannot load my google calendar, how can i decrypt the connection in order to have access?

    The information about this website says that the page has been encrypted because there is no authorized owner. I need access to my google calendar from work.
    How can i decrypt the connection? Is there other way to fix the problem?

    Restart holding down the CMD+R keys, launch Disk Utility and erase the HD, quit DU, and restore the OS. On first boot, use the Setup Assistant to do the migration. Details in Pondini's Setup New Mac guide.

  • Can't create Calendar Event from Mail on my iPad anymore

    I no longer can create a new iPad Calendar Event from tapping on a date in email I receive.  The new Event dialog box will still appear when I click on the date in an email, but the dialog box is now too small and off-center, hiding the Done button in the upper right corner of the Dialog. Without the Done button, I can't create the new Calendar Event.  I can't resize the dialog box, or re-center it. 
    Is this a common problem after the latest iOS update?  Can anyone help?  Thanks.

    This still works for me in iOS 6.1.3
    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPad shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds). Ignore the "Slide to power off"

  • Asha 501 , cannot save calendar event

    We recently purchased a asha 501 for my mother-in-law. She we for some months very happy with it. But now she cannot save a new calendar event. We can create an event but not save it. There is enough memory frre. Can anyone help ?

    you could clean up the stuff, like cache,web history, history chat in social network, messages. and your activities on fastlane.

  • What is Travel Time when creating calendar event

    When creating a new calendar event there is a new option for Travel Time to be on or off...what does this do?

    Run http://filepropertiestask.codeplex.com task to get the file creation date and if older delete it or a Script Task that uses the .Net FileInfo
    CreratedDate method to find it Then you can use
    Precedence Constraints to either skip the file deletion or not.
    Arthur
    MyBlog
    Twitter

  • Create Calendar event from Mail on iPad Mini in landscape

    I have an iPad Mini.  While in landscape and creating a new calendar event from the body of an email (by selecting the date in the body) I'm unable to get the entire (it is truncated) screen allowing me to set the date and time of the event.  It doesn't show the Done button in the upper right.
    This works fine on my other devices (iPad and iPhone) in landscape, and also works fine on the iPad Mini in portrait, but it does not work in landscape.
    Does anyone else have this problem?

    This still works for me in iOS 6.1.3
    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPad shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds). Ignore the "Slide to power off"

  • How do I set up a default account for my calendar events?

    I have multiple gmail accounts and want to set up one of them as the default account when I create a new calendar event.

    Never mind.  Found my answer.  Sometimes all you have to do is type it - then you can figure it out! 

  • Bug: Repeating Google Calendar Events Show Up On The Wrong Days

    I've created a Google Calendar event that repeats "Daily," every two days, from 6:00pm to 6:30pm. It shows up fine in my Google Calendar, but the Pre's Calendar puts them on the wrong days. For example, the repeating event that should be scheduled for today shows up tomorrow (offset by +1 day). 
    I tried turning off network timezones, but the bug remains.
    Any help would be greatly appreciated. If this is a bug, how can I submit it to Palm?
    Thanks! 
    Post relates to: Pre p100eww (Sprint)
    Some new data:
    If I create the repeating event on my Pre, rather than via Google, it shows up on the Pre correctly. However, it only shows up for one day via Google (today); the event is not repeated. When I edit the event in Google, it's setup correctly. I tried saving the event from there, but it doesn't cause Google to recognize it should repeat.
    Very frustrating.
    Even more new data:
    Created yet another event via my Pre instead of via Google. This time Google picked up the correct repeat pattern, and my Pre now shows it on the correct days.
    Calendar sync needs serious work, based on my experience. I have issues with Facebook events showing up an hour later than they should, too. Dunno if this has been fixed yet.
    New Data (01/28/2010)
    Not sure why, but the above success reverted back to being off by one day; temporary success only.
    Message Edited by tlpbsd on 01-28-2010 11:52 AM
    This question was solved.
    View Solution.

    Hi, another quick question: you say you turned off network timezones.... did you make sure that the (now manually set) timezone is correct?
    Sounds similar to other issues related to the timezone being off, but usually the appointments were off by hours... not day(s).  However if your timezone is set to something really odd and the event you're creating is around midnight (again depends on a few things here), then MAYBE this is it.
    If it isn't, one of the support guys will have to chat with you privately about possibly collecting logs, getting more granular details, etc.

  • How to edit Calendar events?

    If i am invited to an event i get an email with the .ics attachment. I add it to my calender and then accept the invite.
    If the times are then changed i get another email with the new times on the email and a new .ics attachment.
    The new .ics attachment on the email update still has the old times on it (and if the times were new i still cannot do anything with the attachment - there are no options to put it in my calendar).
    I cannot edit the original calendar event to the new times.
    I cannot delete the old event without declining it first.
    Even if i could delete the old event with the old times i then have to make my own calendar event  (which then doesn't link in with the organisers event and doesn't show my attendance).
    Why does my calender event not update automatically once the revised times have been emailed to me?
    I have "shared calendar alerts" enabled but all it does is send me an email about modifications, i cannot edit the actual event anywhere.
    Am i doing something wrong? have i missed something?
    Thanks

    You don't say what it is you want to change, but if you simply want to consolidate:
    Select a calendar in the list, choose file>export.
    Select file>import, choose the file, and select the destination calendar. (The destination calendar can be one which you sync with Google Calendar.)
    When you're happy all is where you want it, delete the original calendars.
    As always, take a backup before you start - just in case!

  • Has BlackBerry forgot Switzerland in Calendar Events - Location?

    Hi all,
    I just recently returned to a BlackBerry Q10 after about 3 years using android devices. I really missed the physical keyboard and the shortcuts that came with it.
    After a few days of use I have discovered a problem with Calendar Events. When I enter an address here in Zurich, it should become a link that will launch BB Maps. It does not. I have tried various combinations of street, city, postal code etc. Even when I press the Map icon to search for an address and paste it into the event location, it does not become a link.
    I also tried my old address in Paris and that didn't work either. It seems that the OS does not deal with addresses outside North America.
    It would be OK if I could change the default map application to BeMaps Pro but I can't figure out how to do that either.
    I was wondering if anyone has an idea or has had similar issues.
    Cheers
    Bruce

    Hi,
    Yes it works if you put in a North American address.
    Example:
    1. Create a new calendar event.
    2. For "Location", type "2100 Yonge Street Toronto".
    3. Save new event.
    4. Open the event. The location will now be in blue font.
    5. Tap the location text and BB Maps will open and display the location on a map.
    It does not seem to work with Swiss or French addresses even if I search using the Map app first and paste the location into the event. I tried a UK address " 58 Baker Street London" and that worked.
    Let me know if it works the same for you.
    Cheers
    Bruce

Maybe you are looking for

  • Should not raise no data found error

    Hi Experts, I am using select into statement in procedure and put some condition in select statement. I want if condition failed then it sould put null in to target variable . It should not raise no data found error e.g select abc into v_abc from tab

  • Cross Docking TO creation

    Dear experts, I am going for planned cross docking, I am able to successfully plan the documents (inbound and outbound deliveries) through LXDCK, but am not sure about what to do after this. After planing if post GR and go for TO creations it directs

  • Prime 2.0 to 2.1 installation

    I am currently trying to upgrade Prime 2.0 to 2.1, following the instructions in the release notes.  Having some issues uploading the 2.1 patch to the Virtual controller.  Seems to be a syntax error/fat finger;  Does anyone have any tips or tricks to

  • Return arguments from a process exposed as webservice

    Hi! I'm exposing a process as a web services, the activity exposed is a Wait activity. After the web service is called a variable that I'm using for a caducity transition is being updated, when the caducity transition is excecuted, the instance arriv

  • Is there a way to recover deleted text messages on an iPhone 4s?

    Is there a way to recover deleted text messages on an iPhone 4s?