Hierarchy

Parent

Nested symbol's relationships may be described as a parent-child. Let's return to our example where mvMan included mvLeg, which in it's turn included mvToe. Imagine an animation when we tickle the mvToe and mvLeg will jerk and mvMan will laugh.

In the code it may look like that if placed in one of the frames of the mvToe

this.onRollOver = function() {
   _parent.play();
   _parent._parent.play ();
}

The first line of the function will invoke the leg's method, the second – will call man's method.

Let's create an example