What's new in Advanced Template Plug-In?

                                                       Ad of 2000/10/24
Beta 4 to Beta 5

- Add Attach() function
- Fixed a bug that Rand() didn't return random number.

**************************************
** New function/procedure/constants **
**************************************

  procedure Attach(S: String);
    Attach a file to mail.

                                                       As of 2000/10/11
Beta 3 to Beta 4

- Add ShowMessage function
- Fixed a bug that StringAt function returns wrong line.
- Fixed a bug that returns error when StringAt returns a line indluding '#'

**************************************
** New function/procedure/constants **
**************************************

  procedure ShowMessage(S: String);
    Show simple message box.



                                                       As of 2000/10/09
Beta 2 to Beta 3

- Fixed a bug that freezes B2 when replying to HTML message.
- Set current directory to B2 user directory (related to ReadFromFile function)
- Display time spend to execute ATML on B2 status bar.
- Increased execution speed.



                                                       As of 2000/10/07
Beta 1 to Beta 2

- Remove HTML tag when replying html message.
- Get rid of a bug that StringAt() function don't return any value.
- Add description of Length() function.
- Add new functions.

**************************************
** New function/procedure/constants **
**************************************

procedure SetSignature(S: String);
  Set signature.

  This function acts little tricky.  It will search the signature from
  specified string, but if the function found signature started with
  that string, it will set that signature.

  For example, if your list of signatures are like this...

  Sig01
  Sig02
  Sig03
  Sig
  Sig10

  And you set ATML code like this...

  SetSignature('Sig');

  Then ATML will set Sig01.  If you want to set 'Sig' you have to
  either reset your list so that 'Sig' comes to top, or rename Sig01
  to Sig03 to other name.

No new constants are added this time.