For...in loop in as3

I can’t quite get this syntax in as3 to work. In as2 I used to just write

for (all in this){
if(this[all].findme==true){
trace(this[all])
}
}

I am trying to find movie clips that have the variable findme=true in them in “this” movie clip.

How do I do this in as3?