Need help Kevin Friday, April 21, 2000

Hi i need some help i cant get the sleep command to work in CC section take a look

talk("test1") void sleep(3000) talk("test2") etc is that what u do it dont work

 
Re: Need help SubSpace Friday, April 21, 2000

> Hi i need some help i cant get the sleep command to work in CC section
> take a look
> talk("test1") void sleep(3000) talk("test2") etc is
> that what u do it dont work

talk("test1") sleep(3000) talk("test2")

The 'void' specifies the result type only and is not used in the syntax of the function call. Also, you need to check the 'run in separate thread' checkbox.

SubSpace

 
Thanks Kevin Friday, April 21, 2000

> talk("test1") sleep(3000) talk("test2")

> The 'void' specifies the result type only and is not used in the syntax of
> the function call. Also, you need to check the 'run in separate thread'
> checkbox.

> SubSpace