tell application "iView MediaPro" set mySelection to the selection of catalog 1 set oldDelimiters to AppleScript's text item delimiters set AppleScript's text item delimiters to ", " repeat with myItem in mySelection if (the caption of myItem is not equal to "") then set myCaption to the caption of myItem & " / " else set myCaption to "" end if if (the event of myItem is not equal to "") then set myEvent to the event of myItem & " / " else set myEvent to "" end if if (the location of myItem is not equal to "") then set myLocation to the location of myItem & " / " else set myLocation to "" end if if (the people of myItem is not equal to "") then set myPeople to (the people of myItem as string) else set myPeople to "" end if set myAnnotations to the annotations of myItem set the title of myItem to myCaption & myEvent & myLocation & myPeople end repeat set AppleScript's text item delimiters to oldDelimiters end tell