Re: Stopping a timed loop from an event structure with multipleevents. Why can't I make this work? Don't put the timed while loop and the event structure in the same overall while loop. What happens is that when you execute the OK, the event structure fires and basically ends. The timed loop is still running up top. You won't get around to the event structure for it to sit and wait for any more events until the overall while loop stops, and that won't happen until the timed loop stops.
So you have a catch 22, you need the stop button to stop the top loop, but the stop button won't do anything until the top loop ends and the overall loop comes back around to the event structure again.:smileywink: |