How to forward iCal events

Does anyone know how to forward iCal events to new attendees?

Hi jwinter0425,
Here's how you mail an existing event:
1. Right-click on the event in iCal
2. Click "Mail Event"
If you're sending this to an Microsoft Outlook/Exchange user, they won't be able to open it. I've developed an iCal plug-in that resolves iCal-to-Outlook compatibility issues. It's worth checking it out. http://www.zamain.com.
-Jon
As per the terms of agreement, I must disclose that I may receive some form of compensation, financial or otherwise, from my recommendation or link above.

Similar Messages

  • How to List iCal Events

    Is there a way to view a list of all events in iCal? I can list events on my iPhone 4S using IOS6, but don't know how to do this on my iMac running Lion. Thank you. Bob.

    After a few days of aggravation, the issue mysteriously resolved itself. Gremlins?

  • How to restore ical events

    i ve deleted caches and all my events gone.how can i get them back to ical?

    I'm having the same problem with any program. Time Machine simply defaults, every time, to the Desktop Folder. This is fine, but only really useful for individual files and/or folders. Where's the integrated Restore for Apple programs?

  • How to read iCal events from SQLite Cache file?

    I need to figure out how to read event entries in the Cache file stored in /Library/Calenders/ as my actual events have been corrupted due to a file system problem. The example below shows the information I have for each entry, where the event in the entry was Bon Jovi Concert, however I am confused how I can read the date and time of the event, information I believe is stored as 218215639,219613081,219524400,219540600. Any help is greatly appreciated.
    INSERT INTO "ZCALENDARITEM" VALUES(0,NULL,0,NULL,0,5,NULL,6,4039,NULL,0,0,0,0,0,0,2,23,0,0,0,0,6,0,21821563 9,219613081,219524400,219540600,NULL,NULL,NULL,NULL,NULL,'local_AFB8D342-2DAE-4F A1-A9A6-3FA9B28B5C7C','Bon Jovi Concert',NULL,NULL,NULL,'Europe/London',NULL,'0E17BBB6-0E76-4024-8DD7-60E43D38D 35B');

    OK, here we go ... I hope. I have tried it on my iCal, with about 2000 entries, and it worked. I cannot guarantee that it will work for you.
    Make a new text file from sql as before, but using this modified command to get additional data for each event:
    sqlite3 Desktop/Hope 'select ZSTARTDATE, ZCALENDARITEM.ZTITLE, ZENDDATE, ZNODE.ZTITLE, ZISALLDAY, ZRECURRENCERULE, ZISDETACHED from ZCALENDARITEM inner join ZNODE on ZCALENDARITEM.ZCALENDAR = ZNODE.Z_PK where ZSTARTDATE not null' >hope.txt
    I suggest you make a new user account, then copy the text file hope.txt and the script to the Public/Drop Box folder for that account. Log on to the new account and copy the two files from the drop box to the Desktop. Start iCal and make new calendars to match those in your ordinary account. Double click the script to open it in Script Editor and CHANGE THE DATE RANGE in the "set ThePeriod" line. Stand well back and click the run button. Every 50 records processed it will pop up a progress box, which will pop down again after a second. Go for lunch.
    When it is finished see if things look OK in iCal. If they do export each of the calendars, copy them to the drop box of your normal account and return to your normal account to import them.
    If there is an error make a note of the error message and line number, find that line in the text file, and post it here with a couple of lines either side.
    Note that for recurring items iCal normally only makes a single event, the first occurrence, then uses a recurrence rule to calculate if the event should be displayed in the current window. If there are any recurring events in the period you have selected where the first occurrence is before the period they will not be recreated. Where however you have changed a single occurrence of a recurring event iCal makes a new, detached, event. Any of these in the period will be detected. If their original event was also in the period they will now appear in the iCal display as duplicates. For easy spotting of these, I have prefixed "XX-" to the title of any detached events.
    AK
    <pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">on run
    set ThePeriod to {date ("jan 1 2008"), date ("dec 31 2008")} --CHANGE THIS BEFORE RUNNIN
    set TheFile to open for access (path to desktop as text) & "temp.txt"
    set TheContents to read TheFile --until return
    close TheFile
    set TheLines to paragraphs of TheContents
    set OldDelim to AppleScript's text item delimiters
    set AppleScript's text item delimiters to {"|"}
    set LCount to 0
    set ACount to 0
    set RCount to 0
    set DCount to 0
    set SCount to 0
    set HowMany to (count of TheLines)
    try
    repeat with ThisLine in TheLines
    if (count of ThisLine) is 0 then exit repeat
    -- Start Date, Title, End Date, Calendar, All Day, Recurs, Detached
    set LCount to LCount + 1
    set Details to text items of ThisLine
    set MyStartDate to FixMyDate(item 1 of Details)
    set MyTitle to item 2 of Details
    set MyEndDate to FixMyDate(item 3 of Details)
    set MyCalendar to item 4 of Details
    set MyAllDay to item 5 of Details
    set MyRecurs to item 6 of Details
    set MyDetached to item 7 of Details
    if MyAllDay is "1" then set ACount to ACount + 1
    if (count of MyRecurs) > 0 then set RCount to RCount + 1
    if MyDetached is "1" then set MyTitle to "XX-" & MyTitle
    if MyDetached is "1" then set DCount to DCount + 1
    if (MyCalendar is not "Birthdays") and (MyStartDate ≥ item 1 of ThePeriod) and (MyStartDate ≤ item 2 of ThePeriod) then
    tell application "iCal"
    tell calendar MyCalendar
    set ThisItem to make new event at end of events with properties {summary:MyTitle, start date:MyStartDate}
    end tell
    tell ThisItem
    if MyAllDay is "1" then set allday event to true
    if (count of MyRecurs) > 0 then set recurrence to MyRecurs
    set end date to MyEndDate
    end tell
    end tell
    else
    set SCount to SCount + 1
    end if
    if (LCount mod 50) = 0 then
    set the_message to "Processed " & (LCount as string) & " of " & (HowMany as string)
    display dialog the_message buttons {"Cancel"} giving up after 1
    end if
    end repeat
    on error TheError
    display dialog "Error: " & TheError & " about line " & LCount
    end try
    set AppleScript's text item delimiters to OldDelim
    display dialog (LCount as string) & " lines processed" & return & "All Day: " & (ACount as string) & return & "Recurs: " & (RCount as string) & return & "Detach: " & (DCount as string) & return & "Skipped: " & (SCount as string)
    end run
    on FixMyDate(MyDate)
    date (do shell script "date -r " & MyDate & " -v+31y +%e'/'%m'/'%y' '%T")
    end FixMyDate
    </pre>

  • How to reduce iCal event time span?

    How do I set default time span of an event to 1 hour in iCal?  I'm using Version 5.0.2 (1571) and the current default is set to something like 6 or 8 hours and it's driving me nuts! A related aggravation is that an event can unintentionally end up spanning 2 days! It used to work just fine in previous versions -- why did they "fix" this and how do I make the current version be truly useful like the old version?

    Hi,
    I guess you are adding events in Month view. From iCal's help file about entering events in Month view.
    Add a new event in Month view by double-clicking within the day you want the event to appear. Enter a name and time duration for the event in the event’s title field, and then press Return.
    iCal moves the event to the correct time and sets it to the correct duration. For example, you can double-click within a day in Month view, enter “Movie 7-9pm,” and then press Return.
    If you don’t enter a time duration, iCal sets the event’s duration to 1 hour.
    If you don’t enter any time information, iCal makes the event an all-day event.
    Add a start time in the event title to make a timed 1 hour event. The time part of the title is stripped out.
    Best wishes
    John M

  • How to keep iCal events older than 90 days?

    We use one of our iCal calendars for business, and we need to refer back to client appointments that occurred several months in the past.  However, despite unchecking all the "Delete events" options in Prefs, any appointment older than 90+ days is gone.  This is extremely annoying for all concerned.  Is there a fix, or do we have to use something like Google calendar and link to it?  I'm looking for a simple solution for everyone in the office.

    I am having the same issue in a slightly different way.
    Have a main calendar server I connect to at work and iCal syncs via CalDAV.
    Nothing over about 90 days is getting pulled down even after deleting the calendar.
    I am not the only one at work with a Mac that faces this issue.
    There are 3 other threads with similar topics:
    http://discussions.apple.com/thread.jspa?threadID=2658904
    http://discussions.apple.com/thread.jspa?threadID=2614205&start=15&tstart=0
    http://discussions.apple.com/message.jspa?messageID=12495527#12495527
    Going to try some of the suggestions there.

  • How to create iCal events from other applications?

    I want to create event linked with a certain document, e.g. when I've finishes a letter in Pages or in TeXShop, I want to create an event in iCal for reminder. I know, that I can in iCal create events and add the link to the file into the URL field of an event. But I want in Pages, TeXShop, Numbers, … to click: »Create reminder in iCal on <date>.«
    Is there a way for it?

    Cody,
    Read: http://discussions.apple.com/thread.jspa?messageID=8314404&#8314404
    You can use Firewire Target Disk mode: http://support.apple.com/kb/HT1661 to transfer the appropriate iCal files.
    ;~)

  • How to sync iCal events back to iPad from Macbook?

    My iPhone events have all successfully imported to Macbook, but they won't sync back to iPadmini.  I've tried to push them through iCloud and also manually but no success. 
    The sync works vice-versa - i.e. iPad events will sync to Mac.
    Using Maverick

    Please try the following...
    First check that all your settings are correct, that calendar syncing is checked on all devices (system preferences > iCloud on a mac and settings > iCloud on a iPhone, iPad or iPod).
    Make sure the calendars you are using are in your 'iCloud' account and not an 'On My Mac', 'On My Phone' or other non iCloud account (you can do this by clicking/tapping the calendar button in the top left corner of the application ), non iCloud calendars will not sync.
    If you are sure that everything is set up correctly and your calendars are in the iCloud account, you might try unchecking calendar syncing in the iCloud settings, restarting your device and then re-enabling calendar syncing settings.

  • How to duplicate iCal events on iPhone?

    Is it possible to duplicate/copy an eventy in iCal on your iPhone and then paste it to another date?  This is easy in iCal on my Mac, but I can not seem to find a way to do it on my new iPhone.  Thanks.

    Not sure, but you might want to check your calendar on your iPhone under Clendars button (top left), then see if you have a check mark next to more that one calendar named "Calendar".  If so, try unchecking the one under On My iPhone and see if that removes the duplicates.

  • How to import ical events to calendar?

    how can i import my old calendars without using magration assistance.

    Hello PAULROBERT26,
    The article linked below provides a lot of great information and troubleshooting tips that can help you resolve the calendar syncing issue on your Mac.
    Sync Services: Advanced troubleshooting for contact and calendar syncing - Assistance Apple
    Take care,
    -Jason

  • Lion 10.7.2 On both mac book pro and iMac, both with Lion 10.7.2, obtain repeated iCal event notifications from calendar or address book.  Cannot turn these off.  They repeat several times per session and every time computer is used.  How to diagnose this

    Lion 10.7.2 On both mac book pro and iMac, both with Lion 10.7.2, obtain repeated iCal event notifications from calendar or address book.  Cannot turn these off.  They repeat several times per session and every time computer is used.  How to diagnose this?

    First, uninstall "SuperTV" (whatever that is) according to the developer's instructions. It isn't working and it's filling the log with noise.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Enter "BOOT_TIME" (without the quotes) in the search box. Note the timestamps of those log messages, which refer to the times when the system was booted. Now clear the search box and scroll back in the log to the last boot time when you had the problem. Post the messages logged before the boot, while the system was unresponsive or was failing to shut down. Please include the BOOT_TIME message at the end of the log extract.
    Post the log text, please, not a screenshot. If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message. When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    PLEASE DO NOT INDISCRIMINATELY DUMP THOUSANDS OF LINES FROM THE LOG INTO A MESSAGE. If you do that, I will not respond.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.
    Step 2
    Still in Console, look under System Diagnostic Reports for crash or panic logs, and post the most recent one, if any. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

  • I updated my iPhone 4 to iOS5 and let it sync with my Macbook and now all my iPhone iCal entries are gone. How can I get my iCal events back on my iPhone?

    I updated my iPhone 4 to iOS5 and let it sync with my Macbook (running Lion) and now all my iPhone iCal entries are gone. How can I get my iCal events back on my iPhone?

    Me too!  Help anyone?

  • How do you get a new line in a description of an iCal event?

    I need to be able to create multiple lines in a description of an iCal event.  In the past, I used control return to get a new line.  In Mountain Lion, this does not show up as a new line, once the event has been saved.  It merges all of the text onto one line and creates new lines as the space dictates.  How can I force new lines in the event description between the words that I have chosen?

    I'm interested too.
    Please help, I had own method to management  iCal's event – new line, of 10.7 worked great – now is a little terrible for me :/

  • I just installed Yosemite.  Notifications Center will not show ICal entries that were on my ICal at time of installation.  How do I get events to show in Notification Center?

    I just installed Yosemite.  Notifications Center will not show ICal entries that were on my ICal at time of installation.  How do I get events to show in Notification Center?

    Submit your feedback requesting this feature directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • How do I see my ICal events on my work Google Calendar?

    how do I see my ICal events on my work Google Calendar?

    I thought that was the case.  I'm happy enough syncing Entourage to my iPhone.  The last update to Entourage actually fixed that.  I was just curious if the Entourage calendar in iCal would appear in the iCloud via iCal. Obviously it doesn't unless you want to "force" the issue.  Thanks for taking the time.  Bill

