Example: Player.Movement.Horizontal.Right
I guess you would have to check each token and make conditions about what to do.
For example.
compare 2 values
tokenat(mytextbox,0,".") = "Player" then Pick player sprite.
sub event (1)
tokenat(mytextbox,1,".")= "Movement"
sub sub event (2a)
tokenat(mytextbox,2,".")= "Horizontal"
sub sub sub event (3a)
tokenat(mytextbox,3,".")= "Right" then move player sprite.x+1
tokenat(mytextbox,3,".")= "Left" then move player sprite.x-1
sub sub event (2b)
tokenat(mytextbox,2,".")= "Vertical"
sub sub sub event (3b)
tokenat(mytextbox,3,".")= "Up" then move player sprite.y-1
tokenat(mytextbox,3,".")= "Down" then move player sprite.y+1
When I attempt to put it in as written (with the items changed to the correct terms and add a .text after it) I get a message saying "Type mismatch, this parameter does not take a number." I have the line as
tokenat(ChatTest.Text,0,".") = "Lander"