Hey guys,
I have here a pretty simple little piece of code, but one that comes in real handy. Ever publish a movie with a lot of button events, only to realize that someone can easily cycle through those using the “tab” button? The ensuing yellow box looks pretty ugly and unweildy, huh?
Here’s a simple way to bypass that:
for(var i in _root){
_root*.tabEnabled = false;
}
This will get rid of that for you.
Cheers!
-carmire