I can't manage to set the font in the html object. I use Set HTML to "<font face="fontname">test" but it says whatever's in the second set of quotations (the font name) is not a recognised system expression or usable object name. "<font size="5">test" results in '5' is not allowed after '<font size='.
If that's not possible, consider this a request to either be able to set the font/size/etc in the html object or to be able to do that via the text object on a per-word basis, so I could write
this.
Develop games in your browser. Powerful, performant & highly capable.
If you're going to use " inside expressions, you have to double it up, eg:
"<font face=""Arial"">test"
Otherwise, the parser would have no way of knowing whether you intended to end the expression or not .
Ah, thanks!