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

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

Thinger Slinger.swf

This is the info page for
Flash #108066

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


Text
NO MORE
BOUNCES

Aim with the mouse.
Press and click to shoot.
Move with the arrow keys.
Spacebar resets.

LOADING....

<p align="center"><font face="Hemi Head 426" size="18" color="#ffffff" letterSpacing="4.000000" kerning="0">90</font></p>

%

Play

Play

Play

THINGER
SLINGER

Code
A. Scott McCallum

Art
Ari Feldman

BOUNCES:

<p align="center"><font face="Impact" size="24" color="#ffffff" letterSpacing="0.000000" kerning="1">10</font></p>

Thanks for playing!

ActionScript [AS1/AS2]

Frame 1
stop(); this.onEnterFrame = function () { seasloaded = _root.getBytesLoaded(); seastotalloaded = _root.getBytesTotal(); seaspersenloaded = Math.floor((seasloaded / seastotalloaded) * 100); _root.preloader.allProgress.barLoad._xscale = seaspersenloaded; _root.preloader.allProgress.textLoad = seaspersenloaded; if (seasloaded == seastotalloaded) { _root.preloader.allProgress.gotoAndStop(2); delete this.onEnterFrame; } };
Frame 2
function PlayGame() { clearInterval(interval); gotoAndPlay (10); } stop(); var interval = setInterval(PlayGame, 5000);
Frame 5
function PlayGame() { clearInterval(interval); gotoAndPlay (10); } stop(); var interval = setInterval(PlayGame, 5000);
Frame 10
function onEnterFrame() { if (levelNumber == 11) { return(undefined); } t1 = getTimer(); dT = t1 - t0; t0 = t1; dT = dT / 100; if (transitioning) { transition._alpha = transition._alpha + 5; if (transition._alpha >= 100) { levelNumber++; level.nextFrame(); Reset(); transitioning = false; transition._alpha = 0; if (levelNumber == 11) { clearInterval(tipsInterval); gotoAndPlay (15); } } } else { if (Key.isDown(32)) { Reset(); } if ((greenThinger._x < -30) || (greenThinger._x > 478)) { Reset(); } if ((greenThinger._y < -30) || (greenThinger._y > 542)) { Reset(); } if (aiming) { arrow._x = greenThinger._x; arrow._y = greenThinger._y; mouseX = _xmouse - arrow._x; mouseY = (_ymouse - arrow._y) * -1; var _local4 = Math.atan(mouseY / mouseX) / (Math.PI/180); if (mouseX < 0) { _local4 = _local4 + 180; } if ((mouseX >= 0) && (mouseY < 0)) { _local4 = _local4 + 360; } var _local3 = Math.sqrt((mouseX * mouseX) + (mouseY * mouseY)) * 2; if (_local3 > 255) { _local3 = 255; } if (_local3 < 64) { _local3 = 64; } arrow.power = _local3; arrow._rotation = _local4 * -1; if (Key.isDown(65) || (Key.isDown(37))) { greenThinger._x = greenThinger._x - 64; } if (Key.isDown(68) || (Key.isDown(39))) { greenThinger._x = greenThinger._x + 64; } if (greenThinger._x < 96) { greenThinger._x = 96; } if (greenThinger._x > 352) { greenThinger._x = 352; } } else { greenThinger._x = greenThinger._x + (greenThinger.velocityX * dT); greenThinger._y = greenThinger._y + (greenThinger.velocityY * dT); if (level.pinkThinger.hitTest(greenThinger)) { heart._x = level.pinkThinger._x; heart._y = level.pinkThinger._y - 16; heart._visible = true; greenThinger._x = level.pinkThinger._x - 16; greenThinger._y = level.pinkThinger._y; greenThinger.velocityX = 0; greenThinger.velocityY = 0; greenThinger._rotation = 0; level.pinkThinger._x = level.pinkThinger._x + 16; transitioning = true; var _local5 = new Sound(this); _local5.attachSound("SoundKiss"); _local5.start(0, 1); } else { var _local2 = false; if ((level.hitTest(greenThinger._x + 6, greenThinger._y, true) || (level.hitTest(greenThinger._x + 6, greenThinger._y - 2, true))) || (level.hitTest(greenThinger._x + 6, greenThinger._y + 2, true))) { trace("Collision on the right"); greenThinger._x = greenThinger._x - 6; greenThinger.velocityX = greenThinger.velocityX * -1; _local2 = true; } if ((level.hitTest(greenThinger._x - 6, greenThinger._y, true) || (level.hitTest(greenThinger._x - 6, greenThinger._y - 2, true))) || (level.hitTest(greenThinger._x - 6, greenThinger._y + 2, true))) { trace("Collision on the left"); greenThinger._x = greenThinger._x + 6; greenThinger.velocityX = greenThinger.velocityX * -1; _local2 = true; } if ((level.hitTest(greenThinger._x, greenThinger._y + 6, true) || (level.hitTest(greenThinger._x - 2, greenThinger._y + 6, true))) || (level.hitTest(greenThinger._x + 2, greenThinger._y + 6, true))) { trace("Collision on the bottom"); greenThinger._y = greenThinger._y - 6; greenThinger.velocityY = greenThinger.velocityY * -1; _local2 = true; } if ((level.hitTest(greenThinger._x, greenThinger._y - 6, true) || (level.hitTest(greenThinger._x - 2, greenThinger._y - 6, true))) || (level.hitTest(greenThinger._x + 2, greenThinger._y - 6, true))) { trace("Collision on the top"); greenThinger._y = greenThinger._y + 6; greenThinger.velocityY = greenThinger.velocityY * -1; _local2 = true; } if (_local2) { var _local6 = new Sound(this); _local6.attachSound("SoundBoing"); _local6.start(0, 1); bounces--; } } if (bounces <= 0) { Reset(); noMoreBounces.reset(); } } } bouncesText.text = bounces.toString(); } function onMouseUp() { if (aiming && (levelNumber != 11)) { var _local2 = arrow._rotation - 1; greenThinger.velocityX = (Math.cos((_local2 * Math.PI) / 180) * arrow.power) / 8; greenThinger.velocityY = (Math.sin((_local2 * Math.PI) / 180) * arrow.power) / 8; aiming = false; arrow._visible = false; trace(greenThinger.velocityX); var _local3 = new Sound(this); _local3.attachSound("SoundWhoosh"); _local3.start(0, 1); } } function Reset() { if (levelNumber != 11) { greenThinger._x = 224; greenThinger._y = 470; greenThinger.velocityX = 0; greenThinger.velocityY = 0; greenThinger._rotation = 0; aiming = true; arrow._visible = true; heart._visible = false; bounces = 10; } } function ShowTips() { trace("Show Tips"); tips._alpha = tips._alpha - 1; if (tips._alpha < 80) { tips._alpha = tips._alpha - 4; } if (tips._alpha <= 0) { clearInterval(tipsInterval); } } stop(); stage.addEventListener(MouseEvent.MOUSE_UP, MouseUp); stage.addEventListener(KeyboardEvent.KEY_DOWN, KeyDown); greenThinger.velocityX = 0; greenThinger.velocityY = 0; var t0 = getTimer(); var t1 = 0; var dT = 0; var aiming = true; var transitioning = false; heart._visible = false; transition._alpha = 0; transition._x = 0; transition._y = 0; var levelNumber = 1; var tipsInterval = setInterval(ShowTips, 200); var bounces = 10; noMoreBounces._visible = false;
Frame 15
stop();
Symbol 6 MovieClip [NoMoreBounces] Frame 1
function reset() { _visible = true; frames = 0; } function onEnterFrame() { frames++; if (frames >= 80) { _visible = false; } } var frames = 0;
Symbol 15 MovieClip [GreenThinger] Frame 1
function onEnterFrame() { _rotation = (_rotation + (velocityX / 5)); } stop(); var velocityX = 0; var velocityY = 0;
Symbol 18 MovieClip [Arrow] Frame 1
stop();
Symbol 21 MovieClip [HorizontalTile] Frame 1
function onEnterFrame() { t1 = getTimer(); dT = t1 - t0; t0 = t1; dT = dT / 100; if (left) { _x = (_x - (6 * dT)); if (_x < leftBound) { left = false; } } else { _x = (_x + (6 * dT)); if (_x > rightBound) { left = true; } } } stop(); var left = true; var leftBound = (_x - 64); var rightBound = (_x + 64); var t0 = getTimer(); var t1 = 0; var dT = 0;
Symbol 23 MovieClip [VerticalPlatform] Frame 1
function onEnterFrame() { t1 = getTimer(); dT = t1 - t0; t0 = t1; dT = dT / 100; if (up) { _y = (_y - (6 * dT)); if (_y < upperBound) { up = false; } } else { _y = (_y + (6 * dT)); if (_y > lowerBound) { up = true; } } } stop(); var up = true; var upperBound = (_y - 64); var lowerBound = (_y + 64); var t0 = getTimer(); var t1 = 0; var dT = 0;
Symbol 25 MovieClip [HorizontalPlatform] Frame 1
function onEnterFrame() { t1 = getTimer(); dT = t1 - t0; t0 = t1; dT = dT / 100; if (left) { _x = (_x - (6 * dT)); if (_x < leftBound) { left = false; } } else { _x = (_x + (6 * dT)); if (_x > rightBound) { left = true; } } } stop(); var left = true; var leftBound = (_x - 64); var rightBound = (_x + 64); var t0 = getTimer(); var t1 = 0; var dT = 0;
Symbol 42 MovieClip [Level] Frame 1
stop(); var LevelWidth = 448; var LevelHeight = 512; pinkThinger._x = LevelWidth / 2; pinkThinger._y = 96;
Symbol 42 MovieClip [Level] Frame 2
stop(); pinkThinger._x = 352; pinkThinger._y = 64;
Symbol 42 MovieClip [Level] Frame 3
stop(); pinkThinger._x = 228; pinkThinger._y = 256;
Symbol 42 MovieClip [Level] Frame 4
stop(); pinkThinger._x = 96; pinkThinger._y = 112;
Symbol 42 MovieClip [Level] Frame 5
stop(); pinkThinger._x = 224; pinkThinger._y = 256;
Symbol 42 MovieClip [Level] Frame 6
stop(); pinkThinger._x = 224; pinkThinger._y = 96;
Symbol 42 MovieClip [Level] Frame 7
stop();
Symbol 42 MovieClip [Level] Frame 8
stop(); pinkThinger._x = 64; pinkThinger._y = 64;
Symbol 42 MovieClip [Level] Frame 9
stop(); pinkThinger._x = 352; pinkThinger._y = 224;
Symbol 42 MovieClip [Level] Frame 10
stop(); pinkThinger._x = 224; pinkThinger._y = 64;
Symbol 45 MovieClip [Cloud] Frame 1
function onEnterFrame() { t1 = getTimer(); dT = t1 - t0; t0 = t1; dT = dT / 100; _x = (_x + (-4 * dT)); if (_x < -115) { _x = 563; } } var t0 = getTimer(); var t1 = 0; var dT = 0;
Symbol 48 MovieClip [Heart] Frame 1
function onEnterFrame() { if (shrinking) { _xscale = (_xscale - 2); _yscale = (_yscale - 2); if (_xscale < 32) { shrinking = false; } } else { _xscale = (_xscale + 2); _yscale = (_yscale + 2); if (_xscale > 85) { shrinking = true; } } } var shrinking = true; _xscale = 85; _yscale = 85;
Symbol 50 Button
on (release) { getURL ("http://www.cuteflashgames.com", "_blank"); }
Symbol 72 MovieClip Frame 1
stop();
Symbol 72 MovieClip Frame 145
stop(); _parent.gotoAndPlay(2);
Symbol 84 Button
on (release) { _root.preloader.logo.gotoAndPlay(2); this._visible = false; }
Symbol 85 MovieClip Frame 1
stop();
Symbol 88 MovieClip Frame 1
stop();
Instance of Symbol 85 MovieClip "allProgress" in Symbol 88 MovieClip Frame 1
onClipEvent (load) { var xGoyang = 4; var yGoyang = -4; bacaGoyang = false; jGoyang = 0; } onClipEvent (enterFrame) { if (bacaGoyang) { if (jGoyang <= 4) { jGoyang++; if (xGoyang == 4) { if (yGoyang == -4) { xGoyang = 4; yGoyang = 4; } else { xGoyang = -4; yGoyang = -4; } } else if (xGoyang == -4) { if (yGoyang == 4) { xGoyang = 4; yGoyang = -4; } else { xGoyang = -4; yGoyang = 4; } } _parent.logo._x = _parent.logo._x + xGoyang; _parent.logo._y = _parent.logo._y + yGoyang; } else { bacaGoyang = false; jGoyang = 1; } } }
Symbol 88 MovieClip Frame 55
_root.play();
Symbol 95 Button
on (release) { getURL ("http://www.cuteflashgames.com", "_blank"); }

