I want to change the blinking text cursor color of Text Input in Flex 4... How can I change it ?
Is there any way to handle it, or it can be only controlled by Flash Player ???
I want to change the blinking text cursor color of Text Input in Flex 4... How can I change it ?
Is there any way to handle it, or it can be only controlled by Flash Player ???
I had a similar question about this a while ago. I never found a way to update the actual cursor, so I got creative with the solution. My solution was to have two textfields stacked. One input field on top of a dynamic field.
Set the alpha of the input field to 0. Then, add a CHANGE event listener to the input field. In the handler, update the dynamic field and reposition your cursor based on the textWidth.
Not ideal, but it did the job.