local jd=service.getText(node)
if service.isInWebView(node)
local wy=service.getWebAllTextList()
wy=tostring(wy):match(jd..".+")
service.speak(wy)
else
local txt=service.getAllTextList()
txt=tostring(txt):match(jd..".+")
service.speak(txt)
end
return true