I am attempting to nest a clip inside a clip both created using the createEmptyMovieClip method and then altering the _x and _y position of the nested clip like so…
this.createEmptyMovieClip(“orangeMC”, getNextHighestDepth());
orangeMC.createEmptyMovieClip(“empty04”, getNextHighestDepth());
orangeMC._x = 505;
orangeMC._y = 410;
orangeMC.empty04._x = -110;
orangeMC.empty04._y = -192;
The content loads just fine and the _x and _y positions of the orangeMC clip executes as planned. The _x and _y positions of the nested clip (orangeMC.empty04) however are not working. The settings are ignored. Any clues as to what I’m doing wrong here? TIA