Hi, I followed the Ghost Shooter tutorial and everything works besides the score display. The text property of the text object is as follows:
"Score : " &Score
I've tried '& Score' and '&Score', but it won't display the contents of the score variable. Here's the capx to help illustrate the problem:
mediafire.com
Develop games in your browser. Powerful, performant & highly capable.
AArgh... You can't put that in properties. The property box will take all that you enter in it as a string, it won't parse any variable.
You have to write that kind of stuff in event
System: Every tick -> Text: set Text to "Score :"&Score
Ah, that would explain it.
Thanks!