home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 86 / PIWD86.iso / pc / contents / illustration / software / Installer / data1.cab / Program_Files / Presets / Scripts / SaveDocsAsPDF.js < prev   
Text File  |  2001-11-29  |  697b  |  30 lines

  1.  
  2. numDocuments = documents.length;
  3.  
  4. for ( i = 0 ; i < numDocuments; i++)
  5. {
  6.     aDocument = documents[i];
  7.     theDocumentName = aDocument.name;
  8.     
  9.     pdfSaveOptions = new PDFSaveOptions();
  10.     pdfSaveOptions.embedAllFonts = true;
  11.     pdfSaveOptions.preserveEditability = true;
  12.  
  13.     docPath = aDocument.path;
  14.     docPathStr = docPath.toString();
  15.  
  16.     if (docPathStr.length > 1)
  17.     {
  18.         documentPath = aDocument.path + "/" + aDocument.name;        
  19.     }
  20.     else
  21.     {
  22.         // This is a brand new file and doesn't have a path yet,
  23.         // so put it in the illustrator application folder.
  24.         documentPath = path + "/" + aDocument.name;
  25.     }
  26.  
  27.     theFile = new File(documentPath);
  28.     aDocument.saveAs(theFile, pdfSaveOptions);
  29. }
  30.