How do i remove the yellow border - focusRect - in as3 I've tried Stage.focusRect = false but that doesn't do the job.

link|improve this question
feedback

2 Answers

stage.stageFocusRect = false;

More info: Rockabit blogpost

:)

link|improve this answer
feedback

Try:

focusRect = false;

In your class' constructor. Worked for me :-)

From the docs: flash.display.InteractiveObject.focusRect(focusRect:Object):void

Specifies whether this object displays a focus rectangle. It can take one of three values: true, false, or null. Values of true and false work as expected, specifying whether or not the focus rectangle appears. A value of null indicates that this object obeys the stageFocusRect property of the Stage.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown