home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 August / Chip_2004-08_cd2.bin / avid_dvfree / swf / Output.swf / scripts / frame_1 / DoAction.as
Text File  |  2004-03-24  |  921b  |  52 lines

  1. pauseBut_mc.onrollOver = function()
  2. {
  3.    this.gotoAndStop(2);
  4. };
  5. pauseBut_mc.onrollOut = function()
  6. {
  7.    this.gotoAndStop(1);
  8. };
  9. pauseBut_mc.onPress = function()
  10. {
  11.    this.gotoAndStop(3);
  12. };
  13. pauseBut_mc.onRelease = function()
  14. {
  15.    _root.maintarget_mc.stop();
  16.    this.gotoAndStop(1);
  17. };
  18. playBut_mc.onrollOver = function()
  19. {
  20.    this.gotoAndStop(2);
  21. };
  22. playBut_mc.onrollOut = function()
  23. {
  24.    this.gotoAndStop(1);
  25. };
  26. playBut_mc.onPress = function()
  27. {
  28.    this.gotoAndStop(3);
  29. };
  30. playBut_mc.onRelease = function()
  31. {
  32.    _root.maintarget_mc.play();
  33.    this.gotoAndStop(1);
  34. };
  35. restartBut_mc.onrollOver = function()
  36. {
  37.    this.gotoAndStop(2);
  38. };
  39. restartBut_mc.onrollOut = function()
  40. {
  41.    this.gotoAndStop(1);
  42. };
  43. restartBut_mc.onPress = function()
  44. {
  45.    this.gotoAndStop(3);
  46. };
  47. restartBut_mc.onRelease = function()
  48. {
  49.    _root.maintarget_mc.gotoAndPlay(1);
  50.    this.gotoAndStop(1);
  51. };
  52.