The only change in this version is a fix for a bug in the deletion of repeating appointments in cases where you wish to delete all instances of a repetition from the selected repetition forward.
Here is how you can make this change in your copy.
In CalendarUtility, change the Script " Appt Delete Repetitions" from this:
- Code: Select all
Go to Layout [ Delete Appt Reps ]
Loop
Go to Portal Row [ First ]
Exit Loop If [ Status(CurrentFieldContents) < PopupApptFldDateGlob ]
Delete Portal Row [ No dialog ]
End Loop
to this:
- Code: Select all
Go to Layout [ Delete Appt Reps ]
Loop Go to Portal Row [ First ]
If [ ApptsByPopupLinkRepIDXGlobToKeyRepIDX::ApptKeyDate >= PopupApptFldDateGlob ]
Delete Portal Row [ No dialog ]
End If
Exit Loop If [ ApptsByPopupLinkRepIDXGlobToKeyRepIDX::ApptKeyDate < PopupApptFldDateGlob ]
End Loop
That's it!