Maybe you are looking for

  • Custom action with XML type input and output parameter.

    Hi, I want to develop custom action with xml type input and/or output parameter. Is there sample code for java side. How is the definition of input and/or output parameter and set/get methods? does it need special .jar file to develop custom action l

  • Does the 4th GB of RAM makes any senses in the nem MacBook Series?

    Risking to start a neverending troll, and risking, the topic was discussed in exteso earlier, I have to admitt that I am a little bit ****** about a company that merchendizes computers with larger RAM-possibilities than the CPU can handle (to my know

  • Check Box functionally lost when visiblity is turned off then back on

    Please pardon my attempt to ask a coherent question for I am new to Oracle Forms! I have created a canvas using the layout wizard against an Oracle table. I needed to provide the means to select mulitple records for DELETION; so, I created a check bo

  • Growing chart line, Flash CS4

    Hello, I want to make a growing line. Therefore I have an object without outlines that is angled like a stock exchange chart line. The object is imported (copy paste) from Illustrator. I tried with shape tween with the same object form (not the same

  • Flat File Load Issue - Cannot convert character sets for one or more charac

    We have recently upgraded our production BW system to SPS 17 (BW SP19) and we have issues loading flat files (contain Chinese, Japanese and Korean characters) which worked fine before the upgrade. The Asian languages appear as invalid characters (gar