IE.navigate(なんとかURL, $800)
wait(IE)
shells = CreateOleObj("Shell.Application")
for i = 0 to shells.Windows.Count - 1
 obj = shells.Windows.Item(i)
 if obj > 0 then
  if pos("iexplore.exe", obj.Fullname) > 0 and obj.locationURL=なんとかURL then // 見つかった
   result = obj; exit
  endif
 endif
next

時間空けないと掴めなかったりするからsleepを適宜突っ込むとかリトライかますとか適当に実験して