You will have to be more specific what you want to select. Text in a frame? A particular 1-point black-filled path? Everything? Only select locked stray points? Graphics?
/t5/illustrator-discussions/is-it-possible-to-select-an-object-using-javascript-or-applescript-in-illustrator-cs3/m-p/1168732#M239035May 13, 2008
May 13, 2008
Copy link to clipboard
Copied
LATEST
Making most objects selected is simply a matter of setting its .selected property to true:
myObject.selected=true;
Trickier is telling the script
which object to select. Open the AI Javascript Reference, do a search for ".selected =", and you will find numerous examples.