View Single Post
  #4  
Old 05-03-2010, 10:04 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Quote:
Originally Posted by DustyPorViva View Post
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.
__________________
Reply With Quote