This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Hi,
I searched everywhere for this, but couldn't find any solution. Is there any way to get this as a custom script or trigger alike or is it just plain not possible to style a variable?
Thanks in advance!
Styled texts are basically just strings like "<s val="AB_Description"> HERE COMES YOUR TEXT </s>" They work like HMTL tags.
Best thing is to combine several strings like this:
Stringvariable = ("<s val="AB_Description">" + "YOUR TEXT HERE" + "</s>")
@s3rius: Go
Thanks got it to work with following code:
StringToText("<s val=\"AB_Description\">") + Variable + StringToText("</s>")
:)
Hi,
I searched everywhere for this, but couldn't find any solution. Is there any way to get this as a custom script or trigger alike or is it just plain not possible to style a variable?
Thanks in advance!
Styled texts are basically just strings like "<s val="AB_Description"> HERE COMES YOUR TEXT </s>" They work like HMTL tags.
Best thing is to combine several strings like this:
@s3rius: Go
Thanks got it to work with following code:
StringToText("<s val=\"AB_Description\">") + Variable + StringToText("</s>")
:)