タイトル名を指定せずにウィンドウを検索して
自前でタイトル名を調べる。
#include "hspext.as"
screen 1, 320, 240, 1 : title "スクリーン1 - HSP : testwindow"
screen 2, 320, 240, 1 : title "スクリーン2 - window"; これはヒットしない
screen 3, 320, 240, 1 : title "testwindow - abcd スクリ−ン3"
screen 4, 320, 240, 1 : title "スクリーン4 - testwindow"
screen 5, 320, 240, 1 : title "スクリーン5 サンプル HSPtestwindow"
screen 6, 320, 240, 1 : title "test window xyz スクリーン6"; これはヒットしない
sdim name, 1024
sdim list_find, 1024, 64
count_find=0
repeat
wait 0
aplsel "", cnt
if stat=1 : break
name=refstr
if instr(name, 0, "testwindow") != -1 {
list_find(count_find)=name
count_find++
}
loop
gsel 0, 1
mes "== found window =="
repeat count_find
mes list_find(cnt)
loop
mes "== end =="