Library Items

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

Instance Names

"preloader"Frame 1Symbol 88 MovieClip
"heart_title"Frame 5Symbol 48 MovieClip [Heart]
"level"Frame 10Symbol 42 MovieClip [Level]
"arrow"Frame 10Symbol 18 MovieClip [Arrow]
"greenThinger"Frame 10Symbol 15 MovieClip [GreenThinger]
"heart"Frame 10Symbol 48 MovieClip [Heart]
"transition"Frame 10Symbol 12 MovieClip [Transition]
"tips"Frame 10Symbol 10 MovieClip [Tips]
"bouncesText"Frame 10Symbol 106 EditableText
"noMoreBounces"Frame 10Symbol 6 MovieClip [NoMoreBounces]
"heart10"Frame 15Symbol 48 MovieClip [Heart]
"heart1"Frame 15Symbol 48 MovieClip [Heart]
"heart9"Frame 15Symbol 48 MovieClip [Heart]
"heart8"Frame 15Symbol 48 MovieClip [Heart]
"heart2"Frame 15Symbol 48 MovieClip [Heart]
"heart4"Frame 15Symbol 48 MovieClip [Heart]
"heart6"Frame 15Symbol 48 MovieClip [Heart]
"heart5"Frame 15Symbol 48 MovieClip [Heart]
"heart3"Frame 15Symbol 48 MovieClip [Heart]
"heart7"Frame 15Symbol 48 MovieClip [Heart]
"pinkThinger"Symbol 42 MovieClip [Level] Frame 1Symbol 28 MovieClip [PinkThinger]
"level6_1"Symbol 42 MovieClip [Level] Frame 6Symbol 25 MovieClip [HorizontalPlatform]
"level7_1"Symbol 42 MovieClip [Level] Frame 7Symbol 25 MovieClip [HorizontalPlatform]
"level7_2"Symbol 42 MovieClip [Level] Frame 7Symbol 25 MovieClip [HorizontalPlatform]
"level7_3"Symbol 42 MovieClip [Level] Frame 7Symbol 25 MovieClip [HorizontalPlatform]
"level8_1"Symbol 42 MovieClip [Level] Frame 8Symbol 25 MovieClip [HorizontalPlatform]
"level8_2"Symbol 42 MovieClip [Level] Frame 8Symbol 23 MovieClip [VerticalPlatform]
"level9_1"Symbol 42 MovieClip [Level] Frame 9Symbol 23 MovieClip [VerticalPlatform]
"level9_2"Symbol 42 MovieClip [Level] Frame 9Symbol 23 MovieClip [VerticalPlatform]
"level9_4"Symbol 42 MovieClip [Level] Frame 9Symbol 21 MovieClip [HorizontalTile]
"level9_5"Symbol 42 MovieClip [Level] Frame 9Symbol 21 MovieClip [HorizontalTile]
"level9_6"Symbol 42 MovieClip [Level] Frame 9Symbol 21 MovieClip [HorizontalTile]
"level9_3"Symbol 42 MovieClip [Level] Frame 9Symbol 21 MovieClip [HorizontalTile]
"level10_3"Symbol 42 MovieClip [Level] Frame 10Symbol 21 MovieClip [HorizontalTile]
"level10_4"Symbol 42 MovieClip [Level] Frame 10Symbol 21 MovieClip [HorizontalTile]
"level10_5"Symbol 42 MovieClip [Level] Frame 10Symbol 21 MovieClip [HorizontalTile]
"level10_2"Symbol 42 MovieClip [Level] Frame 10Symbol 21 MovieClip [HorizontalTile]
"level10_1"Symbol 42 MovieClip [Level] Frame 10Symbol 23 MovieClip [VerticalPlatform]
"barLoad"Symbol 85 MovieClip Frame 1Symbol 78 MovieClip
"logo"Symbol 88 MovieClip Frame 1Symbol 72 MovieClip
"allProgress"Symbol 88 MovieClip Frame 1Symbol 85 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "SoundWhoosh"
ExportAssets (56)Timeline Frame 1Symbol 2 as "SoundKiss"
ExportAssets (56)Timeline Frame 1Symbol 3 as "SoundBoing"
ExportAssets (56)Timeline Frame 1Symbol 6 as "NoMoreBounces"
ExportAssets (56)Timeline Frame 1Symbol 10 as "Tips"
ExportAssets (56)Timeline Frame 1Symbol 12 as "Transition"
ExportAssets (56)Timeline Frame 1Symbol 15 as "GreenThinger"
ExportAssets (56)Timeline Frame 1Symbol 18 as "Arrow"
ExportAssets (56)Timeline Frame 1Symbol 21 as "HorizontalTile"
ExportAssets (56)Timeline Frame 1Symbol 23 as "VerticalPlatform"
ExportAssets (56)Timeline Frame 1Symbol 25 as "HorizontalPlatform"
ExportAssets (56)Timeline Frame 1Symbol 28 as "PinkThinger"
ExportAssets (56)Timeline Frame 1Symbol 42 as "Level"
ExportAssets (56)Timeline Frame 1Symbol 45 as "Cloud"
ExportAssets (56)Timeline Frame 1Symbol 48 as "Heart"

Dynamic Text Variables

textLoadSymbol 76 EditableText"<p align="center"><font face="Hemi Head 426" size="18" color="#ffffff" letterSpacing="4.000000" kerning="0">90</font></p>"




http://swfchan.com/22/108066/info.shtml
Created: 15/3 -2019 21:32:54 Last modified: 15/3 -2019 21:32:54 Server time: 17/05 -2024 02:56:10