STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
229595
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2595 · P5190

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/13751074?noj=FRM13751074-22DC" width="1" height="1"></div>

8-bit Binary Converter.swf

This is the info page for
Flash #58854

(Click the ID number above for more basic data on this flash file.)


Text
100%

01100001011000010110000101100001011000010110000
10110000101100001011000010110000101100001011000
01011000010110000101100001011000010110000101100
00101100001011000010110000101100001011000010110
00010110000101100001011000010110000101100001011
00001011000010110000101100001011000010110000101
10000101100001011000010110000101100001011000010
11000010110000101100001011000010110000101100001
01100001011000010110000101100001011000010110000
10110000101100001011000010110000101100001011000
01011000010110000101100001011000010110000101100
00101100001011000010110000101100001011000010110
00010110000101100001011000010110000101100001011
00001011000010110000101100001011000010110000101
10000101100001011000010110000101100001011000010
11000010110000101100001011000010110000101100001
01100001011000010110000101100001011000010110000
10110000101100001011000010110000101100001011000
01011000010110000101100001011000010110000101100
00101100001011000010110000101100001011000010110
00010110000101100001011000010110000101100001011
00001011000010110000101100001011000010110000101
10000101100001011000010110000101100001011000010

TO ENGLISH

TO BINARY

MUTE THIS CRAP

ActionScript [AS3]

Section 1
//MainTimeline (Binaryconverter8_fla.MainTimeline) package Binaryconverter8_fla { import flash.events.*; import flash.text.*; import flash.display.*; import flash.media.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.geom.*; import flash.net.*; import flash.printing.*; import flash.system.*; import flash.ui.*; import flash.utils.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var output:TextField; public var loaded:TextField; public var life; public var urdumb; public var heightt; public var bg:MovieClip; public var soundOn; public var X; public var muteb:MovieClip; public var encrypt3:MovieClip; public var decrypt3:MovieClip; public var s:SoundTransform; public var Y; public var widthh; public var ohs; public var input:TextField; public var ones; public var vol; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2); } public function addBinary(_arg1:Event){ var _local2:*; _local2 = new BinaryGraphic(Math.floor((Math.random() * 2))); _local2.x = (_local2.x + (widthh * X)); _local2.y = (_local2.y + (heightt * Y)); bg.addChild(_local2); if (X < (550 / widthh)){ X++; } else { X = 0; Y++; }; if (Y > (400 / heightt)){ Y = 0; }; } function frame1(){ stop(); stage.addEventListener(Event.ENTER_FRAME, preloader); } public function decryptFunc3(_arg1:MouseEvent){ var _local2:*; var _local3:*; var _local4:*; var _local5:*; output.text = ""; _local2 = 0; while (_local2 < input.text.length) { _local3 = 0; if ((((input.text.charAt(_local2) == "1")) || ((input.text.charAt(_local2) == "0")))){ _local4 = 7; while (_local4 >= 0) { _local5 = 1000; while (_local5 > 0) { if ((((input.text.charAt(_local2) == "1")) || ((input.text.charAt(_local2) == "0")))){ break; } else { _local2++; }; _local5--; }; if (input.text.charAt(_local2) == "1"){ _local3 = (_local3 + Math.pow(2, _local4)); }; if (_local4 != 0){ _local2++; }; _local4--; }; }; output.appendText(String.fromCharCode(_local3)); _local2++; }; } public function preloader(_arg1:Event){ var _local2:*; _local2 = (loaderInfo.bytesLoaded / loaderInfo.bytesTotal); if (loaderInfo.bytesLoaded >= loaderInfo.bytesTotal){ stage.removeEventListener(Event.ENTER_FRAME, preloader); gotoAndStop(2); } else { if (_local2 < 0.5){ loaded.text = String((Math.round((_local2 * 100)) + "%")); } else { loaded.text = String(((100 - Math.round((_local2 * 100))) + "%")); }; }; } public function checkifurdumb(){ if (urdumb){ }; } public function muteFunc(_arg1:MouseEvent){ if (soundOn){ s.volume = 0; SoundMixer.soundTransform = s; soundOn = false; } else { s.volume = vol; SoundMixer.soundTransform = s; soundOn = true; }; } function frame2(){ urdumb = true; life = 100; soundOn = true; vol = 0.5; ohs = 0; ones = 0; s = new SoundTransform(); s.volume = vol; SoundMixer.soundTransform = s; encrypt3.buttonMode = true; decrypt3.buttonMode = true; stage.focus = input; X = 0; Y = 0; widthh = 12.5; heightt = 15; stage.addEventListener(Event.ENTER_FRAME, addBinary); encrypt3.addEventListener(MouseEvent.CLICK, encryptFunc3); decrypt3.addEventListener(MouseEvent.CLICK, decryptFunc3); muteb.addEventListener(MouseEvent.CLICK, muteFunc); } public function encryptFunc3(_arg1:MouseEvent){ var _local2:*; var _local3:*; checkifurdumb(); output.text = ""; _local2 = 0; while (_local2 < input.text.length) { _local3 = input.text.charAt(_local2).charCodeAt(0); if (_local3 < 1){ output.appendText("0"); }; if (_local3 < 2){ output.appendText("0"); }; if (_local3 < 4){ output.appendText("0"); }; if (_local3 < 8){ output.appendText("0"); }; if (_local3 < 16){ output.appendText("0"); }; if (_local3 < 32){ output.appendText("0"); }; if (_local3 < 64){ output.appendText("0"); }; if (_local3 < 128){ output.appendText("0"); }; output.appendText(decimalToBin(_local3)); _local2++; }; } public function decimalToBin(_arg1){ var _local2:*; _local2 = _arg1.toString(2); return (_local2); } public function decimalToHex(_arg1){ var _local2:*; _local2 = _arg1.toString(16); return (_local2); } } }//package Binaryconverter8_fla
Section 2
//BinaryGraphic (BinaryGraphic) package { import flash.events.*; import flash.text.*; import flash.display.*; public class BinaryGraphic extends MovieClip { var myFont; private var life;// = 100 public var randumb;// = 0 public var textbox:TextField; var myFormat:TextFormat; public function BinaryGraphic(_arg1){ randumb = 0; textbox = new TextField(); myFormat = new TextFormat(); myFont = new Font1(); life = 100; super(); randumb = _arg1; addEventListener(Event.ADDED, beginClass); addEventListener(Event.ENTER_FRAME, eFrame); } function eFrame(_arg1:Event){ life--; if (life <= 0){ destroyThis(); }; } private function beginClass(_arg1:Event){ life = MovieClip(root).life; textbox.embedFonts = true; textbox.height = 20; textbox.width = 20; textbox.selectable = false; textbox.textColor = 0xFF00; textbox.wordWrap = true; if (randumb == 0){ textbox.text = "0"; MovieClip(root).ohs++; } else { textbox.text = "1"; MovieClip(root).ones++; }; myFormat.size = 20; myFormat.font = myFont.fontName; textbox.defaultTextFormat = myFormat; addChild(textbox); } function destroyThis(){ parent.removeChild(this); removeEventListener(Event.ENTER_FRAME, eFrame); } } }//package
Section 3
//Font1 (Font1) package { import flash.text.*; public dynamic class Font1 extends Font { } }//package
Section 4
//songlink (songlink) package { import flash.media.*; public dynamic class songlink extends Sound { } }//package

