So simple... please help
![johnnysin](http://forums.gamesalad.com/applications/dashboard/design/images/defaulticon.png)
What i'd like to do is very simple:
you have an actor
first time you click it - changes image
second time - changes to another image
third time - destroy
it's a speech balloon. for some reason i can't get past the first click!
How am i supposed to put the rules and attributes and all that?
you have an actor
first time you click it - changes image
second time - changes to another image
third time - destroy
it's a speech balloon. for some reason i can't get past the first click!
How am i supposed to put the rules and attributes and all that?
Comments
self.clicks
If touch is pressed change clicks to clicks+1
If click = 1
image 1
If click = 2
image 2
If click > 2
Destroy
Whenever screen is pressed change click count to click count + 1. When click count = 1, change image, when = 2, change another imge, when = 3, destroy. Does that help?