Originally posted by: hellman69
Without seeing what you are trying to do, I'll throw a thought out there. Declare a global variable (blRun) set to true.
For the Stop button, have an onClick action that sets blRun = false;
For the Start function, simply add checks for blRun. If it's false, then return. If true, keep going.
Trevor