Quote:
Originally Posted by DustyPorViva
If you wanna do what you were asking for:
scheduleevent(timer, "Timeout1", null);
|
Yep, example:
PHP Code:
//#CLIENTSIDE
function onCreated() {
onTimeout1();
}
function onTimeout1() {
// do stuff
scheduleevent(1, "Timeout1", null);
}
I tend to avoid calling event functions directly though.