Hi people,
I have 2 nested move clips in this order.
mc_a (grand parent)
mc_b (parent)
mc_c (child)
-
mc_a has a linkage for export “a_call”
(mc_b and mc_c are not turned on for linkage) -
mc_b has an instance name “b_inst”
-
mc_c has an instance name “c_inst”
Now, I have a button on the stage. I am trying to load mc_a on stage using the linkage, and trying to load an image that replaces c_inst.
I am using:
on(release)
{
_root.attachMovie(“a_call”, “a_called”, 1)
_root.loadMovie(“image1.jpg”, _root.a_called.b_inst.c_inst)
}
But so far it only attaches the movie, doesn’t load the image.
Any help is appreciated.
Thank you.