I've a global variable A to "Hello" and global variable B to "World".
Now I want to add A and B to global variable C.
I tried setting C to A+B but on text output C displays "A+B"
How do I get C to show "Hello World" instead?
Develop games in your browser. Powerful, performant & highly capable.
It's & to concatenate strings.
For example :
A & " " & B
Here you go.
C=A+B.capx
Perfect! Thank you.
I knew there it had to be something simple I was missing.
<img src="smileys/smiley32.gif" border="0" align="middle" />
what happened to the C=A+B.capx file?