On 5/18/06, Jason Tangen <[EMAIL PROTECTED]> wrote:
Can someone tell me how to prevent a user from using Command-q to
quit Revolution?  I'm sure that I used to be able to do it, but not
anymore.  Did something change?

How about trapping the commandKeyDown message?

on commandKeyDown pKey
 if pKey = "Q" then
    answer "You are not allowed to quit :-)"
 else
    pass commandKeyDown
 end if
end commandKeyDown


HTH,
Sarah
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to