i have 6 images viz… s1.gif,s2.gif,s3.gif,s4.gif,s5.gif,s6.gif
using moviecliploader i want to display them in browser and wrote like below
containerThree is the instance of movieclip
var containerThree:MovieClip = createEmptyMovieClip(“containerThree”, 30);
var mcLoaderThree:MovieClipLoader = new MovieClipLoader();
mcLoaderThree.addListener(this);
for(var i=1;i<=6;i++)
{
mcLoaderThree.loadClip(“http://sumanth/dedoverde/flash/cards/s"+i+".gif”, containerThree);
}
function onLoadInit(mc:MovieClip) {
trace("onLoadInit: "+mc);
}
problem is only s6.gif is displaying in browser. i also gave
containerThree._x = 0;
containerThree._y = 10 * i;
in for loop but no use
how to display all images in browser when we run .swf file?