#module
#uselib "user32.dll"
#cfunc FindWindow "FindWindowA" int,str
#func MoveWindowAPI "MoveWindow" int,int,int,int,int,int
#func GetWindowRect "GetWindowRect" int,var
#deffunc MoveWindow str TitleName,int Px,int Py
Thwnd = FindWindow(,TitleName) : if Thwnd = 0 : return 1
dim rect,4 : GetWindowRect Thwnd,rect : if stat = 0 : return 2
MoveWindowAPI Thwnd,Px,Py,rect(2)-rect(0),rect(3)-rect(1),1 : if stat = 0 : return 3
return 0
#global
MoveWindow "ウィンドウタイトル",123,456
mes stat
// MoveWindow p1,p2,p3
//
// p1 移動したいウィンドウ上部に表示されているウィンドウタイトル
// p2 移動後の絶対x座標
// p3 移動後の絶対y座標
//
// 関数が成功ならシステム変数statに0が返ってくる。
// 返り値:0 成功
// 返り値:1 FindWindow失敗
// 返り値:2 GetWindowRect失敗
// 返り値:3 MoveWindow(user32 API)失敗
うーん・・・
もっと簡単に出来るかもしれません。