Hey all,
A little problem that I hope that somebody can help me out!
I make a word puzzle boggle game with a button that people can used with the mouse click for a answer ('if else" construction “if” the answer is good “else” bad) The problem is that I also make a Enterkey function that also worked but the Enterkey on the keyboard is too sensitive on pressure when you push on it. It will easily read several times on a row ion just one gently push(I can see it on output , it will trace more then once on one push)
I really hope that somebody can solve the problem!
mcButton1.onRelease = trueFunction;
_root.onEnterFrame = function ()
{
if (Key.isDown(13))
{
trueFunction();