无法从文件After Effects / JavaScript中检索文本字符串

时间:2017-02-16 10:07:50

标签: javascript after-effects

我正在尝试使用JS扩展程序从文件中提取文本:

try{
    myPath = "c:\source.txt";
    $.evalFile(myPath);
    eval(thisComp.name)[0];
}catch(err){
    "MISSING";
}

这些是source.txt文件中的字符串:

var comp1 = ["Text 0", "Text 1", "Text 2"];
var comp2 = ["Text 0", "Text 1", "Text 2"];
var comp3 = ["Text 0", "Text 1", "Text 2"];

它可以在我的电脑上使用,但不能在我的工作站上使用。

0 个答案:

没有答案