Skip to main content
Inspiring
September 4, 2023
Answered

How to create a ScriptUI style GUI with CEP

  • September 4, 2023
  • 2 replies
  • 716 views

I am in the process of studying CEP as it was recommended to me that I should move from ScriptUI to CEP.

 

 

 

 

<p>Hello world</p>
<button>Send</button>

 

 

 

I tried putting the above in the HTML, but the text is black and the font is weird.

The buttons are also far removed from the Ae standard.

Is it possible to easily match the style of the panel as I created it in ScriptUI?

This topic has been closed for replies.
Correct answer Arie Stavchansky

One way to change things up is through stylesheets.  You can use Adobe's Spectrum UI kit to help you accomplish that:

https://spectrum.adobe.com/

2 replies

Justin Taylor-Hyper Brew
Community Expert
Community Expert
September 4, 2023

Just need to learn CSS to get all the styles to look the way you want:

 

https://www.w3schools.com/Css/

 

And like Arie mentioned Spectrum is the standard that most Adobe apps use, some more strictly than others. So you can use that as a reference to get you most of the way there.

Arie StavchanskyCorrect answer
Legend
September 4, 2023

One way to change things up is through stylesheets.  You can use Adobe's Spectrum UI kit to help you accomplish that:

https://spectrum.adobe.com/

Inspiring
September 6, 2023

Thank you!