สคริปต์ชุดผู้วาดภาพประกอบให้ฉันไม่พบไฟล์ที่ตรงกันใน Mac Mountain lion


0

นี่คือตัวอย่างสคริปต์ที่ฉันใช้ ด้วยเหตุผลบางอย่างเมื่อฉันเรียกใช้ภายใน Illustrator จากเมนูสคริปต์มันทำให้ฉันไม่พบไฟล์ที่ตรงกันในกล่องโต้ตอบ

มีอะไรเปลี่ยนแปลงบ้างไหม? ฉันใช้ Illustrator CS5 บน Macbook กับ Mountain Lion

ฉันลองชุดสคริปต์หลายชุดและทุกอย่างก็ทำให้ฉันมีข้อผิดพลาดเหมือนกัน

var destFolder, sourceFolder, files, fileType, sourceDoc, targetFile, pngExportOpts;
// Select the source folder.
var defaultFolder = new Folder ('~/Desktop');
sourceFolder = defaultFolder.selectDlg('Please select your Folder of Illustrator files');
if ( sourceFolder != null )
{
files = new Array();
fileType = prompt( 'Select type of Illustrator files to you want to process. Eg: *.ai', ' ' );
// Get all files matching the pattern
files = sourceFolder.getFiles( fileType );
if ( files.length > 0 )
{
// Get the destination to save the files
destFolder = Folder.selectDialog( 'Select the folder where you want to save the converted PNG files.', '~' );
for ( i = 0; i < files.length; i++ )
{
sourceDoc = app.open(files[i]); // returns the document object
// Call function getNewName to get the name and file to save the pdf
targetFile = getNewName();
// Call function getPNGOptions get the PNGExportOptions for the files
pngExportOpts = getPNGOptions();
// Export as PNG
sourceDoc.exportFile( targetFile, ExportType.PNG24, pngExportOpts );
sourceDoc.close(SaveOptions.DONOTSAVECHANGES);
}
//alert( 'Files are saved as PNG in ' + destFolder );
}
else
{
alert( 'No matching files found' );
}
}
/*********************************************************
getNewName: Function to get the new file name. The primary
name is the same as the source file.
**********************************************************/
function getNewName()
{
var ext, docName, newName, saveInFile, docName;
docName = sourceDoc.name;
ext = '.png'; // new extension for png file
newName = "";
for ( var i = 0 ; docName[i] != "." ; i++ )
{
newName += docName[i];
}
newName += ext; // full png name of the file
// Create a file object to save the png
saveInFile = new File( destFolder + '/' + newName );
return saveInFile;
}
/*********************************************************
getPNGOptions: Function to set the PNG saving options of the
files using the ExportOptionsPNG24 object.
**********************************************************/
function getPNGOptions()
{
// Create the PDFSaveOptions object to set the PDF options
var pngExportOpts = new ExportOptionsPNG24();
// Setting PNGExportOptions properties. Please see the JavaScript Reference
// for a description of these properties.
// Add more properties here if you like
pngExportOpts.antiAliasing = true;
pngExportOpts.artBoardClipping = false;
pngExportOpts.horizontalScale = 350.0; // scaling to 350%
pngExportOpts.saveAsHTML = false;
pngExportOpts.transparency = false;
pngExportOpts.verticalScale = 350.0; // scaling to 350%
return pngExportOpts;
}

คำตอบ:


0

ด้วยเหตุผลบางอย่างสิ่งนี้ใช้ได้ ... เมื่อฉันใช้พา ธ ที่เริ่มต้นจากไดเรกทอรีราก

sourceFolder = Folder('/Users/scotty/vectors')
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.