Skip to main content
Known Participant
February 3, 2023
Open for Voting

Multi Style Support for text

  • February 3, 2023
  • 0 replies
  • 139 views

Why do we not have the ability to use multiple styles in a line of text?

 

For example: SomeName

mainText = thisLayer.name; //Layer name is "some name"
textOne = text.sourceText.style.setText(mainText.split(" ")[0]).setFont("ArialNarrow");
textTwo = text.sourceText.style.setText(mainText.split(" ")[1]).setFont("Arial-Black");

textOne + textTwo

 

---There's probably an easier way to do that, but you get the idea.

 

 

This is a pretty straightforward concept, and yet we have to do a whole bunch of extra steps and multiple layers to achieve something so basic.

 

Let's make this happen!