Photoshop + JavaScript, why docRef.selection.selectEllipse(), .selectColumn(), .selectPolygon(), .selectRectangle(), .selectRow() don't work?
I automate Photoshop using JavaScript, here is my code: var originalRulerUnits = app.preferences.rulerUnits originalRulerUnits = Units.PIXELS displayDialogs = DialogModes.NO var fileRef = new File( "C:\Users\...\Desktop\...\...\test.png" ); app.open( fileRef ); var docRef = app.activeDocument; So this code works fine, but next…