Rev 1.1.1b2, MacOS9.

This script:

    on mouseUp
      put "happy easter,every one" into finfo
      split finfo by comma and space
      put finfo["happy"]
    end mouseUp

outputs "easter", as you would expect.

This script:

    on mouseUp
      put "happy easter,every one" into finfo
      split finfo by comma and space
      put finfo["happy"] into finfo
      put finfo
    end mouseUp


outputs "XXXXer", where XXXX is four bytes of binary data - exactly what
changes every time the script is compiled.  This is consistent whatever the
data, ie it's always the first four bytes of the result that are
overwritten.

  Ben Rubinstein               |  Email: [EMAIL PROTECTED]
  Cognitive Applications Ltd   |  Phone: +44 (0)1273-821600
  http://www.cogapp.com        |  Fax  : +44 (0)1273-728866


_______________________________________________
improve-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/improve-revolution

Reply via email to