setTimeout in flash 7

As you might know Flash 8 was reinforced with the setTimeout functionality. You can now tell flash 8 player to run a function once after a given milliseconds/interval: setTimeout(trace, 1000, “string to trace”); will trace the string “string to trace” after 1 second. But what if you’re »