var a:Object = { b: { c: { d: 30 }} }; with (a.b.c) { if (d == 20 || d == 30 || d == 0) { trace('aaa'); } }
if(a.b.c.d == 20 || 30 || 0)