Bridgetalk - 使用变量保存的 adobe 脚本,正确引用,用字符串脚本中的变量替换字符串

Bridgetalk - adobe scripting saving with variables, proper quoting, replace string with variable in string script

我在保存文件时遇到问题,我不知道为什么它不起作用。这是原始代码。我相信我错误地注释掉了变量或者 adobe 语法不正确。有人对此有经验吗? (损坏的部分:,app.activeDocument.saveAs(File('"+psdpath+"'/' + doc.name.replace('PLACEHOLDER', '"+parentdirectory+"'))";)。报价变体很重要,否则无法正确发送给插图画家。

完整脚本:

#target photoshop
//run action in photoshop
app.doAction ("action name", "action set name");
//get path of the open document
var psdpath = activeDocument.path.fsName;
//get directory name of psd, to use in filename later
var parentdirectory = activeDocument.path.name;

//start bridgetalk
var bt = new BridgeTalk;
//targets version 25. v26 crashes if window isnt active at run
        bt.target = "illustrator-25";
//run action in illustrator (which opens an eps w/linked file and performs certain tasks) and then save the document
        var script = "app.doScript('action name', 'action set name'),app.activeDocument.saveAs(File('"+psdpath+"'/' + doc.name.replace('PLACEHOLDER', '"+parentdirectory+"'))";
//the entire action must be within double quotes        
//     var script = alert("test", "this sends alert to photoshop");
//     var script = "alert('test', 'this sends alert to illustrator'),alert('"+psdpath+"', '"+psdpath+"')"; //psdpath is properly sent to illustrator
        bt.body = script;
        bt.send();

更新 03/03/2022 部分工作(字符串替换不起作用):

#target photoshop
var psdpath = activeDocument.path.fsName;
var parentdirectory = activeDocument.path.name;
app.doAction ("Photoshop Action Name", "Photoshop action Set");
var strScript = """
app.doScript("Illustrator Action Name", "Illustrator Action Set"); 
var doc = app.activeDocument;  
if (documents.length > 0){    
    var saveOpts = new EPSSaveOptions(); 
    saveOpts.embedLinkedFiles = embedImage = false;
    saveOpts.embedAllFonts = embedFont = true;
    saveOpts.includeDocumentThumbnails = false;
    saveOpts.saveMultipleArtboards = false;
        fullDocName = doc.fullName;
        for (i=0; i<doc.layers.length; i++){
            if (i-1<0) doc.layers[i].visible = true;
            else {
                doc.layers[i-1].visible = false;
                doc.layers[i].visible = true;
            }
            if (doc.layers[i].locked == false) {    
                docName = doc.layers[i].name+".eps";    
                var saveName = new File ( psdpathh + "/" + parentdirectoryy + ".eps");
                doc.saveAs( saveName, saveOpts );
            }
        }
    }
""";
var editedScript = strScript.replace("psdpathh", psdpath);
var editedScript2 = editedScript.replace("parentdirectoryy", parentdirectory);
BridgeTalk.bringToFront("illustrator"); 
var bt = new BridgeTalk;
        bt.target = "illustrator-25";
        bt.body = editedScript2;
        bt.send();

猜测。

也许这里的...'action set name'),app.activeDocument...应该是;而不是,:

var script = "app.doScript('action name', 'action set name'); app.activeDocument.saveAs(File('"+psdpath+"'/' + doc.name.replace('PLACEHOLDER', '"+parentdirectory+"'))";
#target photoshop
app.doAction ("ps action name", "ps action set"); //replace w your action details
var psdpath = activeDocument.path.fsName;
var parentdirectory = activeDocument.path.name;
var strScript = """
app.doScript("illustrator action name", "illustrator action set"); //replace w your action details
var doc = app.activeDocument;
if (documents.length > 0){
    // Create the illusrtratorSaveOptions object to set the AI options
    var saveOpts = new EPSSaveOptions();
    // Setting IllustratorSaveOptions properties. 
    saveOpts.embedLinkedFiles = embedImage = true;
    saveOpts.embedAllFonts = embedFont = true;
    saveOpts.includeDocumentThumbnails = true;
    saveOpts.saveMultipleArtboards = false;
        fullDocName = doc.fullName;
        for (i=0; i<doc.layers.length; i++){
            if (i-1<0) doc.layers[i].visible = true;
            else {
                doc.layers[i-1].visible = false;
                doc.layers[i].visible = true;
            }
            if (doc.layers[i].locked == false) {    
                docName = doc.layers[i].name+".eps";    
                var saveName = new File ( "%1/%2 -- suffix.eps"); //replace " -- suffix" to whatever, keep .eps 
                doc.saveAs( saveName, saveOpts );
            }
        }
    }
""";
var editedScript = strScript.replace("%1", psdpath).replace("%2", parentdirectory);
BridgeTalk.bringToFront("illustrator-25"); // switch view to illustrator to prevent crashing 
var bt = new BridgeTalk;
//declare your illustrator version
bt.target = "illustrator-25";         
bt.body = editedScript;
bt.send();