Hello, did you ever solve this? I would want to have a filter, that does not hide, but folds all nodes with the criteria that the text is "erl" AND the icon is " button_ok". But all I manage is the text: def matches = c.find{ it.text.contains('erl') } c.statusInfo = matches.size() + " nodes contain 'erl'" matches.each{it.folded = true} I could not find a way to identify the image, too. I only use it with one image in the nodes with text "erl". So it should be only icon.First Something like this:...