Skip to main content
visual_Dream5CAA
Known Participant
October 30, 2023
Question

Script jsx to plugins with simple ui interface

  • October 30, 2023
  • 1 reply
  • 423 views

Please, I am new to scripting, and I have created scripts with JSX for Illustrator. I have four scripts, and I want to know how to turn them into plugins that feature a simple interface with four buttons, each corresponding to a script. Is it possible to merge all the scripts into a single UI script with a user interface using JSX?

This topic has been closed for replies.

1 reply

Sergey Osokin
Inspiring
October 30, 2023

You can create a dialog box using the ScriptUI module. Check this topic https://community.adobe.com/t5/photoshop-ecosystem-discussions/interactive-scriptui-builder/td-p/10481030. Create a call of a separate function for each button click in the dialog box.

 

For plugins, you would have to learn C++. You can also create extensions using ExtendScript and interface to html+css, but that's not an easy way either.