home *** CD-ROM | disk | FTP | other *** search
- function hideItems()
- {
- i = 0;
- while(i < this.pItems.length)
- {
- this.pItems[i]._visible = false;
- i++;
- }
- }
- function showItems()
- {
- i = 0;
- while(i < this.pItems.length)
- {
- this.pItems[i]._visible = true;
- i++;
- }
- }
- stop();
- this.onRelease = function()
- {
- _root.unClickMenus();
- _root.openFolderButton._visible = false;
- this.gotoAndStop(2);
- _root.setActiveItem(this);
- this.showItems();
- };
-