home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-15 | 544 b | 17 lines | [TEXT/ToyS] |
- property theMax : 1234000
- dd install with greyscale
- set p to dd make dialog {size:[300, 50], contents:[¬
- {class:static text, bounds:[8, 4, 160, 20], contents:"Thinking…"}, ¬
- {class:static text, bounds:[170, 4, 288, 20], contents:"", justification:right}, ¬
- {class:gauge, bounds:[10, 25, 290, 25 + 12], value:0, max value:theMax} ¬
- ]}
- set n to 1
- set x to 1
- repeat while n < theMax
- dd set value of item 3 of p to n
- set n to n + x
- set x to x + 1
- if x mod 50 = 2 then dd set contents of item 2 of p to n
- end repeat
- dd delete p
- dd uninstall