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

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

Ucogi WinterNight.swf

This is the info page for
Flash #203183

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


Text
credits

credits

Ucogi Winter Night
Created by Veins
www.chaoslevel.com/vic
Features:
Snow, eyes and hair
animation
Music: Ice Temple
by ATProductions
2010-12 Victor A.

ActionScript [AS3]

Section 1
//MainTimeline (snowAS3033credits_fla.MainTimeline) package snowAS3033credits_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, 82, frame83); } public function goThere(_arg1:MouseEvent){ var _local2:URLRequest = new URLRequest("http://www.ucogi.com/"); navigateToURL(_local2); } function frame2(){ myButton.addEventListener(MouseEvent.CLICK, goThere); } function frame83(){ gotoAndPlay(2); } } }//package snowAS3033credits_fla
Section 2
//Timeline_1 (snowAS3033credits_fla.Timeline_1) package snowAS3033credits_fla { import flash.events.*; import flash.display.*; import flash.net.*; import flash.system.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.geom.*; import flash.media.*; import flash.printing.*; import flash.profiler.*; import flash.sampler.*; import flash.text.*; import flash.ui.*; import flash.utils.*; import flash.xml.*; public dynamic class Timeline_1 extends MovieClip { public const AUTO_PLAY:Boolean = false; public const FRAME_RATE_ADJUST:Boolean = true; public const LOADER_FRAME_RATE:Number = 30; public var but:MovieClip; public var ngButton:SimpleButton; public var bar:MovieClip; public var playButton:SimpleButton; public var loadingComplete:Boolean; public var movieFrameRate:Number; public var initialized:Boolean; public var targetURL:URLRequest; 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 meetsVersion(_arg1:Array):Boolean{ var _local2:Array = String(Capabilities.version.split(" ")[1]).split(","); var _local3:uint; 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 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 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; } public function startMovie():void{ cleanup(); if (((root) && ((root is MovieClip)))){ MovieClip(root).play(); }; dispatchEvent(new Event(Event.COMPLETE)); } public function butClicked(_arg1:MouseEvent){ navigateToURL(targetURL); } public function playButtonClickHandler(_arg1:Event=null):void{ startMovie(); } function frame1(){ initialized = false; init(); but.buttonMode = true; targetURL = new URLRequest("http://www.chaoslevel.com/vic/index.html"); but.addEventListener(MouseEvent.CLICK, butClicked); } function frame51(){ stop(); if (((playButton) && (!(playButton.hasEventListener(MouseEvent.CLICK))))){ playButton.addEventListener(MouseEvent.CLICK, playButtonClickHandler, false, 0, true); }; } } }//package snowAS3033credits_fla
Section 3
//Timeline_11 (snowAS3033credits_fla.Timeline_11) package snowAS3033credits_fla { import flash.display.*; public dynamic class Timeline_11 extends MovieClip { public function Timeline_11(){ addFrameScript(39, frame40); } function frame40(){ stop(); } } }//package snowAS3033credits_fla
Section 4
//Snowflake (Snowflake) package { import flash.events.*; import flash.display.*; public class Snowflake extends MovieClip { private var xPos:Number;// = 0 private var yPos:Number;// = 0 private var xSpeed:Number;// = 0 private var ySpeed:Number;// = 0 private var radius:Number;// = 0 private var scale:Number;// = 0 private var alphaValue:Number;// = 0 private var maxHeight:Number;// = 0 private var maxWidth:Number;// = 0 public function Snowflake(){ SetInitialProperties(); } public function SetInitialProperties(){ 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()); var _local1:Stage = (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); } 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); } } }//package

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClip {Snowflake}Uses:1Used by:Timeline
Symbol 3 GraphicUsed by:Timeline
Symbol 4 GraphicUsed by:Timeline
Symbol 5 GraphicUsed by:67
Symbol 6 GraphicUsed by:67
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:67
Symbol 9 GraphicUsed by:67
Symbol 10 GraphicUsed by:67
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:67
Symbol 13 GraphicUsed by:15
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:13 14Used by:67
Symbol 16 GraphicUsed by:67
Symbol 17 GraphicUsed by:67
Symbol 18 GraphicUsed by:67
Symbol 19 GraphicUsed by:26 55
Symbol 20 GraphicUsed by:26 55
Symbol 21 GraphicUsed by:26 55
Symbol 22 GraphicUsed by:26 55
Symbol 23 GraphicUsed by:26 55
Symbol 24 GraphicUsed by:26 55
Symbol 25 GraphicUsed by:26 55
Symbol 26 MovieClipUses:19 20 21 22 23 24 25Used by:67
Symbol 27 GraphicUsed by:67
Symbol 28 GraphicUsed by:50
Symbol 29 GraphicUsed by:50
Symbol 30 GraphicUsed by:50
Symbol 31 GraphicUsed by:50
Symbol 32 GraphicUsed by:50
Symbol 33 GraphicUsed by:50
Symbol 34 GraphicUsed by:50
Symbol 35 GraphicUsed by:50
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClipUses:36Used by:50
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:50
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:50
Symbol 42 GraphicUsed by:50
Symbol 43 GraphicUsed by:50
Symbol 44 GraphicUsed by:50
Symbol 45 GraphicUsed by:50
Symbol 46 GraphicUsed by:50
Symbol 47 GraphicUsed by:50
Symbol 48 GraphicUsed by:50
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:28 29 30 31 32 33 34 35 37 39 41 42 43 44 45 46 47 48 49Used by:67
Symbol 51 GraphicUsed by:67
Symbol 52 GraphicUsed by:53
Symbol 53 ButtonUses:52Used by:67
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClip {snowAS3033credits_fla.Timeline_11}Uses:19 20 21 22 23 24 25 54Used by:67
Symbol 56 ShapeTweeningUsed by:67
Symbol 57 GraphicUsed by:67
Symbol 58 ShapeTweeningUsed by:67
Symbol 59 ShapeTweeningUsed by:67
Symbol 60 GraphicUsed by:67
Symbol 61 GraphicUsed by:66
Symbol 62 GraphicUsed by:65 66
Symbol 63 GraphicUsed by:66
Symbol 64 GraphicUsed by:65 66
Symbol 65 MovieClipUses:64 62Used by:66
Symbol 66 ButtonUses:61 62 63 65 64Used by:67
Symbol 67 MovieClip {snowAS3033credits_fla.Timeline_1}Uses:5 6 8 9 10 12 15 16 17 18 26 27 50 51 53 55 56 57 58 59 60 66Used by:Timeline
Symbol 68 GraphicUsed by:Timeline
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:Timeline
Symbol 71 GraphicUsed by:Timeline
Symbol 72 GraphicUsed by:Timeline
Symbol 73 GraphicUsed by:Timeline
Symbol 74 GraphicUsed by:Timeline
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:75Used by:Timeline
Symbol 77 GraphicUsed by:Timeline
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:Timeline
Symbol 80 GraphicUsed by:Timeline
Symbol 81 GraphicUsed by:Timeline
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:Timeline
Symbol 84 GraphicUsed by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 GraphicUsed by:Timeline
Symbol 87 GraphicUsed by:Timeline
Symbol 88 GraphicUsed by:Timeline
Symbol 89 GraphicUsed by:Timeline
Symbol 90 GraphicUsed by:Timeline
Symbol 91 GraphicUsed by:Timeline
Symbol 92 GraphicUsed by:Timeline
Symbol 93 GraphicUsed by:Timeline
Symbol 94 GraphicUsed by:Timeline
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:95Used by:Timeline
Symbol 97 GraphicUsed by:101
Symbol 98 GraphicUsed by:101
Symbol 99 GraphicUsed by:101
Symbol 100 GraphicUsed by:101
Symbol 101 ButtonUses:97 98 99 100Used by:Timeline
Symbol 102 FontUsed by:103 104 106
Symbol 103 TextUses:102Used by:108
Symbol 104 TextUses:102Used by:108
Symbol 105 GraphicUsed by:108
Symbol 106 TextUses:102Used by:108
Symbol 107 GraphicUsed by:108
Symbol 108 ButtonUses:103 104 105 106 107Used by:Timeline
Symbol 109 SoundUsed by:Timeline
Symbol 110 GraphicUsed by:Timeline
Symbol 111 GraphicUsed by:Timeline
Symbol 112 GraphicUsed by:Timeline
Symbol 113 GraphicUsed by:Timeline
Symbol 114 GraphicUsed by:Timeline
Symbol 115 GraphicUsed by:Timeline
Symbol 116 GraphicUsed by:Timeline
Symbol 117 GraphicUsed by:Timeline

Instance Names

"myButton"Frame 2Symbol 101 Button
"but"Symbol 67 MovieClip {snowAS3033credits_fla.Timeline_1} Frame 1Symbol 8 MovieClip
"bar"Symbol 67 MovieClip {snowAS3033credits_fla.Timeline_1} Frame 1Symbol 12 MovieClip
"ngButton"Symbol 67 MovieClip {snowAS3033credits_fla.Timeline_1} Frame 1Symbol 53 Button
"playButton"Symbol 67 MovieClip {snowAS3033credits_fla.Timeline_1} Frame 47Symbol 66 Button

Special Tags

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

Labels

"loaded"Symbol 67 MovieClip {snowAS3033credits_fla.Timeline_1} Frame 2




http://swfchan.com/41/203183/info.shtml
Created: 27/7 -2019 04:01:14 Last modified: 27/7 -2019 04:01:14 Server time: 26/04 -2024 21:28:21