I cant find a way to change the default thick blue border around the button that is default.
I want to remove the border on the button when I am in the input field. I have tried various styles but cant find the one that that applies. Does anyone have an idea how to do this? See example below: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="400" height="400"> <mx:Canvas defaultButton="{btn}" width="100%" height="100%"> <mx:TextInput x="51" y="40"/> <mx:Button id="btn" x="51" y="85" label="Button"/> </mx:Canvas> </mx:Application>

