is there a way in C2 to make a hyperlink on text inside of a text object, not using the browser plugin.
example: this link
the html equivalent is "<a href="URL">text</a>"
like that ^ <img src="smileys/smiley1.gif" border="0" align="middle">
Develop games in your browser. Powerful, performant & highly capable.
<script>
var str = "Cool Link!";
document.write(str.link("http://www.awesomesite.com"));
</script>