- > > I can see two possible problems: > First, PowerPro caption matching only looks at main window. Possibly the > windows you are seeing are child windows. You can experiment with the > various win.xx functions that work with child windows to see the captions. > e.g. childhandlelist.
e.g. this script dumps child windows, their class, their captions
local hlist=win.childhandlelist("=opera")
for each word han in hlist
if (han.visible)
win.debug(win.hex(han), han.class, han.caption)
endfor
