forked from: Twitterのストーキング
Twitterのストーキング
// 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/"));
}
}
}