I need some help with this. Want to create a Photoshop Panel with a Dropdown menu wich is just a Select Box with different options,
each option must to execute an action. Couldn't found examples, an starting point. I know the basics, how to export the actions to Js, but
what to use to link those options from the html to the jsx file?
Eg:
<select>
<option selected>Action 1</option>
<option>Action 2</option>
<option>Action 3</option>
</select>
Thank you.