Matt
Matt

Reputation: 3061

AS3 - Remove focus of StageText field

I'm setting the focus to a StageText textfield with stagetext.assignFocus() (The cursor is blinking in there)

How can that focus be removed so the cursor is not blinking anymore?

(I'm using Flash CS 6 and Air 3.6)

Upvotes: 2

Views: 1291

Answers (1)

Barış Uşaklı
Barış Uşaklı

Reputation: 13532

This should do the trick :

stage.focus = null;

Upvotes: 4

Related Questions