var urls = []
this.withAllSubmorphsDo(function(ea) {
try {
if (! ea.getImageURL) return;
url = ea.getImageURL()
urls.push(url)
show(ea)[0].addMorph(
new lively.morphic.Text(rect(0,0,150,30),"" + url).beLabel(
{textColor: Color.red, fill: Color.gray}))
} catch(e) {urls.push(e)}
});
#Log.textString = urls.join("\n")