Step 1 - Select your form in the class browser, then in the middle pane click on the <form> entry, it will be red and at the top of the middle properties pane. The right hand pane will then show you the available event methods for a form. Select the keyUp event from the methods pane so you can implement code in that method.
Step 2 - Put in a write statement to write out the value of keyCode, run your app and then press the letter key you want to use as part of your 'sequence' to find out the keyCode for the desired key.
Step 3 - Implement some logic on the 'shift' parameter to work out which of the modifier keys (Shift, Ctrl, Alt) are also pressed and if they've done the correct combination of Ctrl/Alt/Shift + key, then you would create and show your other form.
Hints:
1. There are already some Jade constants like J_key_ ... which may be useful for determining if they pressed the 'letter' key that forms part of the secret sequence.
2. You'll want to look at the bitAnd logic as per the Jade Help for keyUp event for determining which of the modifier keys were pressed.
http://jade.co.nz/docs/jade/Default.htm ... /keyup.htm
Note: I could show you code that does this, but you'll learn more from working it out yourself and I don't want to step on your lecturer's toes. However, if you've tried the code and are still having issues with it not working, paste in your code and I'll see if I can point you in the right direction.
Cheers,
BeeJay.