Juan,

Thanks,

I had made the exact same this workaround but with MOUSE_MOVE:

stage.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoved);
                
function mouseMoved (e:MouseEvent) :void{
        stage.focus = inputTextField;
        stage.removeEventListener(MouseEvent.MOUSE_MOVE, mouseMoved);
}

But still nothing happing when I run it in html

Cor



_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to