I’m using a function here that is repeated to load a whole array of jpegs until the array is empty. At the top of the function a new movieClip is made to hold each of the images.
after creation I try I hide the images with _visible, although it isn’t quite working.
any ideas?
var objHolder = _root.mc_anim.createEmptyMovieClip("gall_img_"+img_load_index+"", depth++);
objHolder._visible = false;
objHolder traces as:
_level0.mc_anim.gall_img_0
_level0.mc_anim.gall_img_1
_level0.mc_anim.gall_img_2
_level0.mc_anim.gall_img_3
etc etc…