PHOTOSHOPでレイヤーを連続保存したいのですが。

はじめまして。
PHOTOSHOP7.0を使っています。

質問なのですが、各レイヤーをそれぞれ.JPGで書き出したいのですがアクションを使って連続別名保存などできるのでしょうか?
できれば、各レイヤーに名前を付けているのでその名前で保存したいのですが。
1つ1つやればいいのですが、膨大にあって困っています。
是非よろしくお願いします。
» if (documents.length > 0){
var docRef = activeDocument;
var myPath = docRef.path + "/";

for (i = 1; i < docRef.layers.length; i++){
var MyLayName = docRef.layers[i-1].name;
if ( !docRef.saved ){
alert( "You must save the document before executing this script" );
}else{
// Save as Photoshop.
psFile = new File( myPath.toString() + MyLayName );
psSaveOptions = new PhotoshopSaveOptions();
psSaveOptions.alphaChannels = true;
psSaveOptions.annotations = true;
psSaveOptions.embedColorProfile = true;
psSaveOptions.layers = true;
psSaveOptions.maximizeCompatibility = true;
psSaveOptions.spotColors = true;
docRef.saveAs(psFile, psSaveOptions, true, Extension.UPPERCASE);

//docRef.activeLayer.remove();//そのレイヤーを削除
docRef.layers[i-1].visible = false;//そのレイヤーを隠す
}
}
}else{
alert ("You must have at least one open document to run this script");
}

サンプルを見れば、初めて書く私でもこれくらいはできる。
あんたも努力すればぁ
ファイル名の日本語処理がおかしいんだけど、なんで?

このページをシェア