I just wanted to show it off I don’t think theres a solution to fix it.
I had Anogar test it just to be sure it wasn’t me. Basically if one puts a textfield in an swf and embeds it into a flash in any way (I tried a couple different ways) an equals sign is always turned into a plus sign.
Its probably the most annoying bug ever in Firefox 3. Test it yourself below (they both work in IE7 and Safari).
http://www.kirupa.templarian.com/bug/ < “=” are read as “+”
http://www.kirupa.templarian.com/bug/syntax.swf < Works
Just if anyone wanted to see the flash (I doubt its the issue though).
package
{
import flash.display.*;
import flash.text.*;
public class Main extends Sprite
{
private var syntaxRegion:TextField = new TextField();
public function Main()
{
syntaxRegion.text = "Click Here and Press = ";
syntaxRegion.type = TextFieldType.INPUT;
syntaxRegion.x = 32;
syntaxRegion.y = 0;
syntaxRegion.width = 200;
stage.addChild(syntaxRegion);
}
}
}
[whisper]… why did i post this in client-side hmm… seems like more of a random thing… I can’t be the only one that ran into this bug though.[/whisper]
//edit, I fixed it (its a FF3 bug so it took a quick work around).