In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

TextFieldがスクロールしてしまう件

TextField をこんな感じで作ったとき、
* TextField の文字をドラッグしたり、
* TextField 上でマウスのスクロールをコロコロすると
* 文字がスクロールしてしまいます。
* どうやったらスクロールしなくなるのでしょうか?
Get Adobe Flash player
by bkzen 03 Aug 2010
  • Related works: 3
  • Talk

    Fumio at 04 Sep 2010 11:30
    TextField.scrollイベントで、強引にスクロールを戻しました。選択されると一瞬スクロールして目障りなので、併せてTextField.selectableプロパティをfalseに設定しています。 http://wonderfl.net/c/iMfk
    Fumio at 04 Sep 2010 11:55
    あ、TextField.mouseWheelEnabledでよかったんですね。気づきませんでした。
    Embed
/**
 * Copyright bkzen ( http://wonderfl.net/user/bkzen )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/zXHQ
 */

/**
 * TextField をこんな感じで作ったとき、
 * TextField の文字をドラッグしたり、
 * TextField 上でマウスのスクロールをコロコロすると
 * 文字がスクロールしてしまいます。
 * どうやったらスクロールしなくなるのでしょうか?
 */
package {
    import flash.text.TextFormatAlign;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;
    import flash.text.TextField;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var txt:TextField = new TextField();
            var tf:TextFormat = new TextFormat(null, 12, 0x777777);
            tf.align = TextFormatAlign.LEFT;
            tf.leading = 4;
            txt.defaultTextFormat = tf;
            txt.autoSize = TextFieldAutoSize.LEFT;
            txt.text = "ほげほげ\nもっじゃもじゃ\nぴよぴよ";
            addChild(txt);
        }
    }
}