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

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

3sa.swf

This is the info page for
Flash #130

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


Text
100 %

1 / 1

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#333333">NEXT</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#333333">NEXT</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#333333">NEXT</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#CCCCCC">NEXT</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#333333">PREV</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#333333">PREV</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#333333">PREV</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#CCCCCC">PREV</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#000000">AUTOPLAY</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#333333">AUTOPLAY</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#333333">AUTOPLAY</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#000000">PAUSE</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#000000">PAUSE</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="10" COLOR="#000000">PAUSE</FONT></P>

ActionScript [AS1/AS2]

Frame 1
if (typeof(initExec) == "undefined") { initExec = true; _global.gConfig_str = "<init align=\"TL\" showMenu=\"false\" scaleMode=\"showAll\" frameWidth=\"640\" frameHeight=\"480\"></init><config showNavPanel=\"false\" autoStart=\"true\" loop=\"true\" transAnim=\"fade\" fixDelay=\"-1\"><slideProp delay=\"1\"></slideProp></config>"; _global.gConfig_xml = new XML(gConfig_str); Stage.align = gConfig_xml.firstChild.attributes.align; Stage.scaleMode = gConfig_xml.firstChild.attributes.scaleMode; Stage.showMenu = gConfig_xml.firstChild.attributes.showMenu == "true"; _global.gFrameWidth = gConfig_xml.firstChild.attributes.frameWidth; _global.gFrameHeight = gConfig_xml.firstChild.attributes.frameHeight; Curtain_mc._width = frameWidth; Curtain_mc._height = frameHeight; ldrProgress_mc._x = (gFrameWidth - ldrProgress_mc._width) / 2; ldrProgress_mc._y = (gFrameHeight - ldrProgress_mc._height) / 2; ldrBorder_mc._x = (gFrameWidth - ldrBorder_mc._width) / 2; ldrBorder_mc._y = (gFrameHeight - ldrBorder_mc._height) / 2; ldrStatus_txt._x = (gFrameWidth - ldrStatus_txt._width) / 2; ldrStatus_txt._y = ldrProgress_mc._y + ldrStatus_txt._height; Curtain_mc._alpha = 0; } ldrBytesLoaded = getBytesLoaded(); ldrBytesTotal = getBytesTotal(); ldrPercentLoaded = int((ldrBytesLoaded / ldrBytesTotal) * 100); ldrStatus_txt.text = ldrPercentLoaded + " %"; ldrProgress_mc._xscale = ldrPercentLoaded;
Frame 2
if (ldrBytesLoaded < ldrBytesTotal) { gotoAndPlay (1); } else { Curtain_mc._alpha = 100; }
Instance of Symbol 62 MovieClip "navPanel_mc" in Frame 3
//component parameters onClipEvent (initialize) { delay = 4; }
Frame 4
_global.autoplayStatus = 0; _global.delay = 3; _global.delay_array = new Array(); _global.gUseFade = gConfig_xml.firstChild.nextSibling.attributes.transAnim == "fade"; _global.gAutoStart = gConfig_xml.firstChild.nextSibling.attributes.autoStart == "true"; _global.gLoop = gConfig_xml.firstChild.nextSibling.attributes.loop == "true"; _global.gUsePptTiming = gConfig_xml.firstChild.nextSibling.attributes.fixDelay == "-1"; if (gUsePptTiming) { var delayNode = gConfig_xml.firstChild.nextSibling.firstChild; var i = 0; while (delayNode != null) { delay_array[i++] = parseInt(delayNode.attributes.delay); delayNode = delayNode.nextSibling; } } else { delay = parseInt(gConfig_xml.firstChild.nextSibling.attributes.fixDelay); } _global.fadeSlide = function (newFrame) { if (gUseFade) { fade_mc.gotoAndStop(navSlides_mc._currentFrame); fade_mc._alpha = 96; navSlides_mc.gotoAndStop(newFrame); fade_mc.onEnterFrame = function () { if (fade_mc._alpha >= 5) { fade_mc._alpha = fade_mc._alpha - 20; } else { delete fade_mc.onEnterFrame; } }; } else { navSlides_mc.gotoAndStop(newFrame); } }; _global.updateFrame = function (inc) { newFrame = navSlides_mc._currentFrame + inc; if ((((fade_mc._alpha <= 5) && (newFrame >= 1)) && (newFrame <= navSlides_mc._totalFrames)) && (newFrame != navSlides_mc._currentFrame)) { fadeSlide(newFrame); } updateStatus(); if (navSlides_mc._currentFrame == 1) { navPanel_mc.panelPrev_mc.gotoAndStop(2); } else { navPanel_mc.panelPrev_mc.gotoAndStop(1); } if (navSlides_mc._currentFrame == navSlides_mc._totalFrames) { navPanel_mc.panelNext_mc.gotoAndStop(2); } else { navPanel_mc.panelNext_mc.gotoAndStop(1); } }; _global.updateStatus = function () { panelStatus = (navSlides_mc._currentFrame + " / ") + navSlides_mc._totalFrames; }; _global.autoplayInit = function () { startTime = getTimer(); hideControls(); updateStatus(); if (gUsePptTiming) { delay = delay_array[navSlides_mc._currentFrame - 1]; } }; _global.autoplay = function () { if (autoplayStatus != 0) { curTime = getTimer(); elapsedTime = curTime - startTime; indicatorFrame = int(4 / (delay / (elapsedTime / 1000))); _root.navPanel_mc.panelIndicator_mc.gotoAndStop(indicatorFrame + 1); if (elapsedTime >= (delay * 1000)) { updateFrame(1); autoplayInit(); if (navSlides_mc._currentframe == navSlides_mc._totalframes) { if (gLoop) { UpdateFrame((-navSlides_mc._totalframes) + 1); } else { updateFrame(); _global.autoplayStatus = 0; _root.navPanel_mc.panelIndicator_mc.gotoAndStop(1); _root.navPanel_mc.panelAuto_mc.prevFrame(); } } } } }; _global.hideControls = function () { navPanel_mc.panelNext_mc.gotoAndStop(2); navPanel_mc.panelPrev_mc.gotoAndStop(2); }; stop(); updateFrame(); navSlides_mc.onEnterFrame = function () { autoplay(); }; navPanel_mc._visible = gConfig_xml.firstChild.nextSibling.attributes.showNavPanel == "true"; if (navPanel_mc._visible) { navPanel_mc._x = (gFrameWidth - navPanel_mc._width) - 18; navPanel_mc._y = (gFrameHeight - navPanel_mc._height) - 18; } else { navSlides_mc.onMouseUp = function () { if (_xmouse < (gFrameWidth / 3)) { updateFrame(-1); } else { updateFrame(1); } }; } keyListener = new Object(); keyListener.onKeyDown = function () { if (key.getCode() == 80) { if (autoplayStatus) { updateFrame(); _global.autoplayStatus = 0; navPanel_mc.panelIndicator_mc.gotoAndStop(1); navPanel_mc.panelAuto_mc.prevFrame(); } else { autoplayInit(); _global.autoplayStatus = 1; navPanel_mc.panelAuto_mc.nextFrame(); } } if (autoplayStatus == 0) { if ((((Key.getCode() == 32) || (Key.getCode() == 13)) || (Key.getCode() == 108)) || (Key.getCode() == 39)) { updateFrame(1); } if ((Key.getCode() == 8) || (Key.getCode() == 37)) { updateFrame(-1); } if (((Key.getCode() == 36) || (Key.getCode() == 33)) || (Key.getCode() == 38)) { updateFrame(1 - navSlides_mc._currentFrame); } if (((Key.getCode() == 35) || (Key.getCode() == 34)) || (Key.getCode() == 40)) { updateFrame(navSlides_mc._totalFrames - navSlides_mc._currentFrame); } } }; Key.addListener(keyListener); duplicateMovieClip (navSlides_mc, "fade_mc", navPanel_mc.getDepth() - 1); fade_mc._alpha = 0; Curtain_mc._alpha = 0; if (gAutoStart) { autoplayInit(); _global.autoplayStatus = 1; navPanel_mc.panelAuto_mc.nextFrame(); }
Symbol 24 Button
on (release) { updateFrame(1); }
Symbol 27 MovieClip Frame 1
stop();
Symbol 27 MovieClip Frame 2
stop();
Symbol 37 Button
on (release) { updateFrame(-1); }
Symbol 40 MovieClip Frame 1
stop();
Symbol 40 MovieClip Frame 2
stop();
Symbol 49 Button
on (release) { autoplayInit(); _global.autoplayStatus = 1; nextFrame(); }
Symbol 57 Button
on (release) { updateFrame(); _global.autoplayStatus = 0; _root.navPanel_mc.panelIndicator_mc.gotoAndStop(1); prevFrame(); }
Symbol 58 MovieClip Frame 1
stop();
Symbol 58 MovieClip Frame 2
stop();
Symbol 61 MovieClip Frame 1
stop();
Symbol 62 MovieClip Frame 1
updateFrame(); panelDragBar_btn.onPress = function () { startDrag (_root.navPanel_mc, false, 0, 0, (gFrameWidth - _root.navPanel_mc._width) + 4, gFrameHeight - _root.navPanel_mc._height); }; panelDragBar_btn.onRelease = function () { stopDrag(); };
Symbol 65 MovieClip Frame 1
stop();

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:Timeline
Symbol 3 FontUsed by:4
Symbol 4 EditableTextUses:3Used by:Timeline
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:Timeline
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:Timeline
Symbol 9 GraphicUsed by:62
Symbol 10 GraphicUsed by:14
Symbol 11 FontUsed by:12
Symbol 12 EditableTextUses:11Used by:14
Symbol 13 GraphicUsed by:14
Symbol 14 ButtonUses:10 12 13Used by:62
Symbol 15 GraphicUsed by:24
Symbol 16 FontUsed by:17 20 22 26 29 32 35 39 42 45 47 51 54 56
Symbol 17 EditableTextUses:16Used by:24
Symbol 18 GraphicUsed by:24
Symbol 19 GraphicUsed by:24
Symbol 20 EditableTextUses:16Used by:24
Symbol 21 GraphicUsed by:24
Symbol 22 EditableTextUses:16Used by:24
Symbol 23 GraphicUsed by:24
Symbol 24 ButtonUses:15 17 18 19 20 21 22 23Used by:27
Symbol 25 GraphicUsed by:27
Symbol 26 EditableTextUses:16Used by:27
Symbol 27 MovieClipUses:24 25 26Used by:62
Symbol 28 GraphicUsed by:37
Symbol 29 EditableTextUses:16Used by:37
Symbol 30 GraphicUsed by:37
Symbol 31 GraphicUsed by:37
Symbol 32 EditableTextUses:16Used by:37
Symbol 33 GraphicUsed by:37
Symbol 34 GraphicUsed by:37
Symbol 35 EditableTextUses:16Used by:37
Symbol 36 GraphicUsed by:37
Symbol 37 ButtonUses:28 29 30 31 32 33 34 35 36Used by:40
Symbol 38 GraphicUsed by:40
Symbol 39 EditableTextUses:16Used by:40
Symbol 40 MovieClipUses:37 38 39Used by:62
Symbol 41 GraphicUsed by:49
Symbol 42 EditableTextUses:16Used by:49
Symbol 43 GraphicUsed by:49
Symbol 44 GraphicUsed by:49
Symbol 45 EditableTextUses:16Used by:49
Symbol 46 GraphicUsed by:49
Symbol 47 EditableTextUses:16Used by:49
Symbol 48 GraphicUsed by:49 57
Symbol 49 ButtonUses:41 42 43 44 45 46 47 48Used by:58
Symbol 50 GraphicUsed by:57
Symbol 51 EditableTextUses:16Used by:57
Symbol 52 GraphicUsed by:57
Symbol 53 GraphicUsed by:57
Symbol 54 EditableTextUses:16Used by:57
Symbol 55 GraphicUsed by:57
Symbol 56 EditableTextUses:16Used by:57
Symbol 57 ButtonUses:50 51 52 53 54 55 56 48Used by:58
Symbol 58 MovieClipUses:49 57Used by:62
Symbol 59 GraphicUsed by:61
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:59 60Used by:62
Symbol 62 MovieClipUses:9 14 27 40 58 61Used by:Timeline
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:65
Symbol 65 MovieClipUses:64Used by:Timeline

