我正在使用Photoshop CS6,但收到一条错误消息,提示“命令“放置”当前不可用,executeAction(idPlc,desc3,DialogModes.NO);
我尝试将extendscript与已记录的动作一起使用。
以下代码是我试图用来放置文件的代码。 repFile是文件名位置。
function loadFile(repFile){
var sourceFile= new File(repFile);
var idPlc = charIDToTypeID( "Plc " );
var desc3 = new ActionDescriptor();
var idnull = charIDToTypeID( "null" );
desc3.putPath( idnull, sourceFile);
var idFTcs = charIDToTypeID( "FTcs" );
var idQCSt = charIDToTypeID( "QCSt" );
var idQcsa = charIDToTypeID( "Qcsa" );
desc3.putEnumerated( idFTcs, idQCSt, idQcsa );
executeAction( idPlc, desc3, DialogModes.NO );
}