Hundreds of features to explore
Games made in Construct
Your questions answered
Trusted by schools and universities worldwide
Free education resources to use in the classroom
Students do not need accounts with us
What we believe
We are in this together
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
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.
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 .
Develop games in your browser. Powerful, performant & highly capable.
Ah, thanks!