keydown in flex Flex - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:55:39Z http://stackoverflow.com/feeds/question/917034 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/917034/keydown-in-flex-flex 0 keydown in flex Flex fp 2009-05-27T17:30:55Z 2009-10-22T10:00:03Z <p>I have an small application in flex in which I have defined 2 canvases. On one of them I added controls and the other one is used to draw something and no controls are added:</p> <pre><code>&lt;mx:Canvas x="0" y="80" width="100%" height="520%" id="Canvas1"/&gt; &lt;mx:Canvas x="0" y="0" width="100%" height="80" id="Canvas2"/&gt; </code></pre> <p>I add an keydown event handled to the application but it is triggered only after I click with the mouse on the first Canvas(the one where controls have been added). Otherwise the event is not triggered when keys are presses.</p> <p>I've tried several things: to set focus on the second canvas, to add the keydown handler to the application(this),stage, canvas... Unfortunately I didn't find a solution to trigger keydown no matter where the focus is.</p> http://stackoverflow.com/questions/917034/keydown-in-flex-flex/917075#917075 0 Answer by cliff.meyers for keydown in flex Flex cliff.meyers 2009-05-27T17:40:54Z 2009-05-27T17:40:54Z <p>The first problem you describe (having to click the mouse before any KeyboardEvents are dispatched) is likely due to the browser not giving focus to the Flex application itself. You can use Javascript in the HTML wrapper to programmatically give focus to the Flex app on the "body" element's "onLoad" event. I know for certain this works in Firefox and I believe it works okay in IE as well. I'll try to dig up the relevant Javascript code.</p> <p>As far as the second problem, have tried adding an event listener to Application.application for catching all KeyboardEvents?</p> http://stackoverflow.com/questions/917034/keydown-in-flex-flex/917365#917365 0 Answer by vranac for keydown in flex Flex vranac 2009-05-27T18:44:02Z 2009-05-27T18:44:02Z <p>Could you plase post code snipped how you setup the listener for keyboard and how you handle it?</p>