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

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

slots.swf

This is the info page for
Flash #9923

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


Text
©2oo1 DiGitAl ViSiON MultiMEdiA

000

%

Play again!

MMMMMMMMMM

MMMMMMM@MMMMMMMMMM.MMM

00000000

00

Best Players

Enter your score!

You are one of the best players!

Send Data

Name:
NOTES:

Reading Highscore data

Please wait

Writing Highscore data

Timeout Error while reading Highscore data.

Highscore functionality will be disabled

sound on

sound off

200x
300x
400x
500x
750x
1000x

100x
10x
1x

00000

0000

00000

SCORE

BET

WIN

INC

DEC

CASH OUT

SUBMIT YOUR SCORE

Your game is over

Play again!

ActionScript [AS1/AS2]

Frame 1
_quality = "MEDIUM";
Frame 2
function randomizeItems() { slide_items1 = new Array(nr_items + 1); slide_items2 = new Array(nr_items + 1); slide_items3 = new Array(nr_items + 1); i = 1; while (i < (nr_items + 1)) { slide_items1[i] = 1 + random(max_items_tip); slide_items2[i] = 1 + random(max_items_tip); slide_items3[i] = 1 + random(max_items_tip); i++; } } max_items_tip = 7; nr_items = 14; item_height = 50; item_width = 150; initialMove = 50; latencyTime = 1; useHighscore = true; maxScores = 10; writeHighscoresPath = "slotswrite.php"; readHighscoresPath = "slotsread.php"; readWriteTimeout = 63; highScores._visible = false; win = new Array(_root.max_items_tip); win_amount = new Array(_root.max_items_tip); maxBet = 5; i = 0; while (i < _root.max_items_tip) { win[i] = new Array(i + 1, i + 1, i + 1); i++; } win_amount[1] = 200; win_amount[2] = 300; win_amount[3] = 400; win_amount[4] = 500; win_amount[5] = 750; win_amount[6] = 1000; win.push(new Array(1, 0, 0)); win.push(new Array(0, 1, 0)); win.push(new Array(0, 0, 1)); win_amount.push(1); win_amount.push(1); win_amount.push(1); win.push(new Array(1, 1, 0)); win.push(new Array(0, 1, 1)); win.push(new Array(1, 0, 1)); win_amount.push(8); win_amount.push(8); win_amount.push(8); win_amount[0] = 73; slide_items1 = new Array(1, 2, 4, 7, 1, 2, 3, 6, 5, 1, 4, 3, 2, 5, 1); slide_items2 = new Array(1, 6, 5, 2, 2, 1, 4, 1, 3, 3, 7, 4, 1, 5, 2); slide_items3 = new Array(1, 7, 6, 3, 1, 4, 6, 2, 3, 4, 5, 2, 1, 3, 1);
Frame 3
highScores.initHighscoreTable(10); stop();
Frame 5
stop();
Symbol 11 MovieClip [litem] Frame 1
function getTip() { return(tip); } function setUp(num) { pic.removeMovieClip(); tip = num; this.attachMovie("lpic" + tip, pic, 10); } stop();
Symbol 22 MovieClip Frame 1
stop();
Symbol 26 MovieClip Frame 1
_root.stop(); movieSize = _root.getBytesTotal();
Symbol 26 MovieClip Frame 2
movieLoaded = _root.getBytesLoaded(); percent = Math.round((movieLoaded / movieSize) * 100); loadbar.gotoAndStop(percent);
Symbol 26 MovieClip Frame 3
if (movieLoaded < movieSize) { gotoAndPlay(_currentframe - 1); }
Symbol 26 MovieClip Frame 4
_root.play();
Symbol 29 Button
on (press) { _root.slide1.d = 0; _root.slide2.d = 0; _root.slide3.d = 0; }
Symbol 31 MovieClip Frame 1
stop();
Symbol 31 MovieClip Frame 2
loadVariables (_parent.pathToWrite, this, "POST");
Symbol 33 Button
on (release) { clearHighscores(); _root.gotoAndPlay(2); }
Symbol 44 Button
on (release) { if (isScoreAccepted(_root.scorController.scor)) { enterScore(_root.scorController.scor); } }
Symbol 47 Button
on (release) { insertNewScore(inputName, inputMail, inputScore); writeHighScores(_parent.writeHighscoresPath, _parent.readWriteTimeout); }
Symbol 57 MovieClip Frame 1
function initHighscoreTable(scores) { if (status != "error") { var i; if (scores < 2) { scores = 2; } if (50 < scores) { scores = 10; } scoresToKeep = scores; i = 1; while (scoresToKeep >= i) { highscoreData["name" + i] = "none"; highscoreData["email" + i] = "none"; highscoreData["score" + i] = 0; i++; } gotoAndStop (1); } } function listHighscores() { gotoAndStop (2); } function getStatus() { return(status); } function clearHighscores() { if (status != "error") { var i; i = 1; while (scoresToKeep >= i) { removeMovieClip("highscoreLine" + i); i++; } } } function enterScore(score) { if (status != "error") { if (score < 0) { score = 0; } inputScore = score; gotoAndStop (3); } } function isScoreAccepted(score) { if (status != "error") { if (score >= Number(highscoreData["score" + scoresToKeep])) { return(true); } return(false); } return(false); } function insertNewScore(name, mail, score) { var i; var j; var rank; scor = Number(score); i = 1; while (scoresToKeep >= i) { if (scor >= Number(highscoreData["score" + i])) { rank = i; break; } i++; } i = scoresToKeep - 1; while (i >= rank) { j = i + 1; highscoreData["name" + j] = highscoreData["name" + i]; highscoreData["email" + j] = highscoreData["email" + i]; highscoreData["score" + j] = highscoreData["score" + i]; i--; } highscoreData["name" + rank] = name; highscoreData["email" + rank] = mail; highscoreData["score" + rank] = scor; } function readHighscores(path, timeout, local) { if (status != "error") { if (timeout < 2) { timeout = 2; } if ((local != true) && (local != false)) { local = true; } if (local == false) { var randomNo = random(getTimer() * 1000); pathToRead = (path + "?requestID=") + randomNo; } else { pathToRead = path; } timeToWait = timeout * 1000; gotoAndPlay (4); } } function writeHighScores(path, timeout) { if (status != "error") { if (timeout < 2) { timeout = 2; } pathToWrite = path; timeToWait = timeout * 1000; gotoAndPlay (7); } } function highscoreDisable() { if ((status != "list") && (status != "enter")) { gotoAndStop (21); } } function errorOverride() { if ((status == "error") || (status == "disable")) { gotoAndStop (1); } } highscoreLine._visible = false; status = "idle"; inputScore = 0; stop();
Symbol 57 MovieClip Frame 2
highscoreLine._visible = false; if (status != "error") { var i; lineHeight = highscoreLine._height - 3; i = 1; while (scoresToKeep >= i) { duplicateMovieClip (highscoreLine, "highscoreLine" + i, i); this["highscoreLine" + i].index = i; this["highscoreLine" + i].name = highscoreData["name" + i]; this["highscoreLine" + i].mail = highscoreData["email" + i]; this["highscoreLine" + i].scor = highscoreData["score" + i]; this["highscoreLine" + i]._y = this["highscoreLine" + i]._y + ((i - 1) * lineHeight); i++; } } status = "list"; stop();
Symbol 57 MovieClip Frame 3
status = "enter"; clearHighscores(); stop();
Symbol 57 MovieClip Frame 4
status = "read"; highscoreData.done = 0; loadVariables (pathToRead, highscoreData); startTime = getTimer();
Symbol 57 MovieClip Frame 6
currentTime = getTimer(); elapsedTime = currentTime - startTime; remainTime = timeToWait - elapsedTime; if ((highscoreData.done != 1) && (remainTime < 100)) { gotoAndPlay (10); } else if (highscoreData.done != 1) { gotoAndPlay(_currentframe - 1); } else { gotoAndPlay (2); }
Symbol 57 MovieClip Frame 7
status = "write"; highscoreData.done = 0; highscoreData.gotoAndPlay("sendvars"); startTime = getTimer();
Symbol 57 MovieClip Frame 9
currentTime = getTimer(); elapsedTime = currentTime - startTime; remainTime = timeToWait - elapsedTime; if ((highscoreData.done != 1) && (remainTime < 100)) { gotoAndPlay (10); } else if (highscoreData.done != 1) { gotoAndPlay(_currentframe - 1); } else { gotoAndStop (1); }
Symbol 57 MovieClip Frame 10
status = "error";
Symbol 57 MovieClip Frame 20
_root.prizes._visible = true; stop();
Symbol 57 MovieClip Frame 21
status = "disable"; stop();
Symbol 62 MovieClip Frame 1
function playSound(www) { if (sound_on) { gotoAndPlay(www); } } sound_on = true; stop();
Symbol 62 MovieClip Frame 3
stop();
Symbol 62 MovieClip Frame 5
stop();
Symbol 62 MovieClip Frame 7
stop();
Symbol 62 MovieClip Frame 9
stop();
Symbol 64 Button
on (release) { this.play(); _root.sound.sound_on = !_root.sound.sound_on; }
Symbol 67 MovieClip Frame 1
stop();
Symbol 67 MovieClip Frame 2
stop();
Symbol 68 Button
on (press) { prizes._visible = true; highScores._visible = false; maneta.released = false; if (((_root.scorController.bet != 0) && ((_root.scorController.scor + _root.scorController.win) >= _root.scorController.bet)) && (maneta.resting)) { if (((!_root.slide1.rolling) && (!_root.slide1.rolling)) && (!_root.slide1.rolling)) { maneta.play(); maneta.resting = false; sound.playSound("maneta"); } } else { _root.statusController.setStatus("Try to bet before!"); } } on (release) { maneta.released = true; }
Symbol 69 MovieClip Frame 1
function equalsArr(a, b) { if ((a[0] == 0) || (a[0] == b[0])) { if ((a[1] == 0) || (a[1] == b[1])) { if ((a[2] == 0) || (a[2] == b[2])) { return(true); } } } return(false); } function check() { wining = false; if ((_root.slide1.win_check && (_root.slide2.win_check)) && (_root.slide3.win_check)) { result = new Array(_root.slide1.result, _root.slide2.result, _root.slide3.result); i = 0; while (i < win.length) { if (equalsArr(win[i], result)) { _root.scorController.updateScor(win_amount[i]); wining = true; } i++; } _root.slide1.win_check = false; _root.slide2.win_check = false; _root.slide3.win_check = false; if (wining) { _root.sound.playSound("win"); } else if ((_root.scorController.win == 0) && (_root.scorController.scor == 0)) { _root.gotoAndPlay("gameOver"); } } } win = _root.win; win_amount = _root.win_amount;
Symbol 69 MovieClip Frame 2
check();
Symbol 69 MovieClip Frame 3
gotoAndPlay(_currentframe - 1);
Symbol 71 MovieClip Frame 1
function setUp() { i = 1; while (i < (nr_items + 1)) { this.attachMovie("litem", "item" + i, 300 + i); z = eval ("_root.slide_items" + index)[i]; eval ("item" + i).tip = z; eval ("item" + i).attachMovie("lpic" + z, "pic", 10); setProperty("item" + i, _y , height); height = height + _root.item_height; i++; } setProperty("item0", _y , -_root.item_height); } function roll() { this.gotoAndPlay(2); } index = substring(this._name, length(this._name), -1); nr_items = _root.nr_items; height = 0; altitude = this._y; win_check = false; rolling = false; this.attachMovie("litem", "item0", 300); z = eval ("_root.slide_items" + index)[nr_items]; item0.tip = z; item0.attachMovie("lpic" + z, "pic", 10); item_height = item0._height; setUp(); stop();
Symbol 71 MovieClip Frame 2
win_check = false; d = _root.initialMove + random(10); time = _root.latencyTime + random(3);
Symbol 71 MovieClip Frame 3
if (!rol) { rolling = true; } first_time = getTimer();
Symbol 71 MovieClip Frame 5
second_time = getTimer(); if (time < (second_time - first_time)) { first_time = second_time; this._y = this._y + d; if ((altitude + _root.item_height) < this._y) { this._y = this._y - height; } if (d == 0) { i = Math.floor((altitude - this._y) / _root.item_height); if ((i + 1) != 0) { result = eval ("_root.slide_items" + index)[i + 1]; final = i + 1; } else { result = eval ("_root.slide_items" + index)[nr_items]; final = nr_items; } if ((0 < ((altitude - this._y) - (i * _root.item_height))) && ((_root.item_height / 2) >= ((altitude - this._y) - (i * _root.item_height)))) { this._y++; gotoAndPlay(_currentframe - 1); } else if ((((altitude - this._y) - (i * _root.item_height)) < _root.item_height) && ((_root.item_height / 2) < ((altitude - this._y) - (i * _root.item_height)))) { this._y--; gotoAndPlay(_currentframe - 1); } else if (((altitude - this._y) - (i * _root.item_height)) == 1) { gotoAndPlay(_currentframe - 1); } } else { d = d - 1; gotoAndPlay(_currentframe - 1); if ((_root.sound.sound_on && (index == 1)) && (d % 2)) { _root.sound.gotoAndPlay("spin"); } } }
Symbol 71 MovieClip Frame 6
win_check = true; rolling = false; stop();
Symbol 77 MovieClip Frame 1
if (((_root.ready && (!_root.slide1.rolling)) && (!_root.slide1.rolling)) && (!_root.slide1.rolling)) { _root.scorController.updateScor(0); _root.slide1.roll(); _root.slide2.roll(); _root.slide3.roll(); _root.ready = false; } resting = true; stop();
Symbol 77 MovieClip Frame 2
l.play(); resting = false;
Symbol 77 MovieClip Frame 11
if (!released) { gotoAndPlay(_currentframe - 1); } else { _root.ready = true; }
Symbol 94 Button
on (press) { if (((!_root.slide1.rolling) && (!_root.slide2.rolling)) && (!_root.slide3.rolling)) { max = _root.maxBet; if ((scor + win) < max) { max = scor + win; } counter.startCounter("_root.scorController.bet", max, true); } } on (release) { counter.stopCounter(); }
Symbol 100 Button
on (press) { if (((!_root.slide1.rolling) && (!_root.slide1.rolling)) && (!_root.slide1.rolling)) { counter.startCounter("_root.scorController.bet", scor + win, false); } } on (release) { counter.stopCounter(); }
Symbol 101 MovieClip Frame 1
function startCounter(path1, max1, inc1) { max = max1; path = path1; inc = inc1; if (inc) { if (eval (path) < max) { eval (path)++; } } else if (0 < eval (path)) { eval (path)--; } _root.sound.playSound("inc-dec"); gotoAndPlay (5); } function stopCounter() { stop(); } stop();
Symbol 101 MovieClip Frame 5
time1 = getTimer(); speed = 80; total = 1; t = 1;
Symbol 101 MovieClip Frame 10
time2 = getTimer(); if (speed < (time2 - time1)) { time1 = time2; if (1 < speed) { speed--; } if (inc) { if (eval (path) < max) { Set(path, eval (path) + t); } else { Set(path, max); stop(); } } else if (0 < eval (path)) { Set(path, eval (path) - t); } else { Set(path, 0); stop(); } _root.sound.playSound("inc-dec"); total = total + t; if (total == 10) { t = 10; } if (total == 300) { t = 100; } if (total == 1100) { t = 1000; } if (total == 11000) { t = 10000; } if (total == 110000) { t = 100000 /* 0x0186A0 */; } if (total == 1100000) { t = 1000000 /* 0x0F4240 */; } } gotoAndPlay(_currentframe - 1);
Symbol 102 MovieClip Frame 1
function increaseBet(amount) { if (0 < (bet + amount)) { bet = bet + amount; } } function updateScor(factor) { if (0 < factor) { win = win + (bet * factor); } else { scor = scor + (win - bet); win = 0; } } function addBonus(ammount) { if (0 < (scor + amount)) { scor = scor + amount; } else { scor = 0; } } scor = 100; bet = 1; win = 0;
Symbol 102 MovieClip Frame 3
Symbol 102 MovieClip Frame 4
gotoAndPlay(_currentframe - 1);
Symbol 103 Button
on (release) { _root.scorController.scor = _root.scorController.scor + _root.scorController.win; _root.scorController.win = 0; if ((highScores.getStatus() == "error") || (highScores.getStatus() == "disable")) { highScores.errorOverride(); } if ((highScores.getStatus() == "idle") || (highScores.getStatus() == "park")) { } prizes._visible = false; highScores._visible = true; highScores.readHighscores(_root.readHighscoresPath, readWriteTimeout, false); }
Symbol 106 MovieClip Frame 1
stop();
Symbol 106 MovieClip Frame 2
stop();
Symbol 109 Button
on (release) { gotoAndPlay (2); }

