// (c) Copyright 2005. Adobe Systems, Incorporated. All rights reserved. // This script will apply each comp and then export to a PDF Presentation // 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/LayerCompsToPDF/Title=Layer Comps To PDF"); var strButtonRun = localize("$$$/JavaScripts/LayerCompsToPDF/Run=Run"); var strButtonCancel = localize("$$$/JavaScripts/LayerCompsToPDF/Cancel=Cancel"); var strHelpText = localize("$$$/JavaScripts/LayerCompsToPDF/HelpText=Please specify the location where flat image files should be saved. Once Photoshop has saved these files, it will launch PDF Presentation in order to convert each file into a PDF page."); var strLabelDestination = localize("$$$/JavaScripts/LayerCompsToPDF/Destination=Destination:"); var strButtonBrowse = localize("$$$/JavaScripts/LayerCompsToPDF/Browse=Browse..."); var strCheckboxSelectionOnly = localize("$$$/JavaScripts/LayerCompsToPDF/Selected=Selected Layer Comps Only"); var strPanelSlideShowOptions = localize("$$$/JavaScripts/LayerCompsToPDF/SlideShow=Slideshow Options:"); var strLabelAdvaceEvery = localize("$$$/JavaScripts/LayerCompsToPDF/AdvanceEvery=Advance Every"); var strLabelSecond = localize("$$$/JavaScripts/LayerCompsToPDF/Seconds=Seconds"); var strLabelLoopAfterLastPage = localize("$$$/JavaScripts/LayerCompsToPDF/Loop=Loop after last page"); var strAlertSpecifyDestination = localize("$$$/JavaScripts/LayerCompsToPDF/SpecifyDestination=Please specify destination."); var strTitleSelectDestination = localize("$$$/JavaScripts/LayerCompsToPDF/SelectDestination=Select Destination"); var strAlertDocumentMustBeOpened = localize("$$$/JavaScripts/LayerCompsToPDF/OneDocument=You must have a document open to export!"); var strAlertNoLayerCompsFound = localize("$$$/JavaScripts/LayerCompsToPDF/NoComps=No layer comps found in document!"); var strAlertWasSuccessful = localize("$$$/JavaScripts/LayerCompsToPDF/Success= was successful."); var strAlertFailed = localize("$$$/JavaScripts/LayerCompsToPDF/Fail= failed."); main(); /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// // Function: settingDialog // Usage: create the main dialog // Input: settings to initialize the dialog with , ExportInfo object // Return: true if ok, false if cancel /////////////////////////////////////////////////////////////////////////////// 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 contains four lines 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 = btnBrowseOnClick; // -- the third line in the dialog dlgMain.cbSelection = dlgMain.grpTopLeft.add("checkbox", undefined, strCheckboxSelectionOnly); dlgMain.cbSelection.value = exportInfo.selectionOnly; // -- the fourth line is a panel dlgMain.pnlSlideShow = dlgMain.grpTopLeft.add("panel"); dlgMain.pnlSlideShow.orientation = 'column'; dlgMain.pnlSlideShow.alignChildren = 'left'; dlgMain.pnlSlideShow.alignment = 'fill'; dlgMain.pnlSlideShow.text = strPanelSlideShowOptions; // -- the fifth line, three things in row orientation dlgMain.grpFifthLine = dlgMain.pnlSlideShow.add("group"); dlgMain.grpFifthLine.orientation = 'row'; dlgMain.grpFifthLine.alignChildren = 'center'; dlgMain.grpFifthLine.alignment = 'left'; dlgMain.cbAdvance = dlgMain.grpFifthLine.add( "checkbox", undefined, strLabelAdvaceEvery ); dlgMain.cbAdvance.value = exportInfo.ssoAdvance; dlgMain.etSeconds = dlgMain.grpFifthLine.add("edittext", undefined, exportInfo.ssoSeconds.toString()); dlgMain.etSeconds.preferredSize.width = 25; dlgMain.grpFifthLine.add("statictext", undefined, strLabelSecond); dlgMain.cbLoop = dlgMain.pnlSlideShow.add( "checkbox", undefined, strLabelLoopAfterLastPage ); // 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 = btnRunOnClick; dlgMain.btnCancel = dlgMain.grpTopRight.add("button", undefined, strButtonCancel ); dlgMain.btnCancel.onClick = function() { var d = this; while (d.type != 'dialog') { d = d.parent; } d.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; } // get setting from dialog exportInfo.destination = dlgMain.etDestination.text; exportInfo.selectionOnly = dlgMain.cbSelection.value; exportInfo.ssoAdvance = dlgMain.cbAdvance.value; exportInfo.ssoSeconds = dlgMain.etSeconds.text; exportInfo.ssoLoop = dlgMain.cbLoop.value; var pdf = ".pdf"; if ((exportInfo.destination.length - pdf.length) != exportInfo.destination.toLowerCase().lastIndexOf(pdf )) { exportInfo.destination += pdf; // add ".pdf" if there is no PDF extension } return result; } /////////////////////////////////////////////////////////////////////////////// // Function: btnRunOnClick // Usage: routine is assigned to the onClick method of the run button // Input: checks the dialog params and closes with the dialog with true // Return: , dialog is closed with true on success /////////////////////////////////////////////////////////////////////////////// function btnRunOnClick() { // check if the setting is properly var destination = dlgMain.etDestination.text; if (destination.length == 0) { alert(strAlertSpecifyDestination); return; } // find the dialog in this auto layout mess var d = this; while (d.type != 'dialog') { d = d.parent; } d.close(true); } /////////////////////////////////////////////////////////////////////////////// // Function: btnBrowseOnClick // Usage: routine is assigned to the onClick method of the browse button // Input: pop the selectDialog, and get a folder // Return: , sets the destination edit text /////////////////////////////////////////////////////////////////////////////// function btnBrowseOnClick() { var selFile = File.saveDialog(strTitleSelectDestination); if ( selFile != null ) { dlgMain.etDestination.text = selFile.fsName; } dlgMain.defaultElement.active = true; return; } /////////////////////////////////////////////////////////////////////////////// // Function: ExportInfo // Usage: object for holding the dialog parameters // Input: // Return: object holding the export info /////////////////////////////////////////////////////////////////////////////// function ExportInfo() { this.destination = new String(""); this.tempLocation = new String(""); this.selectionOnly = false; this.ssoAdvance = true; this.ssoSeconds = 5; this.ssoLoop = false; } /////////////////////////////////////////////////////////////////////////////// // Function: setTempFolder // Usage: create a temp folder using random numbers // Input: export info object // Return: tempLocation of the object is set /////////////////////////////////////////////////////////////////////////////// function setTempFolder(exportInfo) { var folder = Folder.temp; // File(exportInfo.destination).parent; while(true) { // set temporary folder with random name exportInfo.tempLocation = folder.toString() + "/temp" + Math.floor(Math.random()*10000); var testFolder = new Folder(exportInfo.tempLocation); if (!testFolder.exists) { testFolder.create(); break; } } } /////////////////////////////////////////////////////////////////////////////// // Function: zeroSuppress // Usage: create a string padded with 0's // Input: num and number of digits to pad // Return: zero padded num /////////////////////////////////////////////////////////////////////////////// function zeroSuppress (num, digit) { var tmp = num.toString(); while(tmp.length < digit) tmp = "0" + tmp; return tmp } /////////////////////////////////////////////////////////////////////////////// // Function: main // Usage: the main routine for this JavaScript // Input: // Return: /////////////////////////////////////////////////////////////////////////////// function main() { if ( app.documents.length <= 0 ) { alert( strAlertDocumentMustBeOpened ); return; } var exportInfo = new ExportInfo(); if (false == settingDialog(exportInfo)) { return; // quit } try { var docName = app.activeDocument.name; setTempFolder(exportInfo); 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; var tempFileList = new Array(); // array of File var exportFileCount = 0; 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 = 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); var tempFile = exportInfo.tempLocation + "/" + fileNameBody + ".psd"; tempFile = new File( tempFile ); tempFileList[exportFileCount] = tempFile; duppedDocument.saveAs( tempFile ); duppedDocument.close(); exportFileCount++; } if (exportFileCount == 0) { alert(strTitle + strAlertFailed ); return; } // run PDF Presentation var presentationOptions = new PresentationOptions(); presentationOptions.presentation = true; presentationOptions.view = true; presentationOptions.autoAdvance = exportInfo.ssoAdvance; presentationOptions.interval = exportInfo.ssoSeconds; presentationOptions.loop = exportInfo.ssoLoop; app.makePDFPresentation(tempFileList, File(exportInfo.destination), presentationOptions); // delete temporary files for ( compsIndex = 0; compsIndex < exportFileCount; compsIndex++ ) { tempFileList[compsIndex].remove(); } // delete temprary folder var tempFolder = new Folder(exportInfo.tempLocation); tempFolder.remove(); alert(strTitle + strAlertWasSuccessful); } } catch (e) { alert(e); } }