// Copyright 2005. Adobe Systems, Incorporated. All rights reserved. // This script will apply each comp and then export to a file // Written by Naoki Hada // ZStrings and auto layout by Tom Ruark // enable double clicking from the Macintosh Finder or the Windows Explorer #target photoshop // in case we double clicked the file app.bringToFront(); // debug level: 0-2 (0:disable, 1:break on error, 2:break at beginning) // $.level = 0; // debugger; // launch debugger on next line // on localized builds we pull the $$$/Strings from a .dat file, see documentation for more details $.localize = true; //================================================================= // Globals //================================================================= // UI strings to be localized var strTitle = localize("$$$/JavaScripts/LayerCompsToFiles/Title=Layer Comps To Files"); var strButtonRun = localize("$$$/JavaScripts/LayerCompsToFiles/Run=Run"); var strButtonCancel = localize("$$$/JavaScripts/LayerCompsToFiles/Cancel=Cancel"); var strHelpText = localize("$$$/JavaScripts/LayerCompsToFiles/Help=Please specify the format and location for saving each layer comp as a file."); var strLabelDestination = localize("$$$/JavaScripts/LayerCompsToFiles/Destination=Destination:"); var strButtonBrowse = localize("$$$/JavaScripts/LayerCompsToFiles/Browse=Browse..."); var strLabelFileNamePrefix = localize("$$$/JavaScripts/LayerCompsToFiles/FileNamePrefix=File Name Prefix:"); var strCheckboxSelectionOnly = localize("$$$/JavaScripts/LayerCompsToFiles/SelectedOnly=Selected Layer Comps Only"); var strLabelFileType = localize("$$$/JavaScripts/LayerCompsToFiles/FileType=File Type:"); var strCheckboxIncludeICCProfile = localize("$$$/JavaScripts/LayerCompsToFiles/IncludeICC=Include ICC Profile"); var strJPEGOptions = localize("$$$/JavaScripts/LayerCompsToFiles/JPEGOptions=JPEG Options:"); var strLabelQuality = localize("$$$/JavaScripts/LayerCompsToFiles/Quality=Quality:"); var strPSDOptions = localize("$$$/JavaScripts/LayerCompsToFiles/PSDOptions=PSD Options:"); var strCheckboxMaximizeCompatibility = localize("$$$/JavaScripts/LayerCompsToFiles/Maximize=Maximize Compatibility"); var strTIFFOptions = localize("$$$/JavaScripts/LayerCompsToFiles/TIFFOptions=TIFF Options:"); var strLabelImageCompression = localize("$$$/JavaScripts/LayerCompsToFiles/ImageCompression=Image Compression:"); var strNone = localize("$$$/JavaScripts/LayerCompsToFiles/None=None"); var strPDFOptions = localize("$$$/JavaScripts/LayerCompsToFiles/PDFOptions=PDF Options:"); var strLabelEncoding = localize("$$$/JavaScripts/LayerCompsToFiles/Encoding=Encoding:"); var strTargaOptions = localize("$$$/JavaScripts/LayerCompsToFiles/TargaOptions=Targa Options:"); var strLabelDepth = localize("$$$/JavaScripts/LayerCompsToFiles/Depth=Depth:"); var strRadiobutton16bit = localize("$$$/JavaScripts/LayerCompsToFiles/Bit16=16bit"); var strRadiobutton24bit = localize("$$$/JavaScripts/LayerCompsToFiles/Bit24=24bit"); var strRadiobutton32bit = localize("$$$/JavaScripts/LayerCompsToFiles/Bit32=32bit"); var strBMPOptions = localize("$$$/JavaScripts/LayerCompsToFiles/BMPOptions=BMP Options:"); var strAlertSpecifyDestination = localize("$$$/JavaScripts/LayerCompsToFiles/SpecifyDestination=Please specify destination."); var strAlertDestinationNotExist = localize("$$$/JavaScripts/LayerCompsToFiles/DestionationDoesNotExist=Destination does not exist."); var strTitleSelectDestination = localize("$$$/JavaScripts/LayerCompsToFiles/SelectDestination=Select Destination"); var strAlertDocumentMustBeOpened = localize("$$$/JavaScripts/LayerCompsToFiles/OneDocument=You must have a document open to export!"); var strAlertNoLayerCompsFound = localize("$$$/JavaScripts/LayerCompsToFiles/NoComps=No layer comps found in document!"); var strAlertWasSuccessful = localize("$$$/JavaScripts/LayerCompsToFiles/Success= was successful."); var strUnexpectedError = localize("$$$/JavaScripts/LayerCompsToFiles/Unexpectedd=Unexpected error"); // the drop down list indexes for file type var bmpIndex = 0; var jpegIndex = 1; var pdfIndex = 2; var psdIndex = 3; var targaIndex = 4; var tiffIndex = 5; // the drop down list indexes for tiff compression var compNoneIndex = 0; var compLZWIndex = 1; var compZIPIndex = 2; var compJPEGIndex = 3; /////////////////////////////////////////////////////////////////////////////// // Dispatch /////////////////////////////////////////////////////////////////////////////// main(); /////////////////////////////////////////////////////////////////////////////// // Functions /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // Function: main // Usage: the core routine for this script // Input: // Return: /////////////////////////////////////////////////////////////////////////////// function main() { if ( app.documents.length <= 0 ) { alert( strAlertDocumentMustBeOpened ); return; } var exportInfo = new Object(); initExportInfo(exportInfo); if (false == settingDialog(exportInfo)) { return; // quit } try { var docName = app.activeDocument.name; // save the app.activeDocument name before duplicate. var compsName = new String("none"); var compsCount = app.activeDocument.layerComps.length; if ( compsCount <= 1 ) { alert ( strAlertNoLayerCompsFound ); } else { app.activeDocument = app.documents[docName]; docRef = app.activeDocument; for ( compsIndex = 0; compsIndex < compsCount; compsIndex++ ) { var compRef = docRef.layerComps[ compsIndex ]; if (exportInfo.selectionOnly && !compRef.selected) continue; // selected only compRef.apply(); var duppedDocument = app.activeDocument.duplicate(); var fileNameBody = exportInfo.fileNamePrefix; fileNameBody += "_" + zeroSuppress(compsIndex, 4); fileNameBody += "_" + compRef.name; if (null != compRef.comment) fileNameBody += "_" + compRef.comment; fileNameBody = fileNameBody.replace(/[:\/\\*\?\"\<\>\|]/g, "_"); // '/\:*?"<>|' -> '_' if (fileNameBody.length > 120) fileNameBody = fileNameBody.substring(0,120); saveFile(duppedDocument, fileNameBody, exportInfo); duppedDocument.close(SaveOptions.DONOTSAVECHANGES); } alert(strTitle + strAlertWasSuccessful); } } catch (e) { alert(e); } } /////////////////////////////////////////////////////////////////////////////// // Function: settingDialog // Usage: pop the ui and get user settings // Input: exportInfo object containing our parameters // Return: on ok, the dialog info is set to the exportInfo object /////////////////////////////////////////////////////////////////////////////// function settingDialog(exportInfo) { dlgMain = new Window("dialog", strTitle); dlgMain.orientation = 'column'; dlgMain.alignChildren = 'left'; // -- top of the dialog, first line dlgMain.add("statictext", undefined, strLabelDestination); // -- two groups, one for left and one for right ok, cancel dlgMain.grpTop = dlgMain.add("group"); dlgMain.grpTop.orientation = 'row'; dlgMain.grpTop.alignChildren = 'top'; dlgMain.grpTop.alignment = 'fill'; // -- group top left dlgMain.grpTopLeft = dlgMain.grpTop.add("group"); dlgMain.grpTopLeft.orientation = 'column'; dlgMain.grpTopLeft.alignChildren = 'left'; dlgMain.grpTopLeft.alignment = 'fill'; // -- the second line in the dialog dlgMain.grpSecondLine = dlgMain.grpTopLeft.add("group"); dlgMain.grpSecondLine.orientation = 'row'; dlgMain.grpSecondLine.alignChildren = 'center'; dlgMain.etDestination = dlgMain.grpSecondLine.add("edittext", undefined, exportInfo.destination.toString()); dlgMain.etDestination.preferredSize.width = 160; dlgMain.btnBrowse = dlgMain.grpSecondLine.add("button", undefined, strButtonBrowse); dlgMain.btnBrowse.onClick = function() { var defaultFolder = dlgMain.etDestination.text; var testFolder = new Folder(dlgMain.etDestination.text); if (!testFolder.exists) defaultFolder = "~"; var selFolder = Folder.selectDialog(strTitleSelectDestination, defaultFolder); if ( selFolder != null ) { dlgMain.etDestination.text = selFolder.fsName; } dlgMain.defaultElement.active = true; } // -- the third line in the dialog dlgMain.grpTopLeft.add("statictext", undefined, strLabelFileNamePrefix); // -- the fourth line in the dialog dlgMain.etFileNamePrefix = dlgMain.grpTopLeft.add("edittext", undefined, exportInfo.fileNamePrefix.toString()); dlgMain.etFileNamePrefix.alignment = 'fill'; // -- the fifth line in the dialog dlgMain.cbSelection = dlgMain.grpTopLeft.add("checkbox", undefined, strCheckboxSelectionOnly); dlgMain.cbSelection.value = exportInfo.selectionOnly; // -- the sixth line is the panel dlgMain.pnlFileType = dlgMain.grpTopLeft.add("panel", undefined, strLabelFileType); dlgMain.pnlFileType.alignment = 'fill'; // -- now a dropdown list dlgMain.ddFileType = dlgMain.pnlFileType.add("dropdownlist"); dlgMain.ddFileType.preferredSize.width = 100; dlgMain.ddFileType.alignment = 'left'; dlgMain.ddFileType.add("item", "BMP"); dlgMain.ddFileType.add("item", "JPEG"); dlgMain.ddFileType.add("item", "PDF"); dlgMain.ddFileType.add("item", "PSD"); dlgMain.ddFileType.add("item", "Targa"); dlgMain.ddFileType.add("item", "TIFF"); dlgMain.ddFileType.onChange = function() { hideAllFileTypePanel(); switch(this.selection.index) { case bmpIndex: dlgMain.pnlFileType.pnlOptions.text = strBMPOptions; dlgMain.pnlFileType.pnlOptions.grpBMPOptions.show(); break; case jpegIndex: dlgMain.pnlFileType.pnlOptions.text = strJPEGOptions; dlgMain.pnlFileType.pnlOptions.grpJPEGOptions.show(); break; case tiffIndex: dlgMain.pnlFileType.pnlOptions.text = strTIFFOptions; dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.show(); break; case pdfIndex: dlgMain.pnlFileType.pnlOptions.text = strPDFOptions; dlgMain.pnlFileType.pnlOptions.grpPDFOptions.show(); break; case targaIndex: dlgMain.pnlFileType.pnlOptions.text = strTargaOptions; dlgMain.pnlFileType.pnlOptions.grpTargaOptions.show(); break; case psdIndex: default: dlgMain.pnlFileType.pnlOptions.text = strPSDOptions; dlgMain.pnlFileType.pnlOptions.grpPSDOptions.show(); break; } } dlgMain.ddFileType.items[exportInfo.fileType].selected = true; // -- now after all the radio buttons dlgMain.cbIcc = dlgMain.pnlFileType.add("checkbox", undefined, strCheckboxIncludeICCProfile); dlgMain.cbIcc.value = exportInfo.icc; dlgMain.cbIcc.alignment = 'left'; // -- now the options panel that changes dlgMain.pnlFileType.pnlOptions = dlgMain.pnlFileType.add("panel", undefined, "Options"); dlgMain.pnlFileType.pnlOptions.alignment = 'fill'; dlgMain.pnlFileType.pnlOptions.orientation = 'stack'; dlgMain.pnlFileType.pnlOptions.preferredSize.height = 100; // PSD options dlgMain.pnlFileType.pnlOptions.grpPSDOptions = dlgMain.pnlFileType.pnlOptions.add("group"); dlgMain.pnlFileType.pnlOptions.grpPSDOptions.cbMax = dlgMain.pnlFileType.pnlOptions.grpPSDOptions.add("checkbox", undefined, strCheckboxMaximizeCompatibility); dlgMain.pnlFileType.pnlOptions.grpPSDOptions.cbMax.value = exportInfo.psdMaxComp; // JPEG options dlgMain.pnlFileType.pnlOptions.grpJPEGOptions = dlgMain.pnlFileType.pnlOptions.add("group"); dlgMain.pnlFileType.pnlOptions.grpJPEGOptions.add("statictext", undefined, strLabelQuality); dlgMain.pnlFileType.pnlOptions.grpJPEGOptions.etQuality = dlgMain.pnlFileType.pnlOptions.grpJPEGOptions.add("edittext", undefined, exportInfo.jpegQuality.toString()); dlgMain.pnlFileType.pnlOptions.grpJPEGOptions.etQuality.preferredSize.width = 30; // TIFF options dlgMain.pnlFileType.pnlOptions.grpTIFFOptions = dlgMain.pnlFileType.pnlOptions.add("group"); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.orientation = 'column'; dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression = dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.add("group"); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.alignment = 'left'; dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.add("statictext", undefined, strLabelImageCompression); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.ddCompression = dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.add("dropdownlist"); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.ddCompression.add("item", strNone); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.ddCompression.add("item", "LZW"); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.ddCompression.add("item", "ZIP"); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.ddCompression.add("item", "JPEG"); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.ddCompression.onChange = function() { if (this.selection.index == compJPEGIndex) { dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.stQuality.enabled = true; dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.etQuality.enabled = true; } else { dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.stQuality.enabled = false; dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.etQuality.enabled = false; } } dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality = dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.add("group"); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.alignment = 'left'; dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.stQuality = dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.add("statictext", undefined, strLabelQuality); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.etQuality = dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.add("edittext", undefined, exportInfo.tiffJpegQuality.toString()); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.etQuality.preferredSize.width = 30; var index; switch (exportInfo.tiffCompression) { case TIFFEncoding.NONE: index = compNoneIndex; break; case TIFFEncoding.TIFFLZW: index = compLZWIndex; break; case TIFFEncoding.TIFFZIP: index = compZIPIndex; break; case TIFFEncoding.JPEG: index = compJPEGIndex; break; default: index = compNoneIndex; break; } dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.ddCompression.items[index].selected = true; if (TIFFEncoding.JPEG != exportInfo.tiffCompression) { // if not JPEG dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.stQuality.enabled = false; dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.etQuality.enabled = false; } // PDF options dlgMain.pnlFileType.pnlOptions.grpPDFOptions = dlgMain.pnlFileType.pnlOptions.add("group"); dlgMain.pnlFileType.pnlOptions.grpPDFOptions.orientation = 'column'; dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression = dlgMain.pnlFileType.pnlOptions.grpPDFOptions.add("group"); dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.alignment = 'left'; dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.add("statictext", undefined, strLabelEncoding); dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.rbZip = dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.add("radiobutton", undefined, "ZIP"); dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.rbZip.onClick = function() { dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.stQuality.enabled = false; dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.etQuality.enabled = false; } dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.rbJpeg = dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.add("radiobutton", undefined, "JPEG"); dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.rbJpeg.onClick = function() { dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.stQuality.enabled = true; dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.etQuality.enabled = true; } dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality = dlgMain.pnlFileType.pnlOptions.grpPDFOptions.add("group"); dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.alignment = 'left'; dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.stQuality = dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.add("statictext", undefined, strLabelQuality); dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.etQuality = dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.add("edittext", undefined, exportInfo.pdfJpegQuality.toString()); dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.etQuality.preferredSize.width = 30; switch (exportInfo.pdfEncoding) { case PDFEncoding.PDFZIP: dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.rbZip.value = true; break; case PDFEncoding.JPEG: default: dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.rbJpeg.value = true; break; } if (PDFEncoding.JPEG != exportInfo.pdfEncoding) { dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.stQuality.enabled = false; dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.etQuality.enabled = false; } // Targa options dlgMain.pnlFileType.pnlOptions.grpTargaOptions = dlgMain.pnlFileType.pnlOptions.add("group"); dlgMain.pnlFileType.pnlOptions.grpTargaOptions.add("statictext", undefined, strLabelDepth); dlgMain.pnlFileType.pnlOptions.grpTargaOptions.rb16bit = dlgMain.pnlFileType.pnlOptions.grpTargaOptions.add( "radiobutton", undefined, strRadiobutton16bit); dlgMain.pnlFileType.pnlOptions.grpTargaOptions.rb24bit = dlgMain.pnlFileType.pnlOptions.grpTargaOptions.add( "radiobutton", undefined, strRadiobutton24bit); dlgMain.pnlFileType.pnlOptions.grpTargaOptions.rb32bit = dlgMain.pnlFileType.pnlOptions.grpTargaOptions.add( "radiobutton", undefined, strRadiobutton32bit); switch (exportInfo.targaDepth) { case TargaBitsPerPixels.SIXTEEN: dlgMain.pnlFileType.pnlOptions.grpTargaOptions.rb16bit.value = true; break; case TargaBitsPerPixels.TWENTYFOUR: dlgMain.pnlFileType.pnlOptions.grpTargaOptions.rb24bit.value = true; break; case TargaBitsPerPixels.THIRTYTWO: dlgMain.pnlFileType.pnlOptions.grpTargaOptions.rb32bit.value = true; break; default: dlgMain.pnlFileType.pnlOptions.grpTargaOptions.rb24bit.value = true; break; } // BMP options dlgMain.pnlFileType.pnlOptions.grpBMPOptions = dlgMain.pnlFileType.pnlOptions.add("group"); dlgMain.pnlFileType.pnlOptions.grpBMPOptions.add("statictext", undefined, strLabelDepth); dlgMain.pnlFileType.pnlOptions.grpBMPOptions.rb16bit = dlgMain.pnlFileType.pnlOptions.grpBMPOptions.add( "radiobutton", undefined, strRadiobutton16bit); dlgMain.pnlFileType.pnlOptions.grpBMPOptions.rb24bit = dlgMain.pnlFileType.pnlOptions.grpBMPOptions.add( "radiobutton", undefined, strRadiobutton24bit); dlgMain.pnlFileType.pnlOptions.grpBMPOptions.rb32bit = dlgMain.pnlFileType.pnlOptions.grpBMPOptions.add( "radiobutton", undefined, strRadiobutton32bit); switch (exportInfo.bmpDepth) { case BMPDepthType.SIXTEEN: dlgMain.pnlFileType.pnlOptions.grpBMPOptions.rb16bit.value = true; break; case BMPDepthType.TWENTYFOUR:dlgMain.pnlFileType.pnlOptions.grpBMPOptions.rb24bit.value = true; break; case BMPDepthType.THIRTYTWO: dlgMain.pnlFileType.pnlOptions.grpBMPOptions.rb32bit.value = true; break; default: dlgMain.pnlFileType.pnlOptions.grpBMPOptions.rb24bit.value = true; break; } // the right side of the dialog, the ok and cancel buttons dlgMain.grpTopRight = dlgMain.grpTop.add("group"); dlgMain.grpTopRight.orientation = 'column'; dlgMain.grpTopRight.alignChildren = 'fill'; dlgMain.btnRun = dlgMain.grpTopRight.add("button", undefined, strButtonRun ); dlgMain.btnRun.onClick = function() { // check if the setting is properly var destination = dlgMain.etDestination.text; if (destination.length == 0) { alert(strAlertSpecifyDestination); return; } var testFolder = new Folder(destination); if (!testFolder.exists) { alert(strAlertDestinationNotExist); return; } dlgMain.close(true); } dlgMain.btnCancel = dlgMain.grpTopRight.add("button", undefined, strButtonCancel ); dlgMain.btnCancel.onClick = function() { dlgMain.close(false); } dlgMain.defaultElement = dlgMain.btnRun; dlgMain.cancelElement = dlgMain.btnCancel; // the bottom of the dialog dlgMain.grpBottom = dlgMain.add("group"); dlgMain.grpBottom.orientation = 'column'; dlgMain.grpBottom.alignChildren = 'left'; dlgMain.grpBottom.alignment = 'fill'; dlgMain.pnlHelp = dlgMain.grpBottom.add("panel"); dlgMain.pnlHelp.alignment = 'fill'; dlgMain.etHelp = dlgMain.pnlHelp.add("statictext", undefined, strHelpText, {multiline:true}); dlgMain.etHelp.alignment = 'fill'; dlgMain.center(); var result = dlgMain.show(); if (false == result) { return result; // close to quit } // get setting from dialog exportInfo.destination = dlgMain.etDestination.text; exportInfo.fileNamePrefix = dlgMain.etFileNamePrefix.text; exportInfo.selectionOnly = dlgMain.cbSelection.value; exportInfo.fileType = dlgMain.ddFileType.selection.index; exportInfo.icc = dlgMain.cbIcc.value; exportInfo.jpegQuality = dlgMain.pnlFileType.pnlOptions.grpJPEGOptions.etQuality.text; exportInfo.psdMaxComp = dlgMain.pnlFileType.pnlOptions.grpPSDOptions.cbMax.value; index = dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpCompression.ddCompression.selection.index; if (index == compNoneIndex) { exportInfo.tiffCompression = TIFFEncoding.NONE; } if (index == compLZWIndex) { exportInfo.tiffCompression = TIFFEncoding.TIFFLZW; } if (index == compZIPIndex) { exportInfo.tiffCompression = TIFFEncoding.TIFFZIP; } if (index == compJPEGIndex) { exportInfo.tiffCompression = TIFFEncoding.JPEG; } exportInfo.tiffJpegQuality = dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.grpQuality.etQuality.text; if (dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.rbZip.value) { exportInfo.pdfEncoding = PDFEncoding.PDFZIP; } if (dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpCompression.rbJpeg.value) { exportInfo.pdfEncoding = PDFEncoding.JPEG; } exportInfo.pdfJpegQuality = dlgMain.pnlFileType.pnlOptions.grpPDFOptions.grpQuality.etQuality.text; if (dlgMain.pnlFileType.pnlOptions.grpTargaOptions.rb16bit.value) { exportInfo.targaDepth = TargaBitsPerPixels.SIXTEEN; } if (dlgMain.pnlFileType.pnlOptions.grpTargaOptions.rb24bit.value) { exportInfo.targaDepth = TargaBitsPerPixels.TWENTYFOUR; } if (dlgMain.pnlFileType.pnlOptions.grpTargaOptions.rb32bit.value) { exportInfo.targaDepth = TargaBitsPerPixels.THIRTYTWO; } if (dlgMain.pnlFileType.pnlOptions.grpBMPOptions.rb16bit.value) { exportInfo.bmpDepth = BMPDepthType.SIXTEEN; } if (dlgMain.pnlFileType.pnlOptions.grpBMPOptions.rb24bit.value) { exportInfo.bmpDepth = BMPDepthType.TWENTYFOUR; } if (dlgMain.pnlFileType.pnlOptions.grpBMPOptions.rb32bit.value) { exportInfo.bmpDepth = BMPDepthType.THIRTYTWO; } return result; } /////////////////////////////////////////////////////////////////////////////// // Function: hideAllFileTypePanel // Usage: hide all the panels in the common actions // Input: , dlgMain is a global for this script // Return: , all panels are now hidden /////////////////////////////////////////////////////////////////////////////// function hideAllFileTypePanel() { dlgMain.pnlFileType.pnlOptions.grpPSDOptions.hide(); dlgMain.pnlFileType.pnlOptions.grpJPEGOptions.hide(); dlgMain.pnlFileType.pnlOptions.grpTIFFOptions.hide(); dlgMain.pnlFileType.pnlOptions.grpPDFOptions.hide(); dlgMain.pnlFileType.pnlOptions.grpTargaOptions.hide(); dlgMain.pnlFileType.pnlOptions.grpBMPOptions.hide(); } /////////////////////////////////////////////////////////////////////////////// // Function: initExportInfo // Usage: create our default parameters // Input: a new Object // Return: a new object with params set to default /////////////////////////////////////////////////////////////////////////////// function initExportInfo(exportInfo) { exportInfo.destination = new String(""); exportInfo.fileNamePrefix = new String("untitled_"); exportInfo.selectionOnly = false; exportInfo.fileType = psdIndex; exportInfo.icc = true; exportInfo.jpegQuality = 8; exportInfo.psdMaxComp = true; exportInfo.tiffCompression = TIFFEncoding.NONE; exportInfo.tiffJpegQuality = 8; exportInfo.pdfEncoding = PDFEncoding.JPEG; exportInfo.pdfJpegQuality = 8; exportInfo.targaDepth = TargaBitsPerPixels.TWENTYFOUR; exportInfo.bmpDepth = BMPDepthType.TWENTYFOUR; try { exportInfo.destination = Folder(app.activeDocument.fullName.parent).fsName; // destination folder var tmp = app.activeDocument.fullName.name; exportInfo.fileNamePrefix = decodeURI(tmp.substring(0, tmp.indexOf("."))); // filename body part } catch(someError) { exportInfo.destination = new String(""); exportInfo.fileNamePrefix = app.activeDocument.name; // filename body part } } /////////////////////////////////////////////////////////////////////////////// // Function: saveFile // Usage: the worker routine, take our params and save the file accordingly // Input: reference to the document, the name of the output file, // export info object containing more information // Return: , a file on disk /////////////////////////////////////////////////////////////////////////////// function saveFile( docRef, fileNameBody, exportInfo) { switch (exportInfo.fileType) { case jpegIndex: var saveFile = new File(exportInfo.destination + "/" + fileNameBody + ".jpg"); jpgSaveOptions = new JPEGSaveOptions(); jpgSaveOptions.embedColorProfile = exportInfo.icc; jpgSaveOptions.quality = exportInfo.jpegQuality; docRef.saveAs(saveFile, jpgSaveOptions, true, Extension.LOWERCASE); break; case psdIndex: var saveFile = new File(exportInfo.destination + "/" + fileNameBody + ".psd"); psdSaveOptions = new PhotoshopSaveOptions(); psdSaveOptions.embedColorProfile = exportInfo.icc; psdSaveOptions.maximizeCompatibility = exportInfo.psdMaxComp; docRef.saveAs(saveFile, psdSaveOptions, true, Extension.LOWERCASE); break; case tiffIndex: var saveFile = new File(exportInfo.destination + "/" + fileNameBody + ".tif"); tiffSaveOptions = new TiffSaveOptions(); tiffSaveOptions.embedColorProfile = exportInfo.icc; tiffSaveOptions.imageCompression = exportInfo.tiffCompression; if (TIFFEncoding.JPEG == exportInfo.tiffCompression) tiffSaveOptions.jpegQuality = exportInfo.tiffJpegQuality; docRef.saveAs(saveFile, tiffSaveOptions, true, Extension.LOWERCASE); break; case pdfIndex: var saveFile = new File(exportInfo.destination + "/" + fileNameBody + ".pdf"); pdfSaveOptions = new PDFSaveOptions(); pdfSaveOptions.embedColorProfile = exportInfo.icc; pdfSaveOptions.encoding = exportInfo.pdfEncoding; if (PDFEncoding.JPEG == exportInfo.pdfEncoding) pdfSaveOptions.jpegQuality = exportInfo.pdfJpegQuality; docRef.saveAs(saveFile, pdfSaveOptions, true, Extension.LOWERCASE); break; case targaIndex: var saveFile = new File(exportInfo.destination + "/" + fileNameBody + ".tga"); targaSaveOptions = new TargaSaveOptions(); targaSaveOptions.resolution = exportInfo.targaDepth; docRef.saveAs(saveFile, targaSaveOptions, true, Extension.LOWERCASE); break; case bmpIndex: var saveFile = new File(exportInfo.destination + "/" + fileNameBody + ".bmp"); bmpSaveOptions = new BMPSaveOptions(); bmpSaveOptions.depth = exportInfo.bmpDepth; docRef.saveAs(saveFile, bmpSaveOptions, true, Extension.LOWERCASE); break; default: alert(strUnexpectedError); break; } } /////////////////////////////////////////////////////////////////////////////// // Function: zeroSuppress // Usage: return a string padded to digit(s) // Input: num to convert, digit count needed // Return: string padded to digit length /////////////////////////////////////////////////////////////////////////////// function zeroSuppress (num, digit) { var tmp = num.toString(); while (tmp.length < digit) { tmp = "0" + tmp; } return tmp; } // End Layer Comps To Files.js