Hey, I was just wondering, how do you write an integer variable into a text object with a string e.g.
"This is a number"+global('varNumber')
It just displays the string...
Develop games in your browser. Powerful, performant & highly capable.
Replace the "+" with "&".
"This is a number "&global('varNumber')
That'll work.
And welcome to the forums!
Replace the "+" with "&". "This is a number "&global('varNumber') That'll work.
Thanks that works,
Thanks