Page 1 of 1

Is there any way to set the project selection?

Posted: May 2nd, 2009, 11:46 am
by Aaron Cobb
I posted this question over at the AE forums, but so far nobody's biting. I know that app.project.selection can't be written to directly, but is there any method for modifying the project selection?

Re: Is there any way to set the project selection?

Posted: May 2nd, 2009, 3:05 pm
by Paul Tuersley
Well according to the scripting guide app.project.selection is read only, but app.project.item(index).selected is read/write so you should be able to set app.project.item(n).selected as true or false.

Re: Is there any way to set the project selection?

Posted: May 2nd, 2009, 3:42 pm
by Aaron Cobb
Hey, that works. Thanks!