Thanks for looking at this, Larry! When I tried the loop backward, Extendscript didn't like the '=>' and said the '>' does not have a value. i tried: for ( i = app.activeDocument.textFrames.length; i >0; i-- ) and then the script ran, but then it's telling me that the 'atf' variable has no value. If I set 'i' explicitly to the number of text frames in the doc, (For example 7 total textframes in the document) I can get the loop (i--) to apply the style to TF 6 and TF 5, and then with (i++) I can get it to apply the style to TF 0, TF 1, and TF 6, but can't figure out why it's not just going through all of them. If that makes any sense.
... View more