home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Estrategia / scooby.swf / scripts / DefineSprite_696 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  250 b   |  17 lines

  1. if(gPuzzleRoot.eSec < 10)
  2. {
  3.    sec_txt.text = "0" + gPuzzleRoot.eSec;
  4. }
  5. else
  6. {
  7.    sec_txt.text = gPuzzleRoot.eSec;
  8. }
  9. if(gPuzzleRoot.eMin < 10)
  10. {
  11.    min_txt.text = "0" + gPuzzleRoot.eMin;
  12. }
  13. else
  14. {
  15.    min_txt.text = gPuzzleRoot.eMin;
  16. }
  17.