home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Estrategia / checkers_fun.swf / scripts / frame_20 / DoAction.as
Encoding:
Text File  |  2007-03-20  |  697 b   |  36 lines

  1. view_overhead.onPress = function()
  2. {
  3.    view_picker.gotoAndStop(2);
  4. };
  5. view_perspective.onPress = function()
  6. {
  7.    view_picker.gotoAndStop(1);
  8. };
  9. mode_red.onPress = function()
  10. {
  11.    mode_picker.gotoAndStop(1);
  12.    diff_picker._visible = true;
  13. };
  14. mode_black.onPress = function()
  15. {
  16.    mode_picker.gotoAndStop(2);
  17.    diff_picker._visible = true;
  18. };
  19. mode_2play.onPress = function()
  20. {
  21.    mode_picker.gotoAndStop(3);
  22.    diff_picker._visible = false;
  23. };
  24. difficulty_easy.onPress = function()
  25. {
  26.    diff_picker.gotoAndStop(1);
  27. };
  28. difficulty_med.onPress = function()
  29. {
  30.    diff_picker.gotoAndStop(2);
  31. };
  32. difficulty_hard.onPress = function()
  33. {
  34.    diff_picker.gotoAndStop(3);
  35. };
  36.