Hi everyone,
Say I have a MovieClip that has nested MovieClips for example
person_mc
> body_mc
> toe_mc
> toe_nail_mc
> leg_mc
> hand_mc
Then, I want to export this person_mc and use AS3 to move the body parts _mc around. How do I reference the body parts? Ideally, I am thinking there might be such thing as:
public class ToeNail {}
public class Toe {
public var toeNail:ToeNail;
}
// ... and Leg and Hand class
public class Body {
public var toe:Toe;
}
public class Person {
public var body:Body;
public var leg:Leg;
public var hand:Hand;
}
is there such a thing? otherwise how to reference?
furthermore, what happens if the nested _mc is on some frames and not on some other frames?