>>172
スクリプト内部の一時変数に記憶しておくしかないかな。

-----
var other_id;
other_id = other.id;

with ( ) {
  // withループ内でも、変数 other_id で 元々の other のインスタンスIDを参照できる。
}
-----