I didn't get that far in the game, but I find something about the multiplier a bit odd. If it's purely based on score and there is only one life for the bee, then the multiplier does nothing except increase the score for everyone that makes it to the late game.
I don't think it is possible to disable right clicking completely, you can however use this code to track it and make it game over or whatever when the player right clicks:
var rootMenu = new ContextMenu();
rootMenu.hideBuiltInItems();
_root.menu = rootMenu;
_root.onEnterFrame = function () {
if (Key.isDown(2)) {
trace("You cheat.");
}
};
These lines should disable tabbing:
_root._focusrect = false;
_root.tabEnabled = false;
_root.tabChildren = false;
The Help section needs more help, I had no idea what I was supposed to target with all the stuff flying around and meters counting. It might be obvious to the maker of the game that it's the big Dartboard with numbers in it, but it wasn't to me.
The first time of each game is impossible, just a way to see what letters are there. Every other attempt has little to do with spelling and more to do with reflexes.
Arrows everywhere, it took me a few minutes to even change anything about the car. Now I have and... well, I kind of miss the part of the game where I drive around in the car.