1 // makeswf -v 7 -r 1 -o settimeout-clear-self-7.swf settimeout-clear-self.as
3 trace
("Test clearing timeout in it's own callback function");
5 function clear_self
() {
6 trace
("clearing timeout");
7 clearTimeout
(timeout
);
8 loadMovie
("FSCommand:quit", "");
11 timeout
= setTimeout
(clear_self
, 50);