↓?
#include "gdi32.as"
#include "user32.as"
bgscr 0
color 255 : boxf
font "MS ゴシック", 100
buf = "HSP"
//パスを開いて文字列を書く
BeginPath hdc
TextOutA hdc, 0, 0, varptr(buf), strlen(buf)
EndPath hdc
//パスからリージョン作成
PathToRegion hdc
hRgn = stat
//ウィンドウにリージョンをセットする
SetWindowRgn hwnd, hRgn, 1
wait 500
end