Adobe ExtendScript development - How different than regular JavaScript?

后端 未结 2 1350
后悔当初
后悔当初 2021-02-13 13:36

Question

I\'m wondering how different ExtendScript is from JavaScript? Could I theoretically hire a web developer who has JavaScript savvy to develop it without demand

2条回答
  •  情深已故
    2021-02-13 14:20

    ExtendScript is very close to regular JavaScript. They've made a few extensions (e.g., operator overloading) but overall the two are very similar. Adobe products include an IDE called the "ExtendScript Toolkit" (ESTK) that provides a nice environment for writing scripts with an interactive debugger.

    You can create new menu items in Bridge by creating instances of MenuElement. Set the onSelect property of the MenuElement object you create to be the function you want the menu item to perform when you select it. The Bridge CS4 JavaScript Reference guide has all the details.

提交回复
热议问题