home *** CD-ROM | disk | FTP | other *** search
/ Connect / connect_2005-05.iso / swf / m36.swf / scripts / DefineSprite_11 / frame_2 / DoAction.as
Encoding:
Text File  |  2005-04-28  |  311 b   |  22 lines

  1. if(this._name != "moviearea")
  2. {
  3.    var a = 0;
  4.    while(a <= _parent.maxitems - 1)
  5.    {
  6.       if(a == item_num)
  7.       {
  8.          this["image" + a].do_me();
  9.       }
  10.       a++;
  11.    }
  12. }
  13. else
  14. {
  15.    var a = 0;
  16.    while(a <= _parent.maxitems - 1)
  17.    {
  18.       a++;
  19.    }
  20.    control._visible = false;
  21. }
  22.