Escape

Hola baronclo, sabes tu como puedo con lingo o de alguna forma bloquear la tecla escape, que no actue como tal si no que me vaya a un frame determinado.
gracias.

1 Respuesta

Respuesta
1
Te adjunto lo que dice la ayuda de Director:
Es una propiedad de la pelicula que detecta las posibilidades de salir del programa utilizando Control+ . : Control + Q ; Tecla ESCAPE
Debes setear la propiedad como TRUE por ejemplo en un movieScript en el handler
On preparemovie
set the exitLock to TRUE
end
Luego puedes controlarla y enviarla a un frame definido por ti, tal como aparece en el ejemplo de la ayuda del mismo Director.
Saludos
Claudio.
-------------------------------
Syntax the exitLock
Description Movie property; determines whether a user can quit to the Windows desktop or Macintosh Finder from projectors (TRUE) or not (FALSE, default).
The user can quit to the desktop by pressing Control+period (Windows) or Command+period (Macintosh), Control+Q (Windows) or Command+Q (Macintosh), or Control+W (Windows) or Command+W (Macintosh); the Escape key is also supported in Windows.
This property can be tested and set.
Example This statement sets the exitLock property to TRUE:
set the exitLock to TRUE
Example Assuming that exitLock is set to TRUE, nothing occurs automatically when the Control+period/Q/W, Esc, or Command+period/Q/W keys are used. This handler checks keyboard input for keys to exit and takes the user to a custom quit sequence:
on checkExit
if the commandDown and (the key = "." or the key = "q") and the exitLock = TRUE then go to frame "quit sequence"
end

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas