home *** CD-ROM | disk | FTP | other *** search
- class Sauetelling
- {
- var mc;
- var teljar = 0;
- function Sauetelling(mc, skjerm_x, skjerm_y)
- {
- this.mc = mc;
- this.mc._x = skjerm_x;
- this.mc._y = skjerm_y;
- }
- function settTeljar(tal)
- {
- this.teljar = tal;
- this.mc.gotoAndStop(this.teljar + 1);
- }
- function enMindre()
- {
- this.teljar -= 1;
- this.mc.gotoAndStop(this.teljar + 1);
- }
- }
-