荒っぽいですが、最前面ウィンドウのハンドルを得て、MoveWindowで位置サイズを指定すれば、
#include "user32.as" ; GetForegroundWindow,MoveWindow,GetWindowRectを使用
exec "http://hsp.tv/index2.html",16
GetForegroundWindow : hwnd_brws=stat
MoveWindow hwnd_brws,200,0,800,600,1 ; <= ココで位置、サイズを指定する
dim xy,4 : GetWindowRect hwnd_brws,varptr(xy)
mes "現在の位置 X="+xy(0)+" Y="+xy(1)+" サイズ X="+xy(2)+" Y="+xy(3)+" ハンドル"+hwnd_brws
はじめからieだとわかっているなら、ieのクラス名はIEFrameなので、
#include "user32.as" ; FindWindow,MoveWindow,SetForegroundWindow,GetWindowRectを使用
;exec "http://hsp.tv/index2.html",16
FindWindow "IEFrame",0 : hwnd_ie=stat
MoveWindow hwnd_ie,200,100,800,600,1 ; <= ココで位置、サイズを指定する
SetForegroundWindow hwnd_ie
dim xy,4 : GetWindowRect hwnd_ie,varptr(xy)
mes "現在の位置 X="+xy(0)+" Y="+xy(1)+" サイズ X="+xy(2)+" Y="+xy(3)+" ハンドル"+hwnd_brws
FindWindowはウィンドタイトル文字列を第2引数に指定すれば、先頭一致または末尾一致で検索してハンドルを返すので、
それを利用するのも。