home *** CD-ROM | disk | FTP | other *** search
/ Dye Another Day / DyeAnotherDay.bin / swf / help.swf / scripts / DefineButton2_217 / BUTTONCONDACTION on(rollOver).as < prev   
Encoding:
Text File  |  2003-03-28  |  314 b   |  14 lines

  1. on(rollOver){
  2.    i = 1;
  3.    while(i < 10)
  4.    {
  5.       eval("_parent.but" + i).gotoAndStop(2);
  6.       i++;
  7.    }
  8.    _root.fadein6 = true;
  9.    _parent.continuouslabel._x = _parent._xmouse + 5;
  10.    _parent.continuouslabel._y = _parent._ymouse + 5;
  11.    startDrag(_parent.continuouslabel,0);
  12.    gotoAndStop(3);
  13. }
  14.