I am trying to program a game for small children and have it when you mouse over a chosen sprite it adds 1 to score. Tried using the when mouse touching add score 1 but it keeps adding as the mouse touches. I will need this to continue to add only 1 as each selected sprite is moused on. Do not want to have to push down mouse because this is for baby's. Please help and thank you!!!
Offline
ok the only way i can think is if you do it and broadcast something so the other object hides then add 1 to score
hope it helps
Offline
Or you could use a wait until e.g.
when gf clicked forever if <touching [sprite 1 v]?> change [score v] by [1] wait until <not<touching [sprite 1]?>> if <touching [sprite 2 v]?> change [score v] by [1] wait until <not<touching [sprite 2]?>>
Offline
jamiewinter wrote:
ok the only way i can think is if you do it and broadcast something so the other object hides then add 1 to score
hope it helps![]()
Use your idea thanks. All the ideas are great and would work but the broadcast is great because i can use it for every. Thank you guys!!
Offline