Search for images/text called with multiple property lists

Search for textcollection doesn’t work any more?
For example:
if ImageFound({Text:"BT Interface Box"},{Text:"Networkstatus"},{Text:"Battery"}, Waitfor:MRZ) then ...
i catch a exception like: “Image Property List did not contain “ImageName” property.”

With Imagename instead it works.

What it doesn’t like is your placement of the waitfor, which I believe is also the case for an image search done that way (we call it an “ad-hoc image collection”). If you move your wait into your list of imagefounds it should work. Eg:

if imagefound({text:"First",waitfor:3},{text:"Second",waitfor:3},{text:"Third",waitfor:3})
then
	log "found it"
end if