Inspiring
February 27, 2023
Answered
• Add clickable URL into a javascript created palette
- February 27, 2023
- 3 replies
- 2330 views
Hello -
I would like to add an URL (clickable)
into a small javascript created palette (script is located into the 'Startup Scripts" foler).
The text appears but it isn't clickable.
I (of course) missed something here any idea what?
Thank you 🙂
#target Illustrator
#targetengine main
var myWindow = new Window ("palette");
var myMessage = myWindow.add ("statictext");
myText = "EAN";
myMessage.text = "<a href='https://www.free-barcode-generator.net/ean-13/'>" + myText + "</a>"; // Was "Hello, world!";
myWindow.show();

