I'm creating a DDR-like game for an assignment and my keyboard seems to respond and trace it, but only if I press on the screen with the mouse first.
How can I get rid of that and just have it respond right away?
right_mc
is the arrow that's movingArrowRight_mc
is the arrow at the topperfect_mc
should pop up brieflyand so should a glowing arrow where it hits.
if(rightDown){ trace("right arrow"); if(right_mc){ if(right_mc.y >= ArrowRight_mc.y){ perfect_mc.visible = true; glowRight_mc.visible = true; } } }