Is it possible to catch a “Focus selection” on a movieclip (using accessibility stuff such as TAB, ARROWS, ENTER and SPACE keys only)?
In the following example, I can’t find a way to catch the “Focus selection” on the blue square. Any suggestions?
import flash.display.SimpleButton;
import flash.display.MovieClip;
import flash.events.MouseEvent;
import flash.events.Event;
import flash.display.Sprite;
import flash.events.FocusEvent;
// build red button
var btSprite:Sprite = new Sprite();
btSprite.graphics.beginFill(0xff0000);
btSprite.graphics.drawRect(0,0,20,20);
btSprite.graphics.endFill();
var redBtn:SimpleButton;
redBtn = new SimpleButton(btSprite, btSprite, btSprite, btSprite);
addChild(redBtn);
redBtn.x = redBtn.y = 0;
// build blue square
var blueSquare:MovieClip = new MovieClip();
blueSquare.graphics.beginFill(0x0000ff);
blueSquare.graphics.drawRect(0,0,20,20);
blueSquare.graphics.endFill();
addChild(blueSquare);
blueSquare.x = blueSquare.y = 100; // not sure it does not show over myBtn
// set blue square selectable using TAB key
blueSquare.tabEnabled = true;
blueSquare.focusRect = true;
// listen events
redBtn.addEventListener(MouseEvent.CLICK, onEvent); // work click / tab select
blueSquare.addEventListener(Event.SELECT, onEvent); // does not work
blueSquare.addEventListener(MouseEvent.CLICK, onEvent); // works click only
// catch events on objects
function onEvent(event:Event){
trace((event.target?event.target.name:'none') + " selected!");
}
Have you tried using the focus events?
here is a good tutorial:
http://www.kirupa.com/forum/showthread.php?311824-AS3-Simple-focus-example
In regards to arrow keys or space bar or enter, you’ll need to use a key Listener: