Auto Execute

If you want an ESPL script to automatically load and execute when Ensign Windows runs, simply name the file:  Symbols.spt

The auto execute file named Symbols.spt executes with Who=10, and the timer turned on.  You can do any initialization in an

    if who=10 then begin ... end;

block, and have a statement in this block turn the timer off if you do not want the timer to continue to call the script.

Example:

begin
  if who = 10 then begin
    Timer(eStop);
  end;
end;