home *** CD-ROM | disk | FTP | other *** search
/ cyberXperience / c11.ISO / cyberaz / nivel1.dxr / 02033_PUERTA ABIERTA.ls < prev    next >
Encoding:
Text File  |  1996-05-14  |  452 b   |  22 lines

  1. on exitFrame
  2.   go(the frame)
  3.   pon_cursor(1, 4)
  4. end
  5.  
  6. on keyDown
  7.   global Direccion, ayuda_on
  8.   if ayuda_on = 0 then
  9.     if (the keyCode = 125) or (the keyCode = 123) or (the keyCode = 124) then
  10.       set Direccion to the keyCode
  11.       preLoad(the frame + 11)
  12.       go(the frame + 3)
  13.     else
  14.       if the keyCode = 126 then
  15.         preLoad(the frame + 1, the frame + 1)
  16.         go(the frame + 1)
  17.         cursor(-1)
  18.       end if
  19.     end if
  20.   end if
  21. end
  22.