Default time for new event is always 15 min b4...

I think Ical is great and i use it daily to help me with my biz to stay on top of calls i need to make.
I am constantly adding new events and i always want my new events to open with a default time of "0" rather than "15 minutes before". It is very tedious to constantly have to change this every time I make a new event.
I also would hope to do the same thing with the alarm default feature so that I can change the default setting from "none" to "open file" since I always set alarms on all my new events this way. I am sure other ppl have the same problem if this ical a lot and would love to know how to tweak this or fix this in an update.
Apple if there is (or isn't) a way to fix this then plz tell me so instead of ignoring this post as I noticed a similar post someone else made has been ignored,
TY
ERIC

Bump. I'd like to know this as well. I don't see a preference for this in com.apple.iCal.plist
9AM every day would be perfect as a default

Similar Messages

  • How to Set A Default Start Time For New Events In Calendar?

    How to Set A Default Start Time For New Events In Calendar?

    John,
    Thanks for that suggestion - could not get it to work. However, I did manage a different approach. I finally determined the sequence of events in terms of how the various events and listeners fire (I think).
    Basically, the CalendarActivityListener fires, followed by the listener associated with the Calendar object's Create facet, followed finally by the CalendarEventListener - the final is where the TriggerEvent is available and then finally, control is passed to the popup/dialog in the Create facet. So, my approach of trying to set/get the TriggerDate in the user's HTTP session was doomed to failure because it was being get before it had been set :(
    Anyway, I ended up adding a bit of code to the CalendarEvent listener - it grabs the current BindingContext, navigates through the DCBindingContainer to derive an Iterator for the ViewObject which drives the calendar and then grabs the currently active row. I then do a few tests to make sure we're working with a "new" row because I don't want to alter start & end dates associated with an existing calendar entry and then I define the Start and End dates to be the Trigger Date.
    Works just fine. Snippet from the listener follows
    BindingContext bindingContext = BindingContext.getCurrent();+
    *if ( bindingContext != null )    {*+
    DCBindingContainer dcBindings = (DCBindingContainer) bindingContext.getCurrentBindingsEntry();+
    DCIteratorBinding iterator = dcBindings.findIteratorBinding("EventsView1Iterator");+
    Row currentRow = iterator.getCurrentRow();+
    if ( currentRow.getAttribute("StartDate") == null)+
    currentRow.setAttribute("StartDate", calendarEvent.getTriggerDate());+
    if (currentRow.getAttribute("EndDate")==null)+
    currentRow.setAttribute("EndDate", calendarEvent.getTriggerDate());+
    *}*

  • Can I set up a default time for iCal events?

    Can I set up a default time for iCal events?

    That's actually how Guest Access feature works. You can share internet to your guest/visitors without giving them access to your local network. You may configure the Guest Access settings on the router using Linksys Smart Wifi through the local access interface; check this site for the instructions, http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=b509a1805dd6416ebb0e35a7e5a58937_Configuring_Guest...
    Added Info:
    Guest Network Frequently Asked Questions
    http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=f35bd58fda4148929ac482f3c7968e04_Guest_Network_Fre...

  • ICal default calendar for new event

    When I sync a new iCal event from my PDA to iCal on my Powerbook, it defaults to a named, published calendar rather than "unfiled". Because of this, I immediately have to go through and change any new or changed events that have been sync'd to prevent them from being incorrectly published. I want to use the "unfiled" (and unpublished) calendar as my default calendar for new or changed events that I sync from my PDA, how do I do it?

    If you are using iSync, press the Tungsten icon in its main window to drop down the configuration pane. Select the Unfiled calendar under the Calendar section as the Put events created on Palm into: option.
    In the Missing Sync for Palm OS, double-click the Mark/Space Events conduit and select Put items from read-only calendars into: Unfiled. You have to create this calendar in iCal if it is not present already, before it can be selected in the Missing Sync.

  • Selecting Default Calendar for New Events

    Is there a way to select one of my iCal calendars to be the default when creating new events? I use one of my calendars every day using my iPhone at work for work events, and keep creating new events to the wrong calendar (which is currently set as my default)! It is very frustrating, as once the event is created, I can't change the associated calendar until I get home and can do it from my desktop.
    Thanks!!

    Tod,
    On your iPhone select: Settings>Mail, Contacts, Calendars>Default Calendar>Choose.
    ;~)

  • Can I choose the default calendar for new events?

    I have multiple calendars in iCal. When I create a new event on the iPod, it always defaults to the same calendar, but it's a less frequently used calendar so that's rarely the one I want. Is there a way to set the default calendar to my most frequently used calendar so I'm not having to change to a different one on a regular basis?

    On the iPod you can select the default calender: Settings>Mail..>Calenders (Scroll to bottom of the Mail... screen).

  • Setting a default calendar for new events

    Hi,
    I've just upgraded my Mobile Me account in respects to the Calendar.  Now on my Mac I get the option to show Me (On My Mac) & Me ([email protected]).  Currently I have both selected, but this gives me duplicate copies of certain events.  An error I assume from when it transf the calendars to the new Mobile Me Calendar.
    To save on any future duplications, I'd like to set a default Me calendar under which all events are created.  I cannot see how to do this on either my Mac or iPhone 4.  I've read various tips and suggestions, but none seem to work as I suspect they are for older generations iPhone or iPods.
    Can anyone offer any advise?
    Thanks, Gordon

    Gordon,
    Currently I have both selected, but this gives me duplicate copies of certain events.  An error I assume from when it transf the calendars to the new Mobile Me Calendar.
    What you are observing is not an error. The "On My Mac" calendars serve no useful purpose. Make sure that all of your events exist under the "MobileMe" source, archive your "On My Mac" calendars, and then delete them. That will eliminate the duplication that you are experiencing.
    I'd like to set a default Me calendar under which all events are created.  I cannot see how to do this on either my Mac or iPhone 4.
    The first calendar listed in the iCal Calendars source list will be the default calendar. Choose your iPhone default calendar in iPhone>Settings>Mail,Contacts,Calendars>>Calendars>Default Calendar.

  • How to set a default start and/or end date for New Events based on trigger date.

    I'm using the CalendarActivityListener to get current row when clicking on an existing event. As per previous posts this listener gives you access to event detail including Start Date, End Date, etc.
    However, what I want to do is to default the start (and end) dates for New Events based on the trigger date.
    I've tried the CalendarListener and can grab the Trigger Date from it - however, I can't see a way to pass this directly to the popup/dialog I'm using to create the new event.
    At present I'm putting the TriggerDate into the ADFContext session scope e.g. ADFContext.getCurrent().getSessionScope().put("TriggerDate",calendarEvent.getTriggerDate());
    Then, I've tried multiple approaches to try and "get" the TriggerDate from session scope to drop it into my new Calendar Event basically, I'm trying to default the InputField(s) associated with the Start Date using the value from the session - I've tried
    1. setting the default value for the InputField in the jspx using a binding expression i.e. value="#{sessionScope.TriggerDate}" - this actually sets the value appropriately when the jspx is rendered but, when I go to create I get a NPE and I can't debug. I assumed that it might be a Date type issue - it would appear that CalendarListener provides a date of type java.util.Date and that the StartDate attribute of my VO/EO/table is a DATE and therefore requires oracle.jbo.domain.Date so I tried casting it - to no effect
    2. Using a Groovy expression *(StartDate==null?adf.context.sessionScope.TriggerDate:StartDate)* in my calendar's EventVO to default the Start Date to the same result
    Any thoughts or ideas?

    John,
    Thanks for that suggestion - could not get it to work. However, I did manage a different approach. I finally determined the sequence of events in terms of how the various events and listeners fire (I think).
    Basically, the CalendarActivityListener fires, followed by the listener associated with the Calendar object's Create facet, followed finally by the CalendarEventListener - the final is where the TriggerEvent is available and then finally, control is passed to the popup/dialog in the Create facet. So, my approach of trying to set/get the TriggerDate in the user's HTTP session was doomed to failure because it was being get before it had been set :(
    Anyway, I ended up adding a bit of code to the CalendarEvent listener - it grabs the current BindingContext, navigates through the DCBindingContainer to derive an Iterator for the ViewObject which drives the calendar and then grabs the currently active row. I then do a few tests to make sure we're working with a "new" row because I don't want to alter start & end dates associated with an existing calendar entry and then I define the Start and End dates to be the Trigger Date.
    Works just fine. Snippet from the listener follows
    BindingContext bindingContext = BindingContext.getCurrent();+
    *if ( bindingContext != null )    {*+
    DCBindingContainer dcBindings = (DCBindingContainer) bindingContext.getCurrentBindingsEntry();+
    DCIteratorBinding iterator = dcBindings.findIteratorBinding("EventsView1Iterator");+
    Row currentRow = iterator.getCurrentRow();+
    if ( currentRow.getAttribute("StartDate") == null)+
    currentRow.setAttribute("StartDate", calendarEvent.getTriggerDate());+
    if (currentRow.getAttribute("EndDate")==null)+
    currentRow.setAttribute("EndDate", calendarEvent.getTriggerDate());+
    *}*

  • In setting up my ICal calendar I have specific times (as new events) that I want to be included in the print out.  This doesn't happen.

    In setting up my ICAL calendar I have specific times (as new events) for each day.  When it prints out the time does not show up (rather its a bar).  I would like the time for each appointment to print out. How do I do this?

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have failed to move contacts and calendar items across you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • How Do I Set a Default Calendar for New Appointments in iCal?

    I have two calendars in iCal. How can I set one to be the default when I create new appointments?

    I have the same problem. I have an "Automator" calendar listed under "On My Mac" and my personal calendar listed under "Google Calendar"
    I want New Events to default to my personal calendar under "Google Calendars" but the "Automator" calendar is first in the list and I am not able to reorder them (tried drag and drop and renaming etc). And, since I have automator scripts running frequently the Automator calendar is usually the last calendar 'used.'
    I cannot find any way to set my personal calendar under "Google Calendars" to be the default for New Events....am I missing something here?

  • Set a Default Calendar for New Appointments in iCal?

    I never found a post with a sufficient answer to this question. However, it seems as though I may have stumbled on a resolution myself.
    iCal has it's own default calendars: Home and Work. I use MobileMe so the MoblieMe calendar is listed there as well. I also have an iPhone 4. I wanted all calendars to syncronize automatically when I create a new appointment on any of the 3 locations (laptop, cloud, or phone). I found that when create a new event in iCal on my macbook pro, it wouldn't update with mobileme or my phone. This was because when I double click to create a new event, iCal automatically puts the new event into my "Home" calendar, even though it was unchecked and not highlighted. As soon as I double click to create the new event, iCal's default kicks in and the Home calendar in the "On My Mac" section suddenly becomes checked and highlighted all by itself and the new event is automatically placed there, never to be updated with the cloud or on my phone.
    I think the problem may be related to something I read under "How Do I Set a Default Calendar for New Appointments in iCal?" There a solution given was that the uppermost calendar was being defaulted to and it was suggested to drag the desired calendar to the uppermost position. None of my calendars would drag anywhere. However, I find that if I uncheck Home and Work in the column on the left under "On My Mac" AND then click the arrow so those two calendars are hidden (very important), and then check and highlight the only showing calendar: MobileMe, that (so far) when I doulbe click to create a new event, a new event is created in the MobileMe calendar, and Home and/or Work under the "On My Mac" section never becomes checked or highlighted. So the new event is created only in the MobileMe calendar listed and updates on my laptop, in the cloud, and on my phone.
    So far that has been my experience; but, it has been only minutes since I tried that, so let's see what happens after a couple of weeks or so of normal use and see if the problem is actually resolved.

    I have been searching for this information for weeks now -- thank you!
    This works for Google Calendar as well as for Mobile Me. I'm going to type a little more information here to see if I can help this answer come up more quickly for other users when they keyword search as I was doing.
    This answer helped me reset and change the default calendar for iCal. I can now set my Google Calendar as the default calendar in iCal. When I create a new event in iCal, it syncs to Google Calendar as the default calendar without having to choose another calendar. All my iCal new events now go directly to Google Calendar and sync to my iPhone and iPad. I couldn't move the gmail google calendar to the top position, and just unchecking Home and Work didn't change where new events defaulted. Now my new events automatically go from iCal to google calendar, and I don't lose track of any events. I think you can set any calendar as the default iCal calendar for new events using this approach.

  • ALV Grid default values for new rows added with Add/Insert buttons

    Hi!
    Help, please,  to find a way how to set default values for new rows added with Add/Insert buttons in
    ALV Grid.

    I have found salution:
    ALV Grid u2013 Insert row function
    Sometimes we need to assign some default values when we create a new row in a grid using standard ALV Append row button. In our scenario we will see how to assign default values to Airline Code (CARRID), Flight Connection Number (CONNID) and Flight date (FLDATE) when a new row is created. To do that we need to handle DATA_CHANGED event in the program like mentioned below.
    Definition of a class:
    Code:
          CLASS lcl_event_receiver DEFINITION
    CLASS LCL_EVENT_RECEIVER DEFINITION.
      PUBLIC SECTION.
    METHODS:
         handle_data_changed
         FOR EVENT data_changed OF cl_gui_alv_grid
         IMPORTING er_data_changed
                           e_ucomm.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    Implementation of a class:
    Code:
    CLASS LCL_EVENT_RECEIVER IMPLEMENTATION.
      METHOD HANDLE_DATA_CHANGED.
        DATA: dl_ins_row TYPE lvc_s_moce.   " Insert Row
          FIELD-SYMBOLS: <fs> TYPE table.    " Output table
    Loop at the inserted rows table and assign default values
        LOOP AT er_data_changed->mt_inserted_rows INTO dl_ins_row.
          ASSIGN er_data_changed->mp_mod_rows->* TO <fs>.
          loop at <fs> into ls_outtab.
            ls_outtab-carrid  = 'LH'.
            ls_outtab-connid  = '400'.
            ls_outtab-fldate  = sy-datum.
            MODIFY <fs> FROM ls_outtab INDEX sy-tabix.
          endloop.
        endloop.
      ENDMETHOD.                    "handle_data_changed
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION
    Register the events to trigger DATA_CHANGED event when a new row is created.
    Code:
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_ENTER.
        CALL METHOD OBJ_GRID->REGISTER_EDIT_EVENT
          EXPORTING
            I_EVENT_ID = CL_GUI_ALV_GRID=>MC_EVT_MODIFIED.

  • How do I change the default zoom for New Tab only?

    The New Tab zoom in Firefox 33 is too high to see all 12 of my thumbnails. I changed it using ctrl- but the next time I opened a New Tab, the zoom was back at 100%. How do I change the default zoom for New Tab only?

    cor-el, what am I looking for in '''content-prefs.sqlite'''?

  • How do I set the default time for calendar alerts?

    How do I set the default time for calendar alerts? I always want to have an alert 15 minutes before my appointments. I don't want to have to manually set it each time I make an appointment (I just moved to iphone from a windows mobile where this was basic stuff so I apologise if this is a noob question).

    I have the same issue. I've searched these forums and found lots of people who have asked this same question, but nobody who has received an answer.
    About a year ago, I migrated from a Windows PC and a Blackberry (both of which had very simple default alert options) to a MacBook Pro and an iPhone and have yet to find a solution on this forum or from any of my Apple-savvy friends. Very discouraging.

  • How to setup a default direction for new divs in fluid grid layout in dreamweaver?

    Hi,
    how to setup a default direction for new divs in fluid grid layout in dreamweaver? I am an RTL interface user, I need my new divs to be inserted from right to left not Left to Right! could it be in dreamweaver?
    Thanks.

    This may get me into strife, but my experience is that you are better off finding another platform for your RWD.
    The framework that I tend to use is by Zub-Foundation http://foundation.zurb.com/.
    A commercial product that I have come to appreciate can be found here http://www.projectseven.com/products/tools/composer/index.htm. Please do not mention me if you happen to choose this product.

Maybe you are looking for

  • Mac Mini or Macbook Air?

    Mac Mini or Macbook Air? I want to use it for word processing and playing music. I have an iPad 2, an iMac, and an Airport Extreme Base Station. I am not necessarily looking for portability, but It would be nice. What do you think?

  • How replace XML Elements with java

    I have been usint SAX 2.0 and DOM Level 2 api's to represent XML documents, which i parse with apache's Xerces parser... I am trying to delete certain elements and replace them with others, but none of the api's allow this the closes i have come is r

  • DB startup failed with error code 12

    Hi, The system is at kernel patch 75,so I was applying the kernel patches by extracting the .SAR files into the /usr/sap/ 4 ETW000 R3trans was called as follows: R3trans -x 4 ETW000  trace at level 2 opened for a given file pointer 4 ETW000    Wed Ja

  • Is Adobe Creative Suite 5 Design Standard compatible with Yosemite 10.10?

    Is Adobe Creative Suite 5 Design Standard compatible with Yosemite 10.10?

  • Industry specific verticle for Process Industry

    We have implemented MySAP ECC 6.00 in our company. Our company produces BOPP Film. We have implemented 6 modules FI,CO,PP,MM,SD and QM. In PP modules we stuck because of width. I want to ask whether there is any industry specific solution for Process