Is it possible to type bold letters using XType?

This is just a small bit of a bigger macro

{
      "Command": "XType",
      "Target": "This should be bold. This is just regular font.",
      "Value": ""
    }

Currently all the text is regular. Is it possible to highlight small bits using Bold letters?

My goal would be to display the following text:

This should be bold. This is just regular font.

Many thanks

How do you type bold when you manually enter the text? For example, in this forum you could do it by adding asteriks ** to it: **text** = text.

@Plankton thanks for your reply.
I know how to use bold letters in the forum :grinning: – my question is regarding the command XType using the code that it’s displayed in the opening post.

{
      "Command": "XType",
      "Target": "This should be bold. This is just regular font.",
      "Value": ""
    }

Is it possible to format that text using XType? (i.e. bold letters, break lines?)

Ty

Line breaks: Yes (but see this bug: How to create Line breaks in a variable - #2 by admin ). Workaround: Use ${KEY_ENTER}

Bold: Xtype simulates keyboard presses. So whatever you do on a keyboard to create bold text, use the same method with XType.

Got it! I didn’t understand your reply at first instance. Sorry and thanks!