AFTERGRASP: Variables without Atsign first support

37 views
Skip to first unread message

John Bridges

unread,
Dec 8, 2013, 7:09:25 PM12/8/13
to after...@googlegroups.com
New build of AfterGRASP is live for download:




agsetup_20131208.exe

----------------------------------------------------------------------------
Sun, 08 Dec 2013

Scripts without use of @ for variables is now working via the NOATVAR
scriptoptions:

SCRIPTOPTIONS ATVAR  ; default
SCRIPTOPTIONS NOATVAR

Known problems fixed include use of INC and DEC, which no longer need the
variable name in quotes. For example:

  scriptoptions noatvar
  var b = "hello"
  var hello = 1
  inc b
  inc "hello"
  messagebox hello   ; displays 2
  inc hello
  messagebox hello   ; displays 3
  scriptoptions atvar


----------------------------------------------------------------------------
Fri, 06 Dec 2013

AGCOMP now handles open braces on same line as all commands that start a
block, including else.

WITH now supports braces for blocks.

with color red {
  text hello
}

AGCOMP now handles an else on the same line as a close brace like this:

  if (1) {
    messagebox always
  } else {
    messagebox never
  }
  

----------------------------------------------------------------------------

Reply all
Reply to author
Forward
0 new messages