Accessing variable of child

Hi,

i would like to access a variable from a child in as3.

on main time line i have:


var xx:Number
trace(mc.xx)

in my child called mc i have:


var xx:Number
xx=1

the trace output is NaN.

how do i read xx fom inside mc?