From c49e3102e97927255e307ffa9a3e798f33e6fd70 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Wed, 16 May 2007 22:45:46 +0000 Subject: [PATCH] Default to unselectable text. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@250 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/as/com/threerings/flash/FloatingTextAnimation.as | 1 + 1 file changed, 1 insertion(+) diff --git a/src/as/com/threerings/flash/FloatingTextAnimation.as b/src/as/com/threerings/flash/FloatingTextAnimation.as index a3cd4ad7..ccc0f1f6 100644 --- a/src/as/com/threerings/flash/FloatingTextAnimation.as +++ b/src/as/com/threerings/flash/FloatingTextAnimation.as @@ -48,6 +48,7 @@ public class FloatingTextAnimation extends Sprite text :String, textArgs :Object = null, duration :Number = 1000, dy :int = -10) { var tf :TextField = TextFieldUtil.createField(text, textArgs); + tf.selectable = false; tf.x = -(tf.width/2) tf.y = -(tf.height/2); addChild(tf);