2014年6月4日水曜日

Dropboxで「(フォルダ名)を同期できません: ディレクトリが空ではありません」というエラーが出たときの対処法 - 拡張現実ライフ
    Free Linux Antivirus | Virus Protection | Antivirus for Linux
    
    
    Mac Anti-Virus、セキュリティと保護 | ソフォス無償ツール
    package
    {
        import flash.display.Sprite;
        import flash.text.*;
        import flash.events.Event;
        import flash.events.TextEvent;
        import flash.events.MouseEvent;
    
        public class TextInputExample extends Sprite
        {
            private var myTextBox1:TextField = new TextField();
            private var myTextBox2:TextField = new TextField();
    
            public function TextInputExample()
            {
                myTextBox1.type = TextFieldType.INPUT;
                myTextBox1.width = 200;
                myTextBox1.height = 20;
                myTextBox1.background = true;
                myTextBox1.border = true;
                
                myTextBox2.x=220;
    
                addChild(myTextBox1);
                addChild(myTextBox2);
                myTextBox1.addEventListener(TextEvent.TEXT_INPUT,textInputHandler);
            }
    
            public function textInputHandler(event:TextEvent):void
            {
               myTextBox2.text=event.text;
            }
        }
    }
package;

//import flash.text.TextField;

import flash.display.Sprite;
import flash.text.*;
import flash.events.Event;
import flash.events.TextEvent;
import flash.events.MouseEvent;

class Main extends Sprite
{
    private var myTextBox1 : TextField = new TextField();
    private var myTextBox2 : TextField = new TextField();

    public function new()
    {
        super();
        myTextBox1.type = TextFieldType.INPUT;
        myTextBox1.width = 200;
        myTextBox1.height = 20;
        myTextBox1.background = true;
        myTextBox1.border = true;

        myTextBox2.x = 220;
        myTextBox2.border = true;

        addChild(myTextBox1);
        addChild(myTextBox2);
        myTextBox1.addEventListener(TextEvent.TEXT_INPUT, textInputHandler);
    }

    public function textInputHandler(event : TextEvent) : Void
    {
        myTextBox2.text = event.text;
    }
}


    Flash
    html5
    html5は文字入力出来ない...


fukuokahaxe / Haxe勉強会 / wiki / Haxe資料 / OpenFL / HTML5 — Bitbucket

2014年6月3日火曜日

    CreateJS with PushState というテーマで発表してきた | ALUMICAN.NET
    
    よーわからんけどかっこいい

    第三回CreateJS勉強会に参加しました | LAJ技術ブログ

    第三回勉強会フォローアップ | CreateJS.jp

    CreateJSのDOMElementでDOM要素をコントロール - jsdo.it - Share JavaScript, HTML5 and CSS
SyntaxHighlighterのテストとas3hxのテスト

haxe:3.1.3
openfl:2.0.0
package {
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;


    public class TextFieldExample extends Sprite {
        private var label:TextField;
        private var labelText:String = "Hello world and welcome to the show.";

        public function TextFieldExample() {
            configureLabel();
            setLabel(labelText);
        }

        public function setLabel(str:String):void {
            label.text = str;
        }

        private function configureLabel():void {
            label = new TextField();
            label.autoSize = TextFieldAutoSize.LEFT;
            label.background = true;
            label.border = true;

            var format:TextFormat = new TextFormat();
            format.font = "Verdana";
            format.color = 0xFF0000;
            format.size = 10;
            format.underline = true;

            label.defaultTextFormat = format;
            addChild(label);
        }
    }
}

as3hxで変換した
package;

import flash.display.Sprite;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
import flash.text.TextFormat;


class Main extends Sprite
{
    private var label : TextField;
    private var labelText : String = "Hello world and welcome to the show.";

    public function new()
    {
        super();
        configureLabel();
        setLabel(labelText);
    }

    public function setLabel(str : String) : Void{
        label.text = str;
    }

    private function configureLabel() : Void{
        label = new TextField();
        label.autoSize = TextFieldAutoSize.LEFT;
        label.background = true;
        label.border = true;

        var format : TextFormat = new TextFormat();
        format.font = "Verdana";
        format.color = 0xFF0000;
        format.size = 10;
        format.underline = true;

        label.defaultTextFormat = format;
        addChild(label);
    }
}


Flash書き出し
Link
HTML5書き出し
Link
    Emmet Documentation
    
    ubuntuのchromeがswfファイル開こうとすると保存ダイアログ出るようになっちゃったのでhtmlを作るようにする
    emmetでembedのswfファイル指定する場合はこれでいいのか?
    
    html:5>embed[src=hoge.swf]

    

    


    thinkpad x61sでchromeosをusb起動で試してみたらかなり軽くていい感じ
vimとかも起動してびっくりした xmodmapもあるようだけどubuntuの流用できるのだろうか 中古PC活用:Windows XPパソコンにChromium OSをインストールして再利用する~Chromebookを作ってみよう~ (1/2) - @IT

plantumlみたいなテキストから図を作れるサービスを教えて

  PlantUMLのようにテキストから図を生成できるサービスはいくつかあります。PlantUMLは非常に人気があり、多くの種類の図をサポートしていますが、他のツールもそれぞれ特徴を持っています。以下に、いくつかの代表的なサービスと、それぞれの特徴をご紹介します。 1. Merm...