Post by Mr AdventureThe button "Volume/down" on the keyboard reveals hotspots.
So when a Gamer turns the volume down he or she will see the hotspots.
Is there a way to disable this????
Oops! That function is supposed to be triggered by the C key, not by
"volume down". Must be a bug that Pipmak recognizes that key as "C".
The way to disable that is to define your own keydown handler in
main.lua that overrides the default one. You should do that anyway,
regardless of the bug, since players shouldn't be able to show
hotspots using the C key (and use some of the other key bindings
defined by the default handler, which is more oriented at authoring)
either. See section 2.12 "Keyboard Handling" in the manual.
On what platform is this? To help me debug this, could you make your
own keydown handler and tell me what you get for the "key" and "char"
arguments when you press the "volume down" key (and maybe "volume up"
and any other special keys you have as well)?
-Christian