Library Items

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

Instance Names

"highScores"Frame 2Symbol 57 MovieClip
"sound"Frame 3Symbol 62 MovieClip
"win"Frame 3Symbol 69 MovieClip
"slide3"Frame 3Symbol 71 MovieClip
"slide2"Frame 3Symbol 71 MovieClip
"slide1"Frame 3Symbol 71 MovieClip
"maneta"Frame 3Symbol 77 MovieClip
"prizes"Frame 3Symbol 81 MovieClip
"scorController"Frame 3Symbol 102 MovieClip
"cashOut"Frame 3Symbol 106 MovieClip
"loadbar"Symbol 26 MovieClip Frame 1Symbol 22 MovieClip
"highscoreData"Symbol 57 MovieClip Frame 1Symbol 31 MovieClip
"highscoreLine"Symbol 57 MovieClip Frame 1Symbol 41 MovieClip
"counter"Symbol 102 MovieClip Frame 1Symbol 101 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "lpic1"
ExportAssets (56)Timeline Frame 1Symbol 2 as "lpic1"
ExportAssets (56)Timeline Frame 1Symbol 3 as "lpic6"
ExportAssets (56)Timeline Frame 1Symbol 4 as "lpic6"
ExportAssets (56)Timeline Frame 1Symbol 5 as "lpic5"
ExportAssets (56)Timeline Frame 1Symbol 6 as "lpic5"
ExportAssets (56)Timeline Frame 1Symbol 7 as "lpic4"
ExportAssets (56)Timeline Frame 1Symbol 8 as "lpic4"
ExportAssets (56)Timeline Frame 1Symbol 9 as "lpic3"
ExportAssets (56)Timeline Frame 1Symbol 10 as "lpic3"
ExportAssets (56)Timeline Frame 1Symbol 11 as "litem"
ExportAssets (56)Timeline Frame 1Symbol 12 as "lpic2"
ExportAssets (56)Timeline Frame 1Symbol 13 as "lpic2"
ExportAssets (56)Timeline Frame 1Symbol 14 as "lpic7"
ExportAssets (56)Timeline Frame 1Symbol 15 as "lpic7"
ExportAssets (56)Timeline Frame 1Symbol 1 as "lpic1"
ExportAssets (56)Timeline Frame 1Symbol 7 as "lpic4"
ExportAssets (56)Timeline Frame 1Symbol 14 as "lpic7"
ExportAssets (56)Timeline Frame 1Symbol 3 as "lpic6"
ExportAssets (56)Timeline Frame 1Symbol 5 as "lpic5"
ExportAssets (56)Timeline Frame 1Symbol 9 as "lpic3"
ExportAssets (56)Timeline Frame 1Symbol 12 as "lpic2"
ExportAssets (56)Timeline Frame 3Symbol 12 as "lpic2"
ExportAssets (56)Timeline Frame 3Symbol 12 as "lpic2"
ExportAssets (56)Timeline Frame 3Symbol 12 as "lpic2"
ExportAssets (56)Timeline Frame 3Symbol 9 as "lpic3"
ExportAssets (56)Timeline Frame 3Symbol 9 as "lpic3"
ExportAssets (56)Timeline Frame 3Symbol 9 as "lpic3"
ExportAssets (56)Timeline Frame 3Symbol 5 as "lpic5"
ExportAssets (56)Timeline Frame 3Symbol 5 as "lpic5"
ExportAssets (56)Timeline Frame 3Symbol 5 as "lpic5"
ExportAssets (56)Timeline Frame 3Symbol 3 as "lpic6"
ExportAssets (56)Timeline Frame 3Symbol 3 as "lpic6"
ExportAssets (56)Timeline Frame 3Symbol 3 as "lpic6"
ExportAssets (56)Timeline Frame 3Symbol 14 as "lpic7"
ExportAssets (56)Timeline Frame 3Symbol 14 as "lpic7"
ExportAssets (56)Timeline Frame 3Symbol 14 as "lpic7"
ExportAssets (56)Timeline Frame 3Symbol 7 as "lpic4"
ExportAssets (56)Timeline Frame 3Symbol 7 as "lpic4"
ExportAssets (56)Timeline Frame 3Symbol 7 as "lpic4"
ExportAssets (56)Timeline Frame 3Symbol 1 as "lpic1"
ExportAssets (56)Timeline Frame 3Symbol 1 as "lpic1"
ExportAssets (56)Timeline Frame 3Symbol 1 as "lpic1"
ExportAssets (56)Timeline Frame 3Symbol 1 as "lpic1"
ExportAssets (56)Timeline Frame 3Symbol 1 as "lpic1"
ExportAssets (56)Timeline Frame 3Symbol 1 as "lpic1"

