home *** CD-ROM | disk | FTP | other *** search
- function onLoadXMLrm(succ)
- {
- aaa = "myXML Loaded";
- myXML = myXML.firstChild;
- preloading.gotoAndPlay(2);
- }
- stop();
- if(mode == "rm")
- {
- ListChaptersArray = new Array();
- ListChaptersArray[1] = "All Chapters";
- ListSectionsArray = new Array();
- ListItemsArray = new Array();
- ListAttributesIDArray = new Array();
- ListAttributesTYPEArray = new Array();
- ListAttributesPAGEArray = new Array();
- ListDescriptionArray = new Array();
- AttributesListIDArray = new Array();
- AttributesListTYPEArray = new Array();
- AttributesListPAGEArray = new Array();
- DescriptionListArray = new Array();
- }
- else
- {
- AttributesListIDArray = new Array();
- AttributesListTYPEArray = new Array();
- AttributesListPAGEArray = new Array();
- DescriptionListArray = new Array();
- ItemsListArray = new Array();
- }
- XML.prototype.ignoreWhite = true;
- if(mode == "rm")
- {
- myXML = new XML();
- myXML.onLoad = onLoadXMLrm;
- myXML.load(filexml);
- }
- else
- {
- preloading.gotoAndPlay("step2");
- }
-