home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Estrategia / coffeetycoon_Demo.swf / scripts / frame_170 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  1.3 KB  |  29 lines

  1. _root.option_autobattle.setLabel("");
  2. _root.option_autobuy.setLabel("");
  3. _root.option_automove.setLabel("");
  4. _root.option_warsummary.setLabel("");
  5. _root.option_celcius.setLabel("");
  6. _root.option_mute.setLabel("");
  7. _root.option_highquality.setLabel("");
  8. _root.option_autobattle.setEnabled(true);
  9. _root.option_autobattle.setValue(_root.autobattle);
  10. _root.option_autobattle.setChangeHandler("auto_battle",_root);
  11. _root.option_autobuy.setEnabled(true);
  12. _root.option_autobuy.setValue(_root.autobuy);
  13. _root.option_autobuy.setChangeHandler("auto_buy",_root);
  14. _root.option_automove.setEnabled(true);
  15. _root.option_automove.setValue(_root.automove);
  16. _root.option_automove.setChangeHandler("auto_move",_root);
  17. _root.option_warsummary.setEnabled(true);
  18. _root.option_warsummary.setValue(_root.warsummary);
  19. _root.option_warsummary.setChangeHandler("war_summary",_root);
  20. _root.option_celcius.setEnabled(true);
  21. _root.option_celcius.setValue(_root.celcius);
  22. _root.option_celcius.setChangeHandler("set_celcius",_root);
  23. _root.option_mute.setEnabled(true);
  24. _root.option_mute.setValue(_root.musicmute);
  25. _root.option_mute.setChangeHandler("set_mute",_root);
  26. _root.option_highquality.setEnabled(true);
  27. _root.option_highquality.setValue(_root.highquality);
  28. _root.option_highquality.setChangeHandler("set_highquality",_root);
  29.