Thread: Help with Pause
View Single Post
  #3 (permalink)  
Old 09-28-2007, 10:50 PM
marco marco is offline
Member
 
Join Date: Jul 2007
Posts: 23
marco is on a distinguished road
if you want a certain button could start a loop which never ends, and another button could break the loop

if (//button sequence)
while (true)
{
if (//button sequence)
break;
}
Reply With Quote