This tutorial will show you how to stop people skiping password scenes or something like that by disabling the right click function so they can't select play. I have learnt how to get around this but it is hard and few people know how so here we go:
First of all select your first frame. Then click the actions pannel and type in:
Stage.showMenu = false;
And that's it done! This is probally the simpilist code you will ever learn but i will explain it for the hell of it!
Stage.
This means the flash basically.
showMenu =
Obviously this shows your talking about whether you want the right click menu to appear.
false;
Obviously "false;" means you don't want to show it and "true;" means you do want to. But if you wan't it too you don't have to type in the true code as that is automatic.