Is there a way to tell if a Flex TextArea
has a blinking cursor? One indication is if the component is focused:
focusManager.getFocus() == textArea
But it's possible to have a blinking cursor without having the focus. I'm not sure if the converse is possible (focus without blinking cursor).
Edit: The rub here appears to be a distinction between "component-level" focus and "player-level" focus (per the FocusManager
docs). I haven't yet found any great explanation of the latter or APIs to it.