Sheri wrote (on 01.05.2007 18:56): > Bad expression: wrong use of braces [] > not s_Grid[j,i] || s_Grid[j,i] == _handle > Nope it's about operator precedence, I suspect it might be due to "short hand evaluation". Change the line to this: If(not s_Grid[j,i] or (s_Grid[j,i] == _handle))Do and it works again.
HTH
