I am trying to get all the text frames for a single page in order but I was always getting them in random order when using the
myDoc.pages[1] //assuming the 1st index page
>> [object Page]
myDoc.pages[eachPage].textFrames //get all the text frames on that page.
>> [object TextFrames] //able to get the textframes but they are not in the order if they are linked textframes
Is there a way to get them in order if they are linked text frames? (not sure how they will come up if they are unlinked)
If not at least how to know the first text frame on the page so I can get the other frames with . nextTextFrame
.