Friday, February 13, 2009

v7.90.0121 - 2009-02-13 10:56

  • + Enhanced tweak HotKeyShowApp. Now you can state the modifier keys using the following values:
      ALT   = 1
      CTRL  = 2
      SHIFT = 4
      WIN   = 8
    Simply add the values you need and prefix them to the key separated by a "+". E.g. like this for Win+Alt+Y:
      [Settings]
      HotKeyShowApp=9+Y
    If no modifier is stated, the modifer defaults to 8 (Win Key).
  • + Scripting got a new function.
      Name:   asc
      Action: Returns the ASCII value of a character.
              This function complements chr().
      Syntax: asc(string)
        string: character
                If string is larger than one character the first
                character used.
                If string is empty asc() returns "" (empty).
        return: ASCII value, range 0-65535 (0xFFFF)
      Examples:
        ::echo asc("a"); //97
        ::echo asc(chr(20000)); //20000