I was trying to get the information from a multiline editbox, but unfortunately I could only get one line at a time.

My issue isn't that it triggers per line, it's that there is no way to know what's in the editbox, as the editbox clears as soon as you press enter, and before the input is processed.
You may argue that using $1- is suitable, allthough it only contains a single line.

To get around this, I had to make the following:

Code:
on 1:KEYDOWN:@Test:*:{
  if ($keyval = 13) {
    var %x $editbox(@Test)
    if (%x) && ($left(%x,1) != /) {
      Test.sendData $utfencode(%x)
    }
  }
}

on 1:input:@Test:{
  if ($left($1,1) != /) {
    echo $color(own) -t @Test < $+ $me $+ > $1-
  }
}


It would be nice if it was possible to use the MultiLine editbox for input, rather than just line per line.


[02:16] * Titanic has quit IRC (Excess Flood)