本文介绍了的Adobe ExtendScript开发 - 如何比普通的JavaScript有什么不同?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不知道ExtendScript如何不同的是,从JavaScript?我可以从理论上聘请一个Web开发谁拥有精明的JavaScript开发它没有对他们的一部分,要求学习过量?

I'm wondering how different ExtendScript is from JavaScript? Could I theoretically hire a web developer who has JavaScript savvy to develop it without demanding an excessive amount of learning on their part?

我工作的一个媒体数据库(或所谓的多媒体图书馆)项目,它是基于XMP(可扩展元数据平台)。用于管理元数据和关键字提取的逻辑工具似乎是Adobe Bridge中,但我需要外包的一对夫妇的脚本的发展增添一些关键功能,桥,主要用于服务器,存储控制的关键字词汇接口。

I'm working on a media database (or a so-called "multimedia library") project and it is based on XMP (the eXtensible Metadata Platform). The logical tool for administering the metadata and keywording seems to be Adobe Bridge, however I need to contract out the development of a couple of scripts to add a few key functions to Bridge, mainly for interfacing with a server-stored controlled keyword vocabulary.

高层管理人员,在他们无穷的智慧,已决定把一个软件α/β测试人员和Adobe重型升降机[我]负责开发该项目发现的是去了解这一点的最好办法。虽然我知道我需要做的,我不能确定谁能够真正做到这一点。

Upper management, in their infinite wisdom, has decided that putting a software alpha/beta tester and Adobe heavy-lifter [me] in charge of developing the project discovery is the best way to go about this. Whilst I know what I need done, I'm unsure who can actually do it.

令人遗憾的是,我的编程知识仅限于C ++,XML,苹果脚本和网络语言(可惜没有包括JavaScript),所以我的出路在杂草,当谈到关于JavaScript。问题

Regrettably, my programming knowledge is limited to C++, XML, Apple Script and web languages (unfortunately not including JavaScript), so I'm way out in the weeds when it comes to questions about JavaScript.

大桥开发中心

的Adobe有一个方便的SDK在那里关于这个问题,但我真的不能使整体画面多大意义。大部分的Adobe用户对用户的论坛内容是旧的或不相关的。

Adobe has a handy SDK out there on the subject, but I can't really make much sense of the overall picture. Much of the Adobe user-to-user forum content is old or unrelated.

我需要添加到菜单栏有三个选项的菜单。这三个选项都会使用清除并导入功能可以在桥的关键词面板使用无论是FTP或HTTP对象的数据库服务器导入1 3不同的制表符分隔文本文件。

I need a menu added to the menu bar with three options. The three options would all use "Clear and Import" function possible in Bridge's Keywords panel to import 1 of 3 different tab-delimited text files from the database server using either the FTP or HTTP object.

的阅读,我在桥SDK和JavaScript的指南进行提示菜单项可以添加为我下面清晰的图像中所展示。此外,我得到了一个非常粗糙版的清除并导入方法的工作,作为一个启动脚本,不过,我想可以通过点击相应的菜单项来调用它们的飞行。

The reading I've done in the Bridge SDK and JavaScript guide suggests that menu items can be added as I've shown in the image below for clarity. Additionally, I've managed to get a very rough version of the "Clear and Import" method to work as a startup script, however I'd like to be able to call them on the fly by clicking on the appropriate menu entry.

对于图像的大图,请点击这里

For a larger view of the image, click here

推荐答案

如果这是什么样用于老的Flash IDE的脚本,那么我认为这只是直接的JavaScript / ECMAScript的。唯一的区别是你必须avaialble的API。我希望任何人谁是很好用JavaScript就能够相当快地把它捡起来。

If it's anything like the scripting used for the old Flash IDE, then I think it's just straight javascript/ECMAScript. The only real difference is the APIs you have avaialble. I expect anyone who's good with javascript would be able to pick it up fairly quickly.

这篇关于的Adobe ExtendScript开发 - 如何比普通的JavaScript有什么不同?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 19:52