Instance Names

"ldrProgress_mc"Frame 1Symbol 2 MovieClip
"ldrStatus_txt"Frame 1Symbol 4 EditableText
"ldrBorder_mc"Frame 1Symbol 6 MovieClip
"Curtain_mc"Frame 1Symbol 8 MovieClip
"navPanel_mc"Frame 3Symbol 62 MovieClip
"navSlides_mc"Frame 4Symbol 65 MovieClip
"panelPause_btn"Symbol 58 MovieClip Frame 2Symbol 57 Button
"panelDragBar_btn"Symbol 62 MovieClip Frame 1Symbol 14 Button
"panelNext_mc"Symbol 62 MovieClip Frame 1Symbol 27 MovieClip
"panelPrev_mc"Symbol 62 MovieClip Frame 1Symbol 40 MovieClip
"panelAuto_mc"Symbol 62 MovieClip Frame 1Symbol 58 MovieClip
"panelIndicator_mc"Symbol 62 MovieClip Frame 1Symbol 61 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""

Dynamic Text Variables

_parent.panelStatusSymbol 12 EditableText"1 / 1"




http://swfchan.com/1/130/info.shtml
Created: 23/10 -2008 21:01:52 Last modified: 23/10 -2008 21:01:52 Server time: 29/04 -2024 11:42:19