/ Published in: ActionScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function funcToCall( argument:String):Void { trace(argument); } // setTimeout( Function, delay in miliseconds, arguments) setTimeout( funcToCall, 1000, "Time Out")