home *** CD-ROM | disk | FTP | other *** search
- stop();
- var m_length = menuXML.childNodes.length;
- var i_m = 0;
- while(i_m < m_length)
- {
- if(menuXML.childNodes[i_m].nodeName == "menu_1")
- {
- var cover_menu_item = "cover_menu_" + i_m;
- var cover_menu_id = menuXML.childNodes[i_m].attributes.id;
- var cover_menu_name = menuXML.childNodes[i_m].attributes.name;
- var there_is_photo_gallery = menuXML.childNodes[i_m].attributes.photo_gallery;
- this[cover_menu_item].no = i_m;
- this[cover_menu_item].id = cover_menu_id;
- this[cover_menu_item].name = cover_menu_name;
- this[cover_menu_item].photo_gallery_exists = there_is_photo_gallery;
- this[cover_menu_item].btn.onRelease = function()
- {
- _root.main_section_clicked = this._parent.no;
- _root.main_section_clicked_id = this._parent.id;
- _root.main_section_clicked_name = this._parent.name;
- _root.photo_gallery_exists = this._parent.photo_gallery_exists;
- tellTarget(this._parent._parent)
- {
- play();
- }
- };
- }
- i_m++;
- }
-