Hey guys,
The other thread I had going was getting a little convoluted, so I figured I’d start another one to see if I could get better results.
I’ve loaded data from an XML file and put it in an array that contains everything. I’m trying to get the drawing API to draw some shapes dynamically on the stage using this information. They drew fine before when I was using hard-coded test values, but now that it’s dynamic it doesn’t work, and I think that’s because the shapes are trying to draw before they get their values to draw with. Is there any kind of like “on(something)” I can use to ensure everything’s fully loaded before I begin drawing? (The XML file’s already in an “onLoad” function.)
Secondly, I’m trying to adapt the dynamic XML image gallery Kirupa tutorial found HERE to work when a button is pressed, and have the images load into a container created with the drawing API. Does anybody have any tips on how this could be accomplished? For reference, here’s the code I’m using to create the boxes to house the images (each box consists of a nested preloader bar, and the actual container for holding the loaded image):
//main box
_root.createEmptyMovieClip("pictureBox_mc", tempClip_mc.getNextHighestDepth() + 5);
pictureBox_mc.lineStyle(1, 0x000000);
pictureBox_mc.beginFill(0xFFFFFF, 100);
pictureBox_mc.moveTo(calcX, calcY);
pictureBox_mc.lineTo(calcX, (calcY + picHeight));
pictureBox_mc.lineTo((calcX + picWidth), (calcY + picHeight));
pictureBox_mc.lineTo((calcX + picWidth), calcY);
pictureBox_mc.lineTo(calcX, calcY);
pictureBox_mc.endFill();
//loader graphic (a library item):
pictureBox_mc.attachMovie("imageLoader", "imageLoader_mc", pictureBox_mc.getNextHighestDepth());
pictureBox_mc.imageLoader_mc._x = (calcX + (pictureBox_mc._width / 2)) - (pictureBox_mc.imageLoader_mc._width / 2);
pictureBox_mc.imageLoader_mc._y = (calcY + (pictureBox_mc._height / 2)) - (pictureBox_mc.imageLoader_mc._height / 2);
//the actual picture container:
pictureBox_mc.createEmptyMovieClip("pictureHolder_mc", (pictureBox_mc.getNextHighestDepth() + 25));
pictureBox_mc.pictureHolder_mc.beginFill(0xFF0000, 100);
pictureBox_mc.pictureHolder_mc.moveTo(calcX, calcY); pictureBox_mc.pictureHolder_mc.lineTo(calcX, (calcY + picHeight));
pictureBox_mc.pictureHolder_mc.lineTo((calcX + picWidth), (calcY + picHeight));
pictureBox_mc.pictureHolder_mc.lineTo((calcX + picWidth), calcY);
pictureBox_mc.pictureHolder_mc.lineTo(calcX, calcY);
pictureBox_mc.pictureHolder_mc.endFill();
So there’s the stuff being drawn dynamically. I’ve been trying to work in the code from the tutorial but mostly through just substituting the given variables for my own; I think there’s probably something bigger I’m missing.
Anybody have any ideas?