Making Text Move

How does one make text move in Game Lab?

Hi jcurtner,
To make text move horizontally, set a variable like: var Words = 0 (Do not use “text”).
In The Draw Loop add: Words = Words + 1 (use -1 to move text to the left).
In the text command, replace the value of x with Words: text (“your moving text”, Words, 50);
I hope that helps!