ExternalInterfaceクラス [テスト1]

by ProjectNya
//////////////////////////////////////////////////////////////////////////////
ExternalInterfaceクラス [テスト1]
ExternalInterfaceを使ってみる (1)
http://www.project-nya.jp/modules/weblog/details.php?blog_id=643
あれ? wonderfl で ExternalInterface 使えない?
//////////////////////////////////////////////////////////////////////////////
♥0 | Line 65 | Modified 2010-06-30 21:27:46 | MIT License
play

ActionScript3 source code

/**
 * Copyright ProjectNya ( http://wonderfl.net/user/ProjectNya )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/yOCm
 */

////////////////////////////////////////////////////////////////////////////////
// ExternalInterfaceクラス [テスト1]
//
// ExternalInterfaceを使ってみる (1)
// http://www.project-nya.jp/modules/weblog/details.php?blog_id=643
//
// あれ? wonderfl で ExternalInterface 使えない?
////////////////////////////////////////////////////////////////////////////////

package {

    import flash.display.Sprite;
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.external.ExternalInterface;

    [SWF(backgroundColor="#FFFFFF", width="465", height="465", frameRate="30")]

    public class Main extends Sprite {
        private var label:Label;

        public function Main() {
            //Wonderfl.disable_capture();
            //Wonderfl.capture_delay(4);
            if (stage) init();
            else addEventListener(Event.ADDED_TO_STAGE, init, false, 0, true);
        }

        private function init(evt:Event = null):void {
            label = new Label(120, 40);
            label.x = 232 - 60;
            label.y = 232 - 20;
            label.text = "click !";
            label.textColor = 0x000000;
            label.alpha = 0.3;
            addChild(label);
            stage.addEventListener(MouseEvent.CLICK, click, false, 0, true);
        }
        private function click(evt:MouseEvent):void {
            label.alpha = 1;
            ExternalInterface.call("alert", "ExternalInterfaceクラスでJavaScriptを呼び出す!");
            //ExternalInterface.call("function() { window.open('window.html', 'view', 'width=500, height=200, toolbar=no, status=no, menubar=no, scrollbars=no, resizable=no'); void(0); }");
        }

    }

}


import flash.display.Sprite;
import flash.text.TextField;
import flash.text.TextFieldType;
import flash.text.TextFieldAutoSize;
import flash.text.AntiAliasType;
import flash.text.TextFormat;
import flash.text.TextFormatAlign;

class Label extends Sprite {
    private var txt:TextField;
    private static var fontType:String = "Arial";
    private var txtWidth:uint;
    private var fontSize:uint;

    public function Label(w:uint, s:uint) {
        txtWidth = w;
        fontSize = s;
        draw();
    }

    private function draw():void {
        txt = new TextField();
        txt.width = txtWidth;
        addChild(txt);
        txt.autoSize = TextFieldAutoSize.CENTER;
        txt.type = TextFieldType.DYNAMIC;
        txt.selectable = false;
        //txt.embedFonts = true;
        //txt.antiAliasType = AntiAliasType.ADVANCED;
        var tf:TextFormat = new TextFormat();
        tf.font = fontType;
        tf.size = fontSize;
        tf.align = TextFormatAlign.CENTER;
        txt.defaultTextFormat = tf;
    }
    public function set text(param:String):void {
        txt.text = param;
    }
    public function set textColor(param:uint):void {
        txt.textColor = param;
    }

}