Author:
Joe Hakooz
Category:
Flash
Just a quick post here...
Even though accessibility is a good thing and we should always try to include it in our applications, there comes a time when you just need to get rid of the yellow FocusRect box in Flash. One of my AS3 projects, currently in development, needed this quick fix and I found it surprisingly hard to find an answer online. The solution is crazy simple...
stage.stageFocusRect = false;
Just add that one line of code and no more FocusRect in AS3!