turn off touch

hey guys,
is there a way to turn the touch off until an actor collides with some other actor so that the players touches don't spawn new actors? I have it set up right now that I want to pan around and show the level without the player being able to do anything the panning is completed. any thoughts? thanks.
SM
is there a way to turn the touch off until an actor collides with some other actor so that the players touches don't spawn new actors? I have it set up right now that I want to pan around and show the level without the player being able to do anything the panning is completed. any thoughts? thanks.
SM
Comments
have all the rules that you want disabled at first in a rule that says if attribute touchOn=1
then whenever you want to turn them on after a touch or collide behavior, just change attribute touchOn to 1
cheers
OK so first off make your new game attribute called touchOn and have it set to 0.
Now next say you have a rule when touch is pressed spawn actor or something like that, make a new rule that says when attribute touchOn=1. Then take the other when touch is pressed spawn rule and put it inside the new touchOn rule. Now do that to all the rules you want to be disabled at first.
Then whenever you want them to turn on use a change attribute behavior and change attribute touchOn to 1.