home *** CD-ROM | disk | FTP | other *** search
- if("1000" < Now)
- {
- Minutes = int(Now.substr("1",length(Now) - "3") / "60");
- Seconds = int(Now.substr("1",length(Now) - "3") - Minutes * "60");
- }
- Centiseconds = int(Now.substr(length(Now) - "2","2"));
- if(Centiseconds < "10")
- {
- Centiseconds = "0" add Centiseconds;
- }
- if(Seconds < "10")
- {
- Seconds = "0" add Seconds;
- }
- if(Minutes < "10")
- {
- Minutes = "0" add Minutes;
- }
- if("59" < int(Minutes))
- {
- call("Reset");
- }
- if(Seconds >= "1")
- {
- play();
- }
- else
- {
- gotoAndPlay(21);
- }
-