hey guys,
this is a simple setup, but i cannot seem to be able to get it to work, i have one button that activates the timeout, and another that is supposed to cancel it but it is not working, can anyone help?
btn1.onRelease = function(){
var my_timedProcess:Number = setTimeout(my_delayedFunction, 2000, "two second delay");
}
function my_delayedFunction (arg1) {
trace(arg1);
}
btn2.onRelease = function(){
clearTimeout(my_timedProcess);
}