STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #97812 |
Created by Veins Snow, eyes and hair animation Music: Ice Temple by ATProductions 2010-12 Victor A. There is no futanari in the Sceret Menu! |
ActionScript [AS3]
Section 1//MainTimeline (snowAS3031Ucogisnow_fla.MainTimeline) package snowAS3031Ucogisnow_fla { import flash.events.*; import flash.display.*; import flash.net.*; public dynamic class MainTimeline extends MovieClip { public var myButton:SimpleButton; public function MainTimeline(){ addFrameScript(1, frame2, 78, frame79); } function frame79(){ gotoAndPlay(2); } public function goThere(_arg1:MouseEvent){ var _local2:URLRequest; _local2 = new URLRequest("http://www.ucogi.com/"); navigateToURL(_local2); } function frame2(){ myButton.addEventListener(MouseEvent.CLICK, goThere); } } }//package snowAS3031Ucogisnow_flaSection 2//Timeline_1 (snowAS3031Ucogisnow_fla.Timeline_1) package snowAS3031Ucogisnow_fla { import flash.events.*; import flash.display.*; import flash.net.*; import flash.system.*; public dynamic class Timeline_1 extends MovieClip { public const FRAME_RATE_ADJUST:Boolean = true; public const LOADER_FRAME_RATE:Number = 30; public const AUTO_PLAY:Boolean = false; public var bar:MovieClip; public var targetURL:URLRequest; public var ngButton:SimpleButton; public var but:MovieClip; public var playButton:SimpleButton; public var movieFrameRate:Number; public var loadingComplete:Boolean; public var initialized:Boolean; public function Timeline_1(){ addFrameScript(0, frame1, 50, frame51); } public function init():void{ if (initialized){ return; }; movieFrameRate = 0; if (((FRAME_RATE_ADJUST) && (stage))){ movieFrameRate = stage.frameRate; stage.frameRate = LOADER_FRAME_RATE; }; initialized = true; stop(); if (((root) && ((root is MovieClip)))){ MovieClip(root).stop(); }; loadingComplete = false; ngButton.addEventListener(MouseEvent.CLICK, ngButtonClickHandler, false, 0, true); addEventListener(Event.ENTER_FRAME, enterFrameHandler, false, 0, true); if (meetsVersion([9, 0, 28, 0])){ addEventListener(Event.REMOVED_FROM_STAGE, cleanup, false, 0, true); }; enterFrameHandler(); } public function enterFrameHandler(_arg1:Event=null):void{ var _local2:Number; if (((((!(movieFrameRate)) && (FRAME_RATE_ADJUST))) && (stage))){ movieFrameRate = stage.frameRate; stage.frameRate = LOADER_FRAME_RATE; }; if (!loadingComplete){ _local2 = 0; if (loaderInfo){ _local2 = (loaderInfo.bytesLoaded / loaderInfo.bytesTotal); }; if (bar){ bar.scaleX = _local2; }; if (_local2 == 1){ loadingComplete = true; if (AUTO_PLAY){ startMovie(); } else { gotoAndPlay("loaded"); }; }; }; } public function meetsVersion(_arg1:Array):Boolean{ var _local2:Array; var _local3:uint; _local2 = String(Capabilities.version.split(" ")[1]).split(","); _local3 = 0; while (_local3 < _arg1.length) { if (uint(_local2[_local3]) > _arg1[_local3]){ return (true); }; if (uint(_local2[_local3]) < _arg1[_local3]){ return (false); }; _local3++; }; return (true); } public function playButtonClickHandler(_arg1:Event=null):void{ startMovie(); } public function butClicked(_arg1:MouseEvent){ navigateToURL(targetURL); } function frame1(){ initialized = false; init(); but.buttonMode = true; targetURL = new URLRequest("http://www.chaoslevel.com/vic/index.html"); but.addEventListener(MouseEvent.CLICK, butClicked); } public function ngButtonClickHandler(_arg1:Event):void{ navigateToURL(new URLRequest("http://www.ucogi.com"), "_blank"); } public function cleanup(_arg1:Event=null){ if (initialized){ ngButton.removeEventListener(MouseEvent.CLICK, ngButtonClickHandler); removeEventListener(Event.ENTER_FRAME, enterFrameHandler); if (meetsVersion([9, 0, 28, 0])){ removeEventListener(Event.REMOVED_FROM_STAGE, cleanup); }; if (movieFrameRate){ stage.frameRate = movieFrameRate; movieFrameRate = 0; }; }; initialized = false; } function frame51(){ stop(); if (((playButton) && (!(playButton.hasEventListener(MouseEvent.CLICK))))){ playButton.addEventListener(MouseEvent.CLICK, playButtonClickHandler, false, 0, true); }; } public function startMovie():void{ cleanup(); if (((root) && ((root is MovieClip)))){ MovieClip(root).play(); }; dispatchEvent(new Event(Event.COMPLETE)); } } }//package snowAS3031Ucogisnow_flaSection 3//Timeline_11 (snowAS3031Ucogisnow_fla.Timeline_11) package snowAS3031Ucogisnow_fla { import flash.display.*; public dynamic class Timeline_11 extends MovieClip { public function Timeline_11(){ addFrameScript(39, frame40); } function frame40(){ stop(); } } }//package snowAS3031Ucogisnow_flaSection 4//Snowflake (Snowflake) package { import flash.events.*; import flash.display.*; public class Snowflake extends MovieClip { private var yPos:Number;// = 0 private var ySpeed:Number;// = 0 private var scale:Number;// = 0 private var radius:Number;// = 0 private var xSpeed:Number;// = 0 private var alphaValue:Number;// = 0 private var maxHeight:Number;// = 0 private var maxWidth:Number;// = 0 private var xPos:Number;// = 0 public function Snowflake(){ xPos = 0; yPos = 0; xSpeed = 0; ySpeed = 0; radius = 0; scale = 0; alphaValue = 0; maxHeight = 0; maxWidth = 0; super(); SetInitialProperties(); } function MoveSnowFlake(_arg1:Event){ xPos = (xPos + xSpeed); yPos = (yPos + ySpeed); this.x = (this.x + (radius * Math.cos(xPos))); this.y = (this.y + ySpeed); if ((this.y - this.height) > maxHeight){ this.y = (-10 - this.height); this.x = (Math.random() * maxWidth); }; this.rotation = (this.rotation + xSpeed); } public function SetInitialProperties(){ var _local1:Stage; xSpeed = (0.05 + (Math.random() * 0.1)); ySpeed = (0.5 + (Math.random() * 3)); radius = (0.1 + (Math.random() * 2)); scale = (0.01 + Math.random()); alphaValue = (0.1 + Math.random()); _local1 = (this.stage as Stage); maxWidth = _local1.stageWidth; maxHeight = _local1.stageHeight; this.x = (Math.random() * maxWidth); this.y = (Math.random() * maxHeight); xPos = this.x; yPos = this.y; this.scaleX = (this.scaleY = scale); this.alpha = alphaValue; this.addEventListener(Event.ENTER_FRAME, MoveSnowFlake); } } }//package
Library Items
Symbol 1 Graphic | Used by:2 | |
Symbol 2 MovieClip {Snowflake} | Uses:1 | Used by:Timeline |
Symbol 3 Graphic | Used by:Timeline | |
Symbol 4 Graphic | Used by:68 | |
Symbol 5 Graphic | Used by:68 | |
Symbol 6 Graphic | Used by:7 | |
Symbol 7 MovieClip | Uses:6 | Used by:68 |
Symbol 8 Graphic | Used by:68 | |
Symbol 9 Graphic | Used by:68 | |
Symbol 10 Graphic | Used by:11 | |
Symbol 11 MovieClip | Uses:10 | Used by:68 |
Symbol 12 Graphic | Used by:14 | |
Symbol 13 Graphic | Used by:14 | |
Symbol 14 MovieClip | Uses:12 13 | Used by:68 |
Symbol 15 Graphic | Used by:68 | |
Symbol 16 Graphic | Used by:68 | |
Symbol 17 Graphic | Used by:68 | |
Symbol 18 Graphic | Used by:25 56 | |
Symbol 19 Graphic | Used by:25 56 | |
Symbol 20 Graphic | Used by:25 56 | |
Symbol 21 Graphic | Used by:25 56 | |
Symbol 22 Graphic | Used by:25 56 | |
Symbol 23 Graphic | Used by:25 56 | |
Symbol 24 Graphic | Used by:25 56 | |
Symbol 25 MovieClip | Uses:18 19 20 21 22 23 24 | Used by:68 |
Symbol 26 Graphic | Used by:68 | |
Symbol 27 Graphic | Used by:51 | |
Symbol 28 Graphic | Used by:51 | |
Symbol 29 Graphic | Used by:51 | |
Symbol 30 Graphic | Used by:51 | |
Symbol 31 Graphic | Used by:51 | |
Symbol 32 Graphic | Used by:51 | |
Symbol 33 Graphic | Used by:51 | |
Symbol 34 Graphic | Used by:51 | |
Symbol 35 Graphic | Used by:36 | |
Symbol 36 MovieClip | Uses:35 | Used by:51 |
Symbol 37 Graphic | Used by:38 | |
Symbol 38 MovieClip | Uses:37 | Used by:51 |
Symbol 39 Graphic | Used by:40 | |
Symbol 40 MovieClip | Uses:39 | Used by:51 |
Symbol 41 Graphic | Used by:51 | |
Symbol 42 Graphic | Used by:51 | |
Symbol 43 Graphic | Used by:51 | |
Symbol 44 Graphic | Used by:51 | |
Symbol 45 Graphic | Used by:51 | |
Symbol 46 Graphic | Used by:51 | |
Symbol 47 Graphic | Used by:51 | |
Symbol 48 Graphic | Used by:51 | |
Symbol 49 Graphic | Used by:51 | |
Symbol 50 Graphic | Used by:51 | |
Symbol 51 MovieClip | Uses:27 28 29 30 31 32 33 34 36 38 40 41 42 43 44 45 46 47 48 49 50 | Used by:68 |
Symbol 52 Graphic | Used by:68 | |
Symbol 53 Graphic | Used by:54 | |
Symbol 54 Button | Uses:53 | Used by:68 |
Symbol 55 Graphic | Used by:56 | |
Symbol 56 MovieClip {snowAS3031Ucogisnow_fla.Timeline_11} | Uses:18 19 20 21 22 23 24 55 | Used by:68 |
Symbol 57 ShapeTweening | Used by:68 | |
Symbol 58 Graphic | Used by:68 | |
Symbol 59 ShapeTweening | Used by:68 | |
Symbol 60 ShapeTweening | Used by:68 | |
Symbol 61 Graphic | Used by:68 | |
Symbol 62 Graphic | Used by:67 | |
Symbol 63 Graphic | Used by:66 67 | |
Symbol 64 Graphic | Used by:67 | |
Symbol 65 Graphic | Used by:66 67 | |
Symbol 66 MovieClip | Uses:65 63 | Used by:67 |
Symbol 67 Button | Uses:62 63 64 66 65 | Used by:68 |
Symbol 68 MovieClip {snowAS3031Ucogisnow_fla.Timeline_1} | Uses:4 5 7 8 9 11 14 15 16 17 25 26 51 52 54 56 57 58 59 60 61 67 | Used by:Timeline |
Symbol 69 Graphic | Used by:Timeline | |
Symbol 70 Graphic | Used by:71 | |
Symbol 71 MovieClip | Uses:70 | Used by:Timeline |
Symbol 72 Graphic | Used by:Timeline | |
Symbol 73 Graphic | Used by:Timeline | |
Symbol 74 Graphic | Used by:Timeline | |
Symbol 75 Graphic | Used by:Timeline | |
Symbol 76 Graphic | Used by:77 | |
Symbol 77 MovieClip | Uses:76 | Used by:Timeline |
Symbol 78 Graphic | Used by:Timeline | |
Symbol 79 Graphic | Used by:80 | |
Symbol 80 MovieClip | Uses:79 | Used by:Timeline |
Symbol 81 Graphic | Used by:Timeline | |
Symbol 82 Graphic | Used by:Timeline | |
Symbol 83 Graphic | Used by:84 | |
Symbol 84 MovieClip | Uses:83 | Used by:Timeline |
Symbol 85 Graphic | Used by:Timeline | |
Symbol 86 Graphic | Used by:Timeline | |
Symbol 87 Graphic | Used by:Timeline | |
Symbol 88 Graphic | Used by:Timeline | |
Symbol 89 Graphic | Used by:Timeline | |
Symbol 90 Graphic | Used by:Timeline | |
Symbol 91 Graphic | Used by:Timeline | |
Symbol 92 Graphic | Used by:Timeline | |
Symbol 93 Graphic | Used by:Timeline | |
Symbol 94 Graphic | Used by:Timeline | |
Symbol 95 Graphic | Used by:96 | |
Symbol 96 MovieClip | Uses:95 | Used by:Timeline |
Symbol 97 Graphic | Used by:101 | |
Symbol 98 Graphic | Used by:101 | |
Symbol 99 Graphic | Used by:101 | |
Symbol 100 Graphic | Used by:101 | |
Symbol 101 Button | Uses:97 98 99 100 | Used by:Timeline |
Symbol 102 Font | Used by:104 | |
Symbol 103 Font | Used by:104 | |
Symbol 104 Text | Uses:102 103 | Used by:Timeline |
Symbol 105 Sound | Used by:Timeline | |
Symbol 106 Graphic | Used by:Timeline | |
Symbol 107 Graphic | Used by:Timeline | |
Symbol 108 Graphic | Used by:Timeline | |
Symbol 109 Graphic | Used by:Timeline | |
Symbol 110 Graphic | Used by:Timeline | |
Symbol 111 Graphic | Used by:Timeline |
Instance Names
"myButton" | Frame 2 | Symbol 101 Button |
"but" | Symbol 68 MovieClip {snowAS3031Ucogisnow_fla.Timeline_1} Frame 1 | Symbol 7 MovieClip |
"bar" | Symbol 68 MovieClip {snowAS3031Ucogisnow_fla.Timeline_1} Frame 1 | Symbol 11 MovieClip |
"ngButton" | Symbol 68 MovieClip {snowAS3031Ucogisnow_fla.Timeline_1} Frame 1 | Symbol 54 Button |
"playButton" | Symbol 68 MovieClip {snowAS3031Ucogisnow_fla.Timeline_1} Frame 47 | Symbol 67 Button |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS3. |
Labels
"loaded" | Symbol 68 MovieClip {snowAS3031Ucogisnow_fla.Timeline_1} Frame 2 |
|