home *** CD-ROM | disk | FTP | other *** search
- clothexe();
- clothinit();
- woman.onEnterFrame = function()
- {
- if(Key.isDown(37))
- {
- eval(clothname)._x -= 1;
- }
- else if(Key.isDown(39))
- {
- eval(clothname)._x += 1;
- }
- else if(Key.isDown(38))
- {
- eval(clothname)._y -= 1;
- }
- else if(Key.isDown(40))
- {
- eval(clothname)._y += 1;
- }
- };
- stop();
-