Anybody know exactly what criteria they are using when they fetch Entourage Data?

It's certainly not picking up all that I expect it to.

It's not picking up much at all actually.

Looking at Entourage2WR.applescript deep in the iCal wrapper it looks like
iCal doesn't support the Entourage event type of Holiday because their script explicitly
goes about deliberately forgetting about them.

That's fine. However, I still do not understand why it fails to import to events that I have set for this Friday which aren't all day events nor are they holidays and nor do they have any assigned category.

Why would this forget about events that have no assigned category?

repeat with aEEvent in myEEvents
-- Trick to remove the holidays : compare categories of the events
-- TODO : check that the events has ONLY holidays categories
set thecats to category of aEEvent
set vacflag to false
repeat with acat in thecats
if (the ID of acat) is equal to theholcat then
set vacflag to true
end if
end repeat
set tmpVal to {}
-- append raw properties to the list as list of records have their own syntax
if vacflag is equal to false then
set tmpVal to tmpVal & (get subject of aEEvent as Unicode text)
set tmpVal to tmpVal & (get start time of aEEvent)
set tmpVal to tmpVal & (get end time of aEEvent)
set tmpVal to tmpVal & (get recurring of aEEvent)
set tmpVal to tmpVal & (get recurrence of aEEvent)
set (myEvList of me) to (myEvList of me) & tmpVal
end if
end repeat

Reply via email to