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

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

lucky_dance_hr.swf

This is the info page for
Flash #215383

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


Text
Mode:

Music:

sound on/off

crazy mode

FPS:

Hue:

0

Enable hue filter

manual

random

sliding

ActionScript [AS1/AS2]

Frame 3
var bt = getBytesTotal(); var bl = getBytesLoaded(); var percent = Math.floor((bl / bt) * 100); preload_mc.myOutput.text = ((((bl + "/") + bt) + " (") + percent) + "%)"; preload_mc.indicator._width = (percent / 100) * 554; if (percent >= 100) { gotoAndPlay (9); } else { gotoAndPlay (2); }
Frame 9
var modes = {normal:{begin:10, ln:28}, night:{begin:11, ln:28}, epileptic:{begin:12, ln:28}}; var allSounds = ["yamama", "ikei", "freek", "shake", "shit"]; var currMode; var currFPS = 20; var minFPS = 10; var maxFPS = 50; var currFrame = 1; var timerId; var currSound; var soundMuted = false; var crazyMode = false; var lastShift = 0; _global.currMovie; var sound = new Sound(); var controlsInitialized = false; var sliderLength = 134; var hueEnabled = false; var currHue = 0; var randomHue = false; var slidingHue = false; var hueFrameCnt = 3; var hueStep = 0.2; var randNum = function (min, max) { return((Math.random() * (max - min)) + min); }; var onTimer = function () { var _local1 = modes[currMode].ln; currFrame = (((currFrame + _local1) - 1) % _local1) + 1; currMovie.gotoAndStop(currFrame); if (crazyMode && (lastShift < 0)) { var _local2 = Math.random(); if (_local2 < 0.1) { currFrame = currFrame - 7; lastShift = 7; } else if (_local2 > 0.9) { lastShift = 3; currFrame = currFrame + 5; } else { lastShift--; currFrame++; } } else { currFrame++; lastShift--; } if (hueEnabled) { if (hueFrameCnt < 0) { if (randomHue) { var _local2 = randNum(-3.14159265358979, Math.PI); changeHue(_local2); hueFrameCnt = 4; } else if (slidingHue) { currHue = currHue + hueStep; if (currHue > Math.PI) { currHue = currHue - (Math.PI*2); } changeHue(currHue); hueFrameCnt = 2; } } else { hueFrameCnt--; } } }; var startPlay = function () { timerId = setInterval(this, "onTimer", Math.round(1000 / currFPS)); }; var stopPlay = function () { clearInterval(timerId); }; var changeFPS = function (newFPS) { if (newFPS != currFPS) { stopPlay(); currFPS = newFPS; indicateFPS(newFPS); startPlay(); } }; var changeMode = function (newMode) { currMode = newMode; this.gotoAndStop(modes[currMode].begin); }; var changeSound = function (newSound) { currSound = newSound; sound.stop(); sound.attachSound(newSound); sound.start(0, 5000); }; var indicateFPS = function (fps) { this.fps_slider_txt.text = fps; }; var indicateHue = function (angle) { this.hue_slider_txt.text = Math.round((angle * 180) / Math.PI); }; var updateHue = function () { if (hueEnabled) { changeHue(currHue); indicateHue(currHue); } else { currMovie.filters = []; } }; var changeHue = function (val) { currHue = val; var _local2 = Math.cos(val); var _local1 = Math.sin(val); var _local4 = 0.213; var _local3 = 0.715; var _local5 = 0.072; var _local7 = [(_local4 + (_local2 * (1 - _local4))) + (_local1 * (-_local4)), (_local3 + (_local2 * (-_local3))) + (_local1 * (-_local3)), (_local5 + (_local2 * (-_local5))) + (_local1 * (1 - _local5)), 0, 0, (_local4 + (_local2 * (-_local4))) + (_local1 * 0.143), (_local3 + (_local2 * (1 - _local3))) + (_local1 * 0.14), (_local5 + (_local2 * (-_local5))) + (_local1 * -0.283), 0, 0, (_local4 + (_local2 * (-_local4))) + (_local1 * (-(1 - _local4))), (_local3 + (_local2 * (-_local3))) + (_local1 * _local3), (_local5 + (_local2 * (1 - _local5))) + (_local1 * _local5), 0, 0, 0, 0, 0, 1, 0]; var _local8 = new flash.filters.ColorMatrixFilter(_local7); currMovie.filters = new Array(_local8); }; var initControls = function () { if (controlsInitialized) { return(undefined); } var _local11 = function (id, callback, initPos) { var _local3 = _root[id + "_slider_mc"]; trace(_local3); _local3.top = _local3._y; _local3.bottom = _local3._y; _local3.left = _local3._x; _local3.right = _local3._x + sliderLength; _local3._x = _local3._x + (sliderLength * initPos); _local3.slider_btn.onPress = function () { startDrag (this._parent, false, this._parent.left, this._parent.top, this._parent.right, this._parent.bottom); }; _local3.slider_btn.onRelease = function () { stopDrag(); var _local2 = (this._parent._x - this._parent.left) / sliderLength; callback(_local2); }; _local3.slider_btn.onReleaseOutside = _local3.slider_btn.onRelease; }; var _local15 = function (val) { var _local1 = (maxFPS * val) + (minFPS * (1 - val)); changeFPS(Math.round(_local1)); }; _local11("fps", _local15, 0.25); var _local13 = function (val) { var _local1 = (Math.PI * val) - (Math.PI * (1 - val)); changeHue(_local1); indicateHue(_local1); }; _local11("hue", _local13, 0.5); var updateModeButtons = function (newMode) { for (var _local3 in modes) { var _local2 = _root[_local3 + "_btn"]; _local2._alpha = ((_local3 == newMode) ? 100 : 50); } }; var switchMode = function (newMode) { if (newMode != currMode) { updateModeButtons(newMode); changeMode(newMode); } }; var _local5 = function (x) { return(function () { switchMode(x); }); }; for (var _local10 in modes) { _root[_local10 + "_btn"].onRelease = _local5(_local10); } var updateMusicButtons = function (newSound) { for (var _local4 in allSounds) { var _local2 = _root[allSounds[_local4] + "_btn"]; _local2._alpha = ((allSounds[_local4] === newSound) ? 100 : 50); } }; var switchSound = function (newSound) { if (currSound != newSound) { updateMusicButtons(newSound); changeSound(newSound); } }; var _local6 = function (x) { return(function () { switchSound(x); }); }; for (var _local10 in allSounds) { _root[allSounds[_local10] + "_btn"].onRelease = _local6(allSounds[_local10]); } mute_btn.onRelease = function () { soundMuted = !soundMuted; sound.setVolume((soundMuted ? 0 : 100)); this._alpha = (soundMuted ? 50 : 100); }; crazy_btn.onRelease = function () { crazyMode = !crazyMode; this._alpha = (crazyMode ? 100 : 50); }; var updateHueButtons = function () { var _local2 = (hueEnabled && (!randomHue)) && (!slidingHue); _root.hue_slider_line._visible = _local2; _root.hue_slider_mc._visible = _local2; _root.hue_title._visible = _local2; _root.hue_slider_txt._visible = _local2; _root.manual_hue_btn._visible = hueEnabled; _root.random_hue_btn._visible = hueEnabled; _root.sliding_hue_btn._visible = hueEnabled; _root.manual_hue_btn._alpha = (_local2 ? 100 : 50); _root.random_hue_btn._alpha = (randomHue ? 100 : 50); _root.sliding_hue_btn._alpha = (slidingHue ? 100 : 50); }; enable_hue_btn.onRelease = function () { hueEnabled = !hueEnabled; this._alpha = (hueEnabled ? 100 : 50); updateHueButtons(); updateHue(); }; manual_hue_btn.onRelease = function () { randomHue = (slidingHue = false); updateHueButtons(); indicateHue(currHue); }; random_hue_btn.onRelease = function () { randomHue = true; slidingHue = false; updateHueButtons(); }; sliding_hue_btn.onRelease = function () { randomHue = false; slidingHue = true; updateHueButtons(); }; crazy_btn._alpha = 50; enable_hue_btn._alpha = 50; indicateFPS(currFPS); updateModeButtons(currMode); updateMusicButtons(currSound); updateHueButtons(); controlsInitialized = true; }; startPlay(); changeMode("epileptic"); changeSound("yamama");
Frame 10
currMovie = this.normal_mc; initControls(); updateHue();
Frame 11
currMovie = this.night_mc; initControls(); updateHue();
Frame 12
currMovie = this.epileptic_mc; initControls(); updateHue();

