Hey guys… i’m new to the AS3 format and wow has it changed. but i don’t know how to correctly ask this question, so forgive me if this is addressed in another post…but please provide the link…hahaha :joker:
here’s my problem I’m trying to reference a dynamically created movie clip
function getContentData(xmlData):void {
for (var i:int = 0; i < xmlData..length(); i++) {
var mc:MovieClip=new navButtonAction();
mc.name = “mc”+i
mc.x=500 +(i250);
mc.y=10;
mc.currentBut.text = xmlData.**.name();
//mc.imageShell.pctFieldText.text = “show % loaded here”;
navMenu.addChild(mc);
loadImage("photo.jpg");
}
}
function loadImage(url:String):void {
// Set properties on my Loader object
imageLoader = new Loader();
imageLoader.load(new URLRequest(url));
imageLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, imageLoading);
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
}
function imageLoading(e:ProgressEvent):void
{
so the question is… how would i talk to the dynamically created “mc” here.
so i can pass the preloading tally.
}