Indesign 插件的外部配置文件

发布于 2024-12-09 02:31:37 字数 118 浏览 0 评论 0原文

我正在为 Indesign CS5 开发一个 JavaScript 插件,我希望能够从外部文件(例如 XML 文件)配置它。 是否可以?我在 Adob​​e 网站或网络搜索上没有找到任何内容...

提前致谢

I'm developing a JavaScript plugin for Indesign CS5 and I would like to be capable of configuring it from an external file (an XML one for example).
Is-it possible? I haven't found anything on Adobe website or web searches...

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拥抱影子 2024-12-16 02:31:37

从技术角度来说,当尝试通过 JavaScript 与 InDesign 交互时,它不被称为插件。 InDesign 插件是用 C++ 开发的,编译为 .InDesignPlugin 文件并在启动时加载到 InDesign 中。

关于实际问题,假设您正在引用 InDesign 脚本(.jsx 格式):是的,这是可能的。最基本的方法是使用 JavaScript File 基类来完成此操作。示例:

File inFile = new File("c:\temp\testfile.txt");
inFile.open("r");
String oneChar = inFile.readch();
String fiveChars = inFile.read(5);
String oneLine = inFile.readln();

但是,使用这种方式解析 xml 配置文件需要相当多的工作。为此,您最好使用其他人制作的库。 jQuery 包含这方面的功能,或者您可以使用更专业的库 XML for

As a technicality, when trying to interact with InDesign via JavaScript, it's not referred to as a plugin. An InDesign plugin is developed in c++, compiled to a .InDesignPlugin file and loaded into InDesign at startup time.

On to the actual question, assuming you are refferring to an InDesign Script (.jsx format): Yes, it's possible. The most basic way is to do it using the base JavaScript File class. Example:

File inFile = new File("c:\temp\testfile.txt");
inFile.open("r");
String oneChar = inFile.readch();
String fiveChars = inFile.read(5);
String oneLine = inFile.readln();

However, with this way it takes quite a bit of work to parse an xml config file. For this purpose you would be better off using a library that someone else made. jQuery includes functionality for this, or you could go for the more specialized library XML for <SCRIPT>

爱本泡沫多脆弱 2024-12-16 02:31:37

是的,可以使用 E4X 语法解析 XML。

Yes, it's possible to parse an XML using E4X syntax.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文