Auto Save

This script can be used to save a quote page to an ASCII file named  C:\Ensign\ASCII.TXT    as frequently as the timer triggers.   You can set the timer frequency by clicking the #1 button on the script editor.   The timer will call the script with the Who value equal to 10.   Click the #1 button on the script editor to set the process in motion.

begin
  if Who=1 then Timer(eStart,600);  {600 seconds = 10 minute interval}
  if Who=10 then begin              {do this when timer triggers}
    Quote(eCustom);                 {display custom quote page}
    SendKeys('&QAE');               {quote menu, ASCII Save, Excel Column save}
    Pause(1);                       {let the file save}
    mnuCloseWindow.click;           {close quote window}
  end;   
end;