var savefile = new File("~/Desktop/sample.jpg");
var jpegOpt = new JPEGSaveOptions();  // JPEG形式オプション
jpegOpt.formatOptions=FormatOptions.PROGRESSIVE;
jpegOpt.scans=3;    // スキャンライン
activeDocument.saveAs(savefile, jpegOpt, true, Extension.LOWERCASE);