以下是我在js文件中加载dll的步骤 var x = callFunction();
function callFunction()
{
var mylib = new ExternalObject ("lib:fullPath:PrintableInt.dll");
var a = new PrintableInt(1);
alert(a);
mylib.unload();
}
我在新的PrintableInt(1)收到错误;说明PrintableInt没有构造函数的行
- 我正在使用adobe ExtendScript Toolkit
- 我正在关注以下链接:Page 200间接访问 https://www.adobe.com/content/dam/Adobe/en/devnet/scripting/pdfs/javascript_tools_guide.pdf
我已经为dll编写了c ++类,如下所示
#pragma once
// PrintableInt.h
#pragma once
#include <string>
class PrintableInt
{ public:
// Constructor
PrintableInt(int value);
// Converts the int into a string.
std::string toString()
const; private:
int m_value;
};
include "stdafx.h"
include "PrintableInt.h"
include <sstream>
PrintableInt::PrintableInt(int value)
{ m_value = value; }
std::string PrintableInt::toString() const
{
std::ostringstream builder;
builder << m_value;
return builder.str();
}
请提供您的反馈。
提前致谢
答案 0 :(得分:0)
Acrobat使用自己的JavaScript变体(Acrobat JavaScript),除了JavaScript Core之外,它与ExtendScript没有多少共同之处。
您必须参考Acrobat JavaScript文档。