Can someone point me to a tutorial for loading xml swf into another swf
So let me see if I understand correctly… You have a swf that points to an xml file. You want to load that dynamically into another .swf? are you doing this on release, or what??? If on button release, just make it like any other dynamically loaded bit of information, ie:
create a mc for external swf to go into, we’ll call it target_mc
on AS panel (I am writing this for AS2, dont know AS3 well)
movieclipname.onRelease = function() {
loadMovie(“filename.swf”, “target_mc”);
}
Is this what you are looking for?
The xml info, in my past experience, still will work just fine, you dont need to do anything special to carry that across, as long as you properly told your first .swf to load the xml doc.