home *** CD-ROM | disk | FTP | other *** search
- function moveSel(which)
- {
- this._parent._parent._parent.spellmove.start();
- if(which == "d")
- {
- starty += 1;
- }
- if(which == "u")
- {
- starty -= 1;
- }
- if(starty < 0)
- {
- starty = spellarray.length - 1;
- }
- if(starty > spellarray.length - 1)
- {
- starty = 0;
- }
- this._parent._parent._parent.selectaroon = starty;
- sel._y = spellarray[starty];
- }
- this.spellarray = new Array(40,65,85,110,135,155,180,200);
- this._parent._parent._parent.spellpow = new Array(16,8,50,40,16,16,16,64);
- this.starty = this._parent._parent._parent.selectaroon;
- sel._y = spellarray[starty];
-