Not to jack the thread but this got me thinking about how to do this in other software solutions, here's what I came up with for HKN, of course you will need to make the send labels and assign WoW window tiles, then assign the WASD keys in WoW on each toon. They all get the same setting for this to work. W=forward ASD= strafe left, back, strafe right respectively.

This makes the cross when pressing "Q":
Code:
<MovementHotkey Q>

   <If ActiveWinIs WoW1>
      <SendLabel w2> <Key A>
      <SendLabel w3> <Key D>
      <SendLabel w4> <Key W>
      <SendLabel w5> <Key S>

   <Else If ActiveWinIs WoW2>
      <SendLabel w1> <Key A>
      <SendLabel w3> <Key D>
      <SendLabel w4> <Key W>
      <SendLabel w5> <Key S>

   <Else If ActiveWinIs WoW3>
      <SendLabel w1> <Key A>
      <SendLabel w2> <Key D>
      <SendLabel w4> <Key W>
      <SendLabel w5> <Key S>

   <Else If ActiveWinIs WoW4>
      <SendLabel w1> <Key A>
      <SendLabel w2> <Key D>
      <SendLabel w3> <Key W>
      <SendLabel w5> <Key S>

   <Else If ActiveWinIs WoW5>
      <SendLabel w1> <Key A>
      <SendLabel w2> <Key D>
      <SendLabel w3> <Key W>
      <SendLabel w4> <Key S>
and this makes the line formation with the current leader/master slighty ahead of the followers when pressing "W" twice:
Code:
<MovementHotkey W>
<Toggle>
   <If ActiveWinIs WoW1>
      <SendLabel w2> <Key A>
      <SendLabel w3> <Key D>
      <SendLabel w4> <Key A>
      <SendLabel w5> <Key D>
   <Else If ActiveWinIs WoW2>
      <SendLabel w1> <Key A>
      <SendLabel w3> <Key D>
      <SendLabel w4> <Key A>
      <SendLabel w5> <Key D>
   <Else If ActiveWinIs WoW3>
      <SendLabel w1> <Key A>
      <SendLabel w2> <Key D>
      <SendLabel w4> <Key A>
      <SendLabel w5> <Key D>
   <Else If ActiveWinIs WoW4>
      <SendLabel w1> <Key A>
      <SendLabel w2> <Key D>
      <SendLabel w3> <Key A>
      <SendLabel w5> <Key D>
   <Else If ActiveWinIs WoW5>
      <SendLabel w1> <Key A>
      <SendLabel w2> <Key D>
      <SendLabel w3> <Key A>
      <SendLabel w4> <Key D>
<Toggle>
   <If ActiveWinIs WoW1>
      <SendLabel w4> <Key A>
      <SendLabel w5> <Key D>
   <Else If ActiveWinIs WoW2>
      <SendLabel w4> <Key A>
      <SendLabel w5> <Key D>
   <Else If ActiveWinIs WoW3>
      <SendLabel w4> <Key A>
      <SendLabel w5> <Key D>
   <Else If ActiveWinIs WoW4>
      <SendLabel w3> <Key A>
      <SendLabel w5> <Key D>
   <Else If ActiveWinIs WoW5>
      <SendLabel w3> <Key A>
      <SendLabel w4> <Key D>
Thanks for your work figuring it out in IS/ISB, I've been working on getting it done for a while.