Library Items

Symbol 1 FontUsed by:2
Symbol 2 EditableTextUses:1Used by:8
Symbol 3 GraphicUsed by:8
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:8
Symbol 6 BitmapUsed by:7
Symbol 7 GraphicUses:6Used by:8
Symbol 8 MovieClip [PreloadMovie]Uses:2 3 5 7Used by:Timeline
Symbol 9 Sound [freek]Used by:Timeline
Symbol 10 Sound [shit]Used by:Timeline
Symbol 11 Sound [yamama]Used by:Timeline
Symbol 12 Sound [ikei]Used by:Timeline
Symbol 13 Sound [shake]Used by:Timeline
Symbol 14 GraphicUsed by:Timeline
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:71
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:71
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:71
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:71
Symbol 23 BitmapUsed by:24
Symbol 24 GraphicUses:23Used by:71
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:71
Symbol 27 BitmapUsed by:28
Symbol 28 GraphicUses:27Used by:71
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:71
Symbol 31 BitmapUsed by:32
Symbol 32 GraphicUses:31Used by:71
Symbol 33 BitmapUsed by:34
Symbol 34 GraphicUses:33Used by:71
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:71
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:71
Symbol 39 BitmapUsed by:40
Symbol 40 GraphicUses:39Used by:71
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:71
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:71
Symbol 45 BitmapUsed by:46
Symbol 46 GraphicUses:45Used by:71
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:71
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:71
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:71
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:71
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:71
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:71
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:71
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:71
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:71
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:71
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:71
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:71
Symbol 71 MovieClipUses:16 18 20 22 24 26 28 30 32 34 36 38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 68 70Used by:Timeline
Symbol 72 FontUsed by:73 74 75 78 81 84 85 86 89 95 98 101
Symbol 73 EditableTextUses:72Used by:Timeline
Symbol 74 TextUses:72Used by:Timeline
Symbol 75 TextUses:72Used by:Timeline
Symbol 76 GraphicUsed by:77
Symbol 77 ButtonUses:76Used by:Timeline
Symbol 78 TextUses:72Used by:80
Symbol 79 GraphicUsed by:80
Symbol 80 ButtonUses:78 79Used by:Timeline
Symbol 81 TextUses:72Used by:83
Symbol 82 GraphicUsed by:83
Symbol 83 ButtonUses:81 82Used by:Timeline
Symbol 84 TextUses:72Used by:Timeline
Symbol 85 EditableTextUses:72Used by:Timeline
Symbol 86 EditableTextUses:72Used by:Timeline
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClipUses:87Used by:Timeline
Symbol 89 TextUses:72Used by:91
Symbol 90 GraphicUsed by:91
Symbol 91 ButtonUses:89 90Used by:Timeline
Symbol 92 GraphicUsed by:93
Symbol 93 ButtonUses:92Used by:94
Symbol 94 MovieClipUses:93Used by:Timeline
Symbol 95 TextUses:72Used by:97
Symbol 96 GraphicUsed by:97
Symbol 97 ButtonUses:95 96Used by:Timeline
Symbol 98 TextUses:72Used by:100
Symbol 99 GraphicUsed by:100
Symbol 100 ButtonUses:98 99Used by:Timeline
Symbol 101 TextUses:72Used by:103
Symbol 102 GraphicUsed by:103
Symbol 103 ButtonUses:101 102Used by:Timeline
Symbol 104 BitmapUsed by:105
Symbol 105 GraphicUses:104Used by:160 189
Symbol 106 BitmapUsed by:107
Symbol 107 GraphicUses:106Used by:160
Symbol 108 BitmapUsed by:109
Symbol 109 GraphicUses:108Used by:160 189
Symbol 110 BitmapUsed by:111
Symbol 111 GraphicUses:110Used by:160
Symbol 112 BitmapUsed by:113
Symbol 113 GraphicUses:112Used by:160 189
Symbol 114 BitmapUsed by:115
Symbol 115 GraphicUses:114Used by:160
Symbol 116 BitmapUsed by:117
Symbol 117 GraphicUses:116Used by:160 189
Symbol 118 BitmapUsed by:119
Symbol 119 GraphicUses:118Used by:160
Symbol 120 BitmapUsed by:121
Symbol 121 GraphicUses:120Used by:160 189
Symbol 122 BitmapUsed by:123
Symbol 123 GraphicUses:122Used by:160
Symbol 124 BitmapUsed by:125
Symbol 125 GraphicUses:124Used by:160 189
Symbol 126 BitmapUsed by:127
Symbol 127 GraphicUses:126Used by:160
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:160 189
Symbol 130 BitmapUsed by:131
Symbol 131 GraphicUses:130Used by:160
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:132Used by:160 189
Symbol 134 BitmapUsed by:135
Symbol 135 GraphicUses:134Used by:160
Symbol 136 BitmapUsed by:137
Symbol 137 GraphicUses:136Used by:160 189
Symbol 138 BitmapUsed by:139
Symbol 139 GraphicUses:138Used by:160
Symbol 140 BitmapUsed by:141
Symbol 141 GraphicUses:140Used by:160 189
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:142Used by:160
Symbol 144 BitmapUsed by:145
Symbol 145 GraphicUses:144Used by:160 189
Symbol 146 BitmapUsed by:147
Symbol 147 GraphicUses:146Used by:160
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:160 189
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:160
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:160 189
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:160
Symbol 156 BitmapUsed by:157
Symbol 157 GraphicUses:156Used by:160 189
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:160
Symbol 160 MovieClipUses:105 107 109 111 113 115 117 119 121 123 125 127 129 131 133 135 137 139 141 143 145 147 149 151 153 155 157 159Used by:Timeline
Symbol 161 BitmapUsed by:162
Symbol 162 GraphicUses:161Used by:189
Symbol 163 BitmapUsed by:164
Symbol 164 GraphicUses:163Used by:189
Symbol 165 BitmapUsed by:166
Symbol 166 GraphicUses:165Used by:189
Symbol 167 BitmapUsed by:168
Symbol 168 GraphicUses:167Used by:189
Symbol 169 BitmapUsed by:170
Symbol 170 GraphicUses:169Used by:189
Symbol 171 BitmapUsed by:172
Symbol 172 GraphicUses:171Used by:189
Symbol 173 BitmapUsed by:174
Symbol 174 GraphicUses:173Used by:189
Symbol 175 BitmapUsed by:176
Symbol 176 GraphicUses:175Used by:189
Symbol 177 BitmapUsed by:178
Symbol 178 GraphicUses:177Used by:189
Symbol 179 BitmapUsed by:180
Symbol 180 GraphicUses:179Used by:189
Symbol 181 BitmapUsed by:182
Symbol 182 GraphicUses:181Used by:189
Symbol 183 BitmapUsed by:184
Symbol 184 GraphicUses:183Used by:189
Symbol 185 BitmapUsed by:186
Symbol 186 GraphicUses:185Used by:189
Symbol 187 BitmapUsed by:188
Symbol 188 GraphicUses:187Used by:189
Symbol 189 MovieClipUses:162 109 164 113 166 117 168 121 170 125 172 129 174 133 176 137 178 141 180 145 182 149 184 153 186 157 188 105Used by:Timeline

