I can do this for CS3…
set storyList to {}
tell application "Adobe Indesign CS3"
tell front document
-->get list of every story
set storyList to every story
-->loop through list
repeat with i from 1 to count of every item of storyList
-->doesn't work if you do repeat with thisStory in storyList
set thisStory to item i of storyList
-->get story id
set thisStoryID to id of thisStory
-->get article
set thisStoryContents to contents of story id thisStoryID
copy thisStoryContents to end of storyList
end repeat
end tell
end tell
but in CS2, when I get every story and check the properties there doesn’t seem to be a contents property. How do I go about getting all the stories in an ID file in CS2?
Thanks