#include "user32.as"
if ( aa == 1 ) { GetForegroundWindow hnd = stat a = "" z = 128 GetWindowText hnd, varptr(a), z if ( a == "タイトル名" ) { wait 60 nWidth = 800 nHeight = 600 FindWindow "クラス名",0 : hwnd_schat=stat dim rect, 4 GetWindowRect hwnd_schat, varptr(rect) MoveWindow hwnd_schat, rect(0), rect(1), nWidth, nHeight, 1 } }
指定したウィンドウを取得し、そのウィンドウのサイズ変更。
と言うソースなんですが
#uselib "user32.dll"
#func MoveWindow "MoveWindow" int, int, int, int, int, int
#func GetWindowRect "GetWindowRect" int, int
#func GetWindowText "GetWindowTextA" int, int
#cfunc FindWindow "FindWindowA" sptr, sptr
に変えると実行できません。
どうすればよいでしょう?