home *** CD-ROM | disk | FTP | other *** search
/ Organic Chemistry (8th Edition) / Image.iso / pc / organic / media / content / book_flash.swf / scripts / DefineButton2_284 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2003-05-14  |  365 b   |  17 lines

  1. on(release){
  2.    if(content._visible == false)
  3.    {
  4.       if(_parent.chapterlist.text != "All Chapters")
  5.       {
  6.          MyStatrtItem = content.scroler.scrollPosition;
  7.          content.ShowItems(MyStatrtItem);
  8.          content.scroler.initScroler();
  9.          content._visible = true;
  10.       }
  11.    }
  12.    else
  13.    {
  14.       content._visible = false;
  15.    }
  16. }
  17.