Library Items

Symbol 1 FontUsed by:2 4 12 14 16
Symbol 2 EditableTextUses:1Used by:Timeline
Symbol 3 GraphicUsed by:6
Symbol 4 TextUses:1Used by:5
Symbol 5 MovieClipUses:4Used by:6
Symbol 6 MovieClipUses:3 5Used by:Timeline
Symbol 7 GraphicUsed by:Timeline
Symbol 8 FontUsed by:9 10
Symbol 9 EditableTextUses:8Used by:Timeline
Symbol 10 EditableTextUses:8Used by:Timeline
Symbol 11 GraphicUsed by:13 15 17
Symbol 12 TextUses:1Used by:13
Symbol 13 MovieClipUses:11 12Used by:Timeline
Symbol 14 TextUses:1Used by:15
Symbol 15 MovieClipUses:11 14Used by:Timeline
Symbol 16 TextUses:1Used by:17
Symbol 17 MovieClipUses:11 16Used by:Timeline
Symbol 18 Sound {songlink}Used by:Timeline

Instance Names

"loaded"Frame 1Symbol 2 EditableText
"bg"Frame 2Symbol 6 MovieClip
"input"Frame 2Symbol 9 EditableText
"output"Frame 2Symbol 10 EditableText
"decrypt3"Frame 2Symbol 13 MovieClip
"encrypt3"Frame 2Symbol 15 MovieClip
"muteb"Frame 2Symbol 17 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS3.




http://swfchan.com/12/58854/info.shtml
Created: 17/4 -2019 00:35:36 Last modified: 17/4 -2019 00:35:36 Server time: 22/12 -2024 14:19:57