Instance Names

"preload_mc"Frame 2Symbol 8 MovieClip [PreloadMovie]
"normal_mc"Frame 10Symbol 71 MovieClip
"fps_slider_txt"Frame 10Symbol 73 EditableText
"normal_btn"Frame 10Symbol 77 Button
"night_btn"Frame 10Symbol 77 Button
"epileptic_btn"Frame 10Symbol 77 Button
"mute_btn"Frame 10Symbol 80 Button
"crazy_btn"Frame 10Symbol 83 Button
"freek_btn"Frame 10Symbol 77 Button
"shake_btn"Frame 10Symbol 77 Button
"shit_btn"Frame 10Symbol 77 Button
"ikei_btn"Frame 10Symbol 77 Button
"yamama_btn"Frame 10Symbol 77 Button
"hue_title"Frame 10Symbol 85 EditableText
"hue_slider_txt"Frame 10Symbol 86 EditableText
"hue_slider_line"Frame 10Symbol 88 MovieClip
"enable_hue_btn"Frame 10Symbol 91 Button
"fps_slider_mc"Frame 10Symbol 94 MovieClip
"hue_slider_mc"Frame 10Symbol 94 MovieClip
"manual_hue_btn"Frame 10Symbol 97 Button
"random_hue_btn"Frame 10Symbol 100 Button
"sliding_hue_btn"Frame 10Symbol 103 Button
"night_mc"Frame 11Symbol 160 MovieClip
"epileptic_mc"Frame 12Symbol 189 MovieClip
"myOutput"Symbol 8 MovieClip [PreloadMovie] Frame 1Symbol 2 EditableText
"indicator"Symbol 8 MovieClip [PreloadMovie] Frame 1Symbol 5 MovieClip
"slider_btn"Symbol 94 MovieClip Frame 1Symbol 93 Button

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 8 as "PreloadMovie"
ExportAssets (56)Timeline Frame 4Symbol 9 as "freek"
ExportAssets (56)Timeline Frame 5Symbol 10 as "shit"
ExportAssets (56)Timeline Frame 6Symbol 11 as "yamama"
ExportAssets (56)Timeline Frame 7Symbol 12 as "ikei"
ExportAssets (56)Timeline Frame 8Symbol 13 as "shake"




http://swfchan.com/44/215383/info.shtml
Created: 2/12 -2018 17:03:32 Last modified: 2/12 -2018 17:03:32 Server time: 25/04 -2024 10:29:02