File: television.swf-(1.46 MB, 550x400, Other)
[_] RELOAD THIS Anonymous 11/09/17(Thu)03:02:18 No.3293164
or hit escape. sorry about any static videos.
¯\_(ツ)_/¯
Marked for deletion (old).
>> [_] Anonymous 11/09/17(Thu)12:08:24 No.3293209
>>3293164
what did I just watch?
>> [_] Anonymous 11/09/17(Thu)14:14:16 No.3293226
the singing girl made me close this flash
if there was a punchline, it has been dragging on way too long
>> [_] Anonymous 11/09/17(Thu)15:13:58 No.3293245
I like it, it's weird
>> [_] Anonymous 11/09/17(Thu)15:56:04 No.3293251
rules the nation
>> [_] Anonymous 11/09/17(Thu)16:46:30 No.3293261
fucking nyanners
>> [_] gravelord 11/09/17(Thu)16:56:49 No.3293266
>>3293164
fucking hell I open and I get the pajeet with his shitty goodbye rap music video
>> [_] Anonymous 11/09/17(Thu)17:09:47 No.3293273
1.46MB and so many vidya out here, you wizard !
>> [_] Anonymous 11/09/17(Thu)17:23:05 No.3293275
>>3293273
It's powered by magic
>> [_] Anonymous 11/09/17(Thu)17:44:05 No.3293280
>>3293275
Nah seriously, how does this work ? Im pretty sure thats actually a streaming link
>> [_] Anonymous 11/09/17(Thu)17:52:24 No.3293281
>>3293280
You would right. flash doesn't work without internet.
>> [_] Anonymous 11/09/17(Thu)17:52:50 No.3293282
>>3293280
it works somewhat like so
public dynamic class MainTimeline extends MovieClip
{
public function MainTimeline()
{
super();
addFrameScript(0,this.frame1);
}
public var credits;
public var vid:Video;
public var wait;
public var nc:NetConnection;
public var ns:NetStream;
public function handleConnectionEvent(param1:*) : *
{
var event:* = param1;
if(event.info.code == "NetConnection.Connect.Success")
{
this.ns = new NetStream(this.nc);
this.ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR,function(param1:*):*
{
});
this.ns.addEventListener(NetStatusEvent.NET_STATUS,function(param1:*):*
{
switch(param1.info.code)
{
case "NetStream.Buffer.Full":
case "NetStream.Play.Start":
if(contains(wait))
{
removeChild(wait);
}
doResizing(null);
break;
case "NetStream.Play.Stop":
case "NetStream.Play.Failed":
case "NetStream.Connect.Failed":
case "NetStream.Connect.Rejected":
case "NetStream.Failed":
case "NetStream.Play.StreamNotFound":
playVideo();
break;
}
});
this.vid.attachNetStream(this.ns);
this.playVideo();
}
}
public function playVideo() : void
{
if(!this.ns)
{
return;
}
addChild(this.wait);
this.ns.play("http://ssh.locker.phinugamma.org/magick.mp4");
}
public function handleKeyUp(param1:KeyboardEvent) : void
{
if(param1.keyCode == Keyboard.ESCAPE)
{
this.playVideo();
}
}
>> [_] Anonymous 11/09/17(Thu)18:09:53 No.3293287
>>3293282
Thx for this knownledge .