Hi,
Having trouble loading an image scroller.swf (reliant on xml).
The project is all as2 and I can neither get the scroller.swf to load in the child nor the parent. I’m using buttons to load the scoller.swf into an empty mc: “imageLoader”. Here’s the code (sorry I know it’s really basic, and likely off, but help would be sooo greatly appreciated).
imgbtn1.onRelease = function () {
loadMovie(“scroller.swf”,“imageLoader”);
}
imageLoader.onRollOut = function () {
unloadMovie(“imageLoader”);
};
imgbtn2.onRelease = function() {
loadMovie(“scroller.swf”,“imageLoader”);
}
imageLoader.onRollOut = function () {
unloadMovie(“imageLoader”);
};
imgbtn3.onRelease = function() {
loadMovie(“scroller.swf”,“imageLoader”);
}
imageLoader.onRollOut = function () {
unloadMovie(“imageLoader”);
};