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

forked from: Twitterのストーキング

Twitterのストーキング
Get Adobe Flash player
by whaison 13 Jan 2011
  • Forked from kacchan6's ストーキング
  • Diff: 45
  • Related works: 1
  • Talk

    whaison at 13 Jan 2011 10:10
    あれちゃんとうごいてないなこれ
    kacchan6 at 13 Jan 2011 10:53
    動いたww これ、広告とかで使えるような気がする。 楽天ad4uみたいにめっちゃ叩かれそうだけど。
    whaison at 13 Jan 2011 19:00
    そそ 更新しましたから だいたいの制度でうごくはず
    whaison at 13 Jan 2011 19:01
    ログインしてないときのページのバイトサイズ
    whaison at 13 Jan 2011 19:01
    たたかれてこそ 盛り上がる。w 炎上を愛せ! ウソ めんどうなことは嫌いです。w
    whaison at 13 Jan 2011 19:02
    つかっちゃってくださーい
    whaison at 13 Jan 2011 19:02
    fork もとの人がすごいよどっちにしろ
    whaison at 13 Jan 2011 19:02
    その人に 許可とってあげてください。僕はただのコピーさん。

    Tags

    Embed
// forked from kacchan6's ストーキング
package
{
    import flash.display.Loader;
    import flash.display.LoaderInfo;
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.events.IOErrorEvent;
    import flash.net.URLRequest;
    import flash.text.TextField;

    [SWF(backgroundColor=0xffffff, width=465, height=465, frameRate=60)]
    public class crossdomain extends Sprite
    {

        public function crossdomain()
        {

            var tf2:TextField = new TextField();
            tf2.width = 500;
            tf2.x = 100;
            tf2.y = 0;
            addChild(tf2);
            tf2.text="debug"
            
            var tf4:TextField = new TextField();
            tf4.width = 500;
            tf4.x = 50;//マージン
            tf4.y = 50;
            addChild(tf4);
            tf4.htmlText="<B>debug</B>"      
            
            var tf3:TextField = new TextField();//////Twitter
            tf3.width = 500;
            tf3.x = 10;//マージン
            tf3.y = 200;
            addChild(tf3);
            tf3.htmlText="<B>debug</B>"
            
           
            var loader:Loader = new Loader();
            var info:LoaderInfo = loader.contentLoaderInfo;
            info.addEventListener(IOErrorEvent.IO_ERROR, function(e:Event):void
            {
                tf2.text=""+info.bytesLoaded+"////ログアウト状態の値は=46844";//
              tf4.htmlText="<B><font size='20'>"+new Date()+"</font></B>"
              /*
               if(new Date()=""){
                   
               }
               */
               // if(""+info.bytesLoaded+""=="46844"){
               if(info.bytesLoaded<46844){
                     tf3.text = "あなたはTwitterにはログインしてないですね。" 
                }else{
              
                     tf3.htmlText="<B><font size='20'>あなた会社でTwitterにログインしてますね。(笑)<br>\nだめですよ!勤務時間中はログインしたら!<br>\nネット中毒者になっちゃってません?<br>\nちゃんと仕事しましょう公報じゃなければ!</font></B>"  
                }
                
            });
           loader.load(new URLRequest("http://twitter.com/"));
           
        }
    }
}