I have a function that’s supposed to run when the XML is done loading:
function startUp(){
mens_button_box._visible = true;
womens_button_box._visible = false;
loadThumbs();
var bigpic = seesection.firstChild.firstChild.childNodes[0].attributes.fullsize;
var thetext = seesection.firstChild.firstChild.childNodes[0].attributes.textfile;
loadText = new LoadVars();
loadText.load(thetext);
loadText.onLoad = function(success) {
if (success) {
// trace(success);
specs.html = true;
specs.antiAliasType = “advanced”;
specs.htmlText = this.casualtext;
}
};
fullsize.fullsize_holder.loadMovie(bigpic);
}
but I realized that it also can’t be run until the whole movie is done loading because of another function that it’s calling…but i don’t know how to reference the movie class itself to use onLoad with it. Is it just “var mymovie = new Movie();” ? Can someone tell me how to do that? thanks alot!