/ Published in: ActionScript
Expand |
Embed | Plain Text
function funcToCall( argument:String):Void { trace(argument); } // setTimeout( Function, delay in miliseconds, arguments) setTimeout( funcToCall, 1000, "Time Out")
Comments
Subscribe to comments
You need to login to post a comment.

Runs a specified function after a specified delay (in milliseconds). The setTimeout() function is similar to the setInterval() function, except that setTimeout() calls the function once and then is automatically deleted.