I am using FlashDevelop & Flash Player 11.7 (NPAPI version).
Basically I see a random white pixel at the bottom of the insertion point/caret/text cursor that appears when a TextField has focus. It constantly flashes as the text cursor flashes but at different intervals. It's driving me crazy.
Here's a screen grab I managed to get after a few attempts:
Why does it do this and what do I do to disable it?
this._textField = new TextField();
this._textField.defaultTextFormat = new TextFormat("FleftexYC", 8, 0x000000, true);
this._textField.embedFonts = true;
this._textField.height = 13;
this._textField.type = TextFieldType.INPUT;
this._textField.x = 9;
this._textField.y = 7;
FleftexYC is a custom/embedded font, but that's not the issue. This still happens with system fonts like Arial.
Any thoughts?
[EDIT]: Confirmed in 11.8 also. However, In Internet Explorer the pixel is black and not white.
[EDIT]: I am using Windows 7, not sure if this happens on Macs too. This not happen on Google Chrome's PPAPI version of Flash but it does happen in the NPAPI version and Internet Explorer's version.
[EDIT]: In addition to Internet Explorer, it looks like Mozilla Firefox also shows a flashing black pixel instead of a white one.
embedFonts
tofalse
doesn't really change anything. I am using Windows 7 if that helps. – Birdwatcher