Current iCal Event |
|
Submitted By Brandon Delcamp (xpander) |
DescriptionLets everyone know all the intimate little details that you scheduled for yourself.CommentsYou can reply to individual comments by clicking the "Reply" link next to each. # by lankybutmacho on 09/27/04 at 18:03:23Hmm... guess it ignores my carriage returns. Oh well, you get the idea.
# by lankybutmacho on 09/27/04 at 18:04:54Not only that, I didn't actually make the change the second time I quoted the code. Obviously, I'm incompetent. What I meant is, (item 1 of theEvents) should become (item i of theEvents).
# by on 10/12/04 at 16:27:45I've noted a second problem which is strange. For some reason the script doesn't pick up repeat events. Apparently the values reported by iCal to Applescript for event start and end are altered by being a series event. Otherwise a great script!
Post a New CommentYou must be logged in to post comments. |
# by lankybutmacho on 09/27/04 at 18:03:00
repeat with i from 2 to count of theEvents
set theResult to theResult & ", " & summary of (item 1 of theEvents)
end repeat
Should be:
repeat with i from 2 to count of theEvents
set theResult to theResult & ", " & summary of (item 1 of theEvents)
end repeat
With i instead of 1. Otherwise, it's excellent.