hi,
If I enter this in the Remotes section in the editor, all works proper...i.e the alias F7 gets added to the Aliases section, like....F7 b >.
Code:
alias ftest2 {
  set -u0 %fkey F7
  alias %fkey b >
}


but if i try to add a multiline alias like, below.. then instead of adding the alias F7 to the alias' section it executes the line..... b >

Code:
alias Ftest {
  set -u0 %fkey F7
  alias %fkey {
    if (!$istok(channel query chat,$window($active).type,32)) halt
    b >
  } 
}


the following part is aside from the main prob described above but I thought I'd just mention also that originally specifying a variable name as the alias (in the remotes section) didn't work like :

set %fkey f7

alias %fkey {

}

- - - - - - - -
Thankyou