Does anyone know of a way to trap the Mac OS X Force Quit key sequence (Cmd-Opt-Escape) in Revolution? I want to come up with a way of preventing a user from force quitting unless they have a valid password. Trapping rawKeyDown, for example, doesn't work:

on rawKeyDown keyCode
  if the optionKey is down and the commandKey is down then
    if keyCode = 65307 then  --65037 = esc key
      -- ask for a password here
      pass rawKeyDown
    end if
  end if
end rawKeyDown

Devin

Devin Asay
Humanities Technology and Research Support Center
Brigham Young University

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to