Labels

"init"Frame 2
"gameOver"Frame 5
"park"Symbol 31 MovieClip Frame 1
"sendvars"Symbol 31 MovieClip Frame 2
"park"Symbol 57 MovieClip Frame 1
"listHighscores"Symbol 57 MovieClip Frame 2
"addScore"Symbol 57 MovieClip Frame 3
"readScores"Symbol 57 MovieClip Frame 4
"writeScores"Symbol 57 MovieClip Frame 7
"error"Symbol 57 MovieClip Frame 10
"disable"Symbol 57 MovieClip Frame 21
"spin"Symbol 62 MovieClip Frame 2
"maneta"Symbol 62 MovieClip Frame 4
"win"Symbol 62 MovieClip Frame 6
"inc-dec"Symbol 62 MovieClip Frame 8
"cycle1"Symbol 101 MovieClip Frame 5

Dynamic Text Variables

percentSymbol 24 EditableText"000"
nameSymbol 37 EditableText"MMMMMMMMMM"
mailSymbol 38 EditableText"MMMMMMM@MMMMMMMMMM.MMM"
scorSymbol 39 EditableText"00000000"
indexSymbol 40 EditableText"00"
inputNameSymbol 49 EditableText""
inputMailSymbol 50 EditableText""
scorSymbol 83 EditableText"00000"
betSymbol 84 EditableText"0000"
winSymbol 85 EditableText"00000"




http://swfchan.com/2/9923/info.shtml
Created: 9/6 -2019 03:54:53 Last modified: 9/6 -2019 03:54:53 Server time: 12/05 -2024 18:56:52