Back Previous Next


Linguist basic package - after

Syntax:

   after {count} tick[s]/second[s]/minute[s] {block}

Keyword handler:

   net.eclecity.linguist.basic.keyword.BasicKAfter.class

Runtime handler(s):

   net.eclecity.linguist.basic.handler.BasicHAfter.class

Function:

Sets up a one-shot timer. When it fires the instruction(s) at {block} are executed. The default unit is seconds if none is specified. See also every.

Example(s):

   after 20 seconds prompt "Hurry up"
   after 1 minute go to Timeout
   after 2 seconds
   begin
      show view 1 of Button
      set Hilited
   end


Back Previous Next