Sunday, November 23, 2008

v7.80.0022 - 2008-11-23 17:54

  • ! Mini Tree: Couple of glitches fixed.
  • ! Toolbar: Drawing glitch with History per Tab buttons. Fixed.
  • * SC end: Inverted the logic of the "condition" argument. Now, as more likely to be intuitively expected, the script is terminated if the condition is TRUE, so it is the "condition to terminate".
    Syntax: end condition, [message], [scope=0]
      condition: if True the script is ended
                 else nothing happens
                 (True = anything but 0 or empty)
    Example:
      ::end confirm("Are you sure to continue?") == 0, "Bye!"; _
        msg "Still here!";