Oh... help would be so greatly appreciated as, I am truly stumped!
Selecting two (or more) text frames manually, how can one go about looping through and changing the properties of all the type contained in each of the frames? I'm only using the "with" statement so, any additional properties added will be easy to find and read.
var mySel = app.selection[0].contents;
for (i=0; i<mySel.length; i++) {
with (mySel){
horizontalScale = 200;
kerningMethod = "Optical";
}
}
Thanks again for any help!