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

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

mario-video-poker.swf

This is the info page for
Flash #10097

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


Text
Play

WELCOME TO MARIO POKER!!!

straight flush

Straight Flush

Straight Flush

royal flush

ACE

JACK

QUEEN

KING

100.00

100.00

$

$

DEAL

BET $5

BET $10

BET $100

BET $1000

New Game

mAKE A BET, THEN DEAL.

discard

CLICK ON CARDS YOU

WANT TO DISCARD

results

New Hand

Game Over

Play Again

New Game

ActionScript [AS1/AS2]

Frame 3
function startGame1() { showCash(); gotoAndPlay (4); } function showCash() { cashDisplay = "$" + cash; } startGame1(); myData = SharedObject.getLocal("myfile"); score.text = myData.data.score; fscommand ("fullscreen", true); fscommand ("showmenu", false); fscommand ("allowscale", true); stop();
Frame 4
function Need() { myData.data.score = score.text; myData.flush(); } function startGame() { bet = 0; showBet(); } function tellBet() { output1 = bet * 5000; output2 = bet * 300; output3 = bet * 100; output4 = bet * 25; output5 = bet * 20; output6 = bet * 10; output7 = bet * 3; output8 = bet * 2; output9 = bet; } function startDeal() { createDeck(); firstDraw(); showCards(); } function createDeck() { suits = ["c", "d", "s", "h"]; temp = new Array(); suit = 0; while (suit < 4) { num = 1; while (num < 14) { temp.push(suits[suit] + num); num++; } suit++; } deck = new Array(); while (temp.length > 0) { r = int(Math.random() * temp.length); deck.push(temp[r]); temp.splice(r, 1); } } function firstDraw() { cards = new Array(); i = 0; while (i < 5) { cards.push(deck.pop()); i++; } hold = [true, true, true, true, true]; showCards(); handValue1(); } function showCards() { var _local1 = _root; i = 0; while (i < 5) { _local1["card" + i].gotoAndStop(cards[i]); i++; } } function holdDraw(cardNum) { var _local1 = cardNum; if (hold[_local1]) { _root["card" + _local1].gotoAndStop("back"); hold[_local1] = false; mysound = new Sound(); mySound.attachSound("select"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); } else { _root["card" + _local1].gotoAndStop(cards[_local1]); hold[_local1] = true; mysound = new Sound(); mySound.attachSound("select"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); } } function showFlsh() { tellTarget ("pair") { gotoAndStop (1); }; tellTarget ("2p") { gotoAndStop (1); }; tellTarget ("3k") { gotoAndStop (1); }; tellTarget ("st8") { gotoAndStop (1); }; tellTarget ("flush") { gotoAndStop (1); }; tellTarget ("boat") { gotoAndStop (1); }; tellTarget ("4k") { gotoAndStop (1); }; tellTarget ("st8f") { gotoAndStop (1); }; tellTarget ("sf") { gotoAndStop (1); }; } function secondDraw() { showFlsh(); i = 0; while (i < 5) { if (!hold[i]) { cards[i] = deck.pop(); } i++; } showCards(); handVal = handValue(cards); winAmt = bet * winnings(handVal); resultsDisplay = ((handVal + " : ") + "$") + winAmt; cash = cash + winAmt; showCash(); gotoAndPlay ("done"); } function compareHands(a, b) { numa = Number(a.substr(1, 2)); numb = Number(b.substr(1, 2)); if (numa < numb) { return(-1); } if (numa == numb) { return(0); } if (numa > numb) { return(1); } } function handValue() { hand = cards.slice(); hand.sort(compareHands); suits = new Array(); nums = new Array(); i = 0; while (i < 5) { suits.push(hand[i].substr(0, 1)); nums.push(Number(hand[i].substr(1, 2))); i++; } straight = true; i = 0; while (i < 4) { if ((nums[i] + 1) != nums[i + 1]) { straight = false; } i++; } if (((((nums[0] == 1) and (nums[1] == 10)) and (nums[2] == 11)) and (nums[3] == 12)) and (nums[4] == 13)) { straight = true; } flush = true; i = 1; while (i < 5) { if (suits[i] != suits[0]) { flush = false; } i++; } counts = new Array(); i = 0; while (i < 14) { counts.push(0); i++; } i = 0; while (i < 5) { counts[nums[i]]++; i++; } pair = false; twoPair = false; threeOfAKind = false; fourOfAKind = false; i = 1; while (i < 14) { if (counts[i] == 2) { if (pair) { twoPair = true; } else { pair = true; } } else if (counts[i] == 3) { threeOfAKind = true; } else if (counts[i] == 4) { fourOfAKind = true; } i++; } jackOrHigher = false; i = 1; while (i < 14) { if (((i == 1) or (i > 10)) and (counts[i] >= 2)) { jackOrHigher = true; } i++; } hasAce = false; if (counts[1] > 0) { hasAce = true; } if ((straight and flush) and hasAce) { mysound = new Sound(); mySound.attachSound("won"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); return("Royal Flush"); } if (straight and flush) { mysound = new Sound(); mySound.attachSound("won"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); return("Straight Flush"); } if (fourOfAKind) { mysound = new Sound(); mySound.attachSound("won"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); return("Four Of A Kind"); } if (pair and threeOfAKind) { mysound = new Sound(); mySound.attachSound("won"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); return("Full House"); } if (flush) { mysound = new Sound(); mySound.attachSound("won"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); return("Flush"); } if (straight) { mysound = new Sound(); mySound.attachSound("won"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); return("Straight"); } if (threeOfAKind) { mysound = new Sound(); mySound.attachSound("won"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); return("Three Of A Kind"); } if (twoPair) { mysound = new Sound(); mySound.attachSound("won"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); return("Two Pair"); } if (pair) { tellTarget ("pair") { gotoAndPlay (2); mysound = new Sound(); mySound.attachSound("won"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); }; return("Pair"); } return("Try Again"); } function handValue1() { hand = cards.slice(); hand.sort(compareHands); suits = new Array(); nums = new Array(); i = 0; while (i < 5) { suits.push(hand[i].substr(0, 1)); nums.push(Number(hand[i].substr(1, 2))); i++; } straight = true; i = 0; while (i < 4) { if ((nums[i] + 1) != nums[i + 1]) { straight = false; } i++; } if (((((nums[0] == 1) and (nums[1] == 10)) and (nums[2] == 11)) and (nums[3] == 12)) and (nums[4] == 13)) { straight = true; } flush = true; i = 1; while (i < 5) { if (suits[i] != suits[0]) { flush = false; } i++; } counts = new Array(); i = 0; while (i < 14) { counts.push(0); i++; } i = 0; while (i < 5) { counts[nums[i]]++; i++; } pair = false; twoPair = false; threeOfAKind = false; fourOfAKind = false; i = 1; while (i < 14) { if (counts[i] == 2) { if (pair) { twoPair = true; } else { pair = true; } } else if (counts[i] == 3) { threeOfAKind = true; } else if (counts[i] == 4) { fourOfAKind = true; } i++; } jackOrHigher = false; i = 1; while (i < 14) { if (((i == 1) or (i > 10)) and (counts[i] >= 2)) { jackOrHigher = true; } i++; } hasAce = false; if (counts[1] > 0) { hasAce = true; } if ((straight and flush) and hasAce) { tellTarget ("sf") { gotoAndPlay (2); }; return("Royal Flush"); } if (straight and flush) { tellTarget ("st8f") { gotoAndPlay (2); }; return("Straight Flush"); } if (fourOfAKind) { tellTarget ("4k") { gotoAndPlay (2); }; return("Four Of A Kind"); } if (pair and threeOfAKind) { tellTarget ("boat") { gotoAndPlay (2); }; return("Full House"); } if (flush) { tellTarget ("flush") { gotoAndPlay (2); }; return("Flush"); } if (straight) { tellTarget ("st8") { gotoAndPlay (2); }; return("Straight"); } if (threeOfAKind) { tellTarget ("3k") { gotoAndPlay (2); }; return("Three Of A Kind"); } if (twoPair) { tellTarget ("2p") { gotoAndPlay (2); }; return("Two Pair"); } if (pair) { tellTarget ("pair") { gotoAndPlay (2); }; return("Pair"); } return("Try Again"); } function winnings(handVal) { var _local1 = handVal; if (_local1 == "Royal Flush") { return(5000); } if (_local1 == "Straight Flush") { return(300); } if (_local1 == "Four Of A Kind") { return(100); } if (_local1 == "Full House") { return(25); } if (_local1 == "Flush") { return(20); } if (_local1 == "Straight") { return(10); } if (_local1 == "Three Of A Kind") { return(3); } if (_local1 == "Two Pair") { return(2); } if (_local1 == "Pair") { return(1); } if (_local1 == "Try Again") { return(0); } return(undefined); } startGame(); stop(); if (cash <= 0) { cash = 1000; }
Frame 5
startDeal(); stop();
Frame 6
stop();
Symbol 8 Button
on (release) { _root.play(); }
Symbol 11 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop ("loaded"); }
Symbol 11 MovieClip Frame 2
gotoAndPlay (1);
Symbol 36 MovieClip Frame 1
stop();
Symbol 36 MovieClip Frame 10
gotoAndPlay (2);
Symbol 38 MovieClip Frame 1
stop();
Symbol 42 MovieClip Frame 1
stop();
Symbol 49 MovieClip Frame 1
stop();
Symbol 52 MovieClip Frame 1
stop();
Symbol 55 MovieClip Frame 1
stop();
Symbol 59 MovieClip Frame 1
stop();
Symbol 62 MovieClip Frame 1
stop();
Symbol 65 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 1
stop();
Symbol 105 Button
on (press) { holdDraw(3); }
Symbol 106 Button
on (press) { holdDraw(0); }
Symbol 107 Button
on (press) { holdDraw(1); }
Symbol 108 Button
on (press) { holdDraw(4); }
Symbol 109 Button
on (press) { holdDraw(2); }
Symbol 118 Button
on (release) { if (Number(cash) > 0) { bet = Number(bet) + 5; cash = cash - 5; tellBet(); mysound = new Sound(); mySound.attachSound("bet1"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); } }
Symbol 121 Button
on (press) { if (Number(bet) > 0) { gotoAndPlay ("play"); } }
Symbol 122 Button
on (release) { if (Number(cash) > 0) { bet = Number(bet) + 10; cash = cash - 10; tellBet(); mysound = new Sound(); mySound.attachSound("bet1"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); } }
Symbol 123 Button
on (release) { if (Number(cash) > 0) { bet = Number(bet) + 100; cash = cash - 100; tellBet(); mysound = new Sound(); mySound.attachSound("bet1"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); } }
Symbol 124 Button
on (release) { if (Number(cash) > 0) { bet = Number(bet) + 1000; cash = cash - 1000; tellBet(); mysound = new Sound(); mySound.attachSound("bet1"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); } }
Symbol 130 Button
on (press) { mysound = new Sound(); mySound.attachSound("play1"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); startGame(); cash = 1000; output1 = ""; output2 = ""; output3 = ""; output4 = ""; output5 = ""; output6 = ""; output7 = ""; output8 = ""; output9 = ""; }
Symbol 140 Button
on (press) { holdDraw(0); }
Symbol 141 Button
on (press) { holdDraw(1); }
Symbol 142 Button
on (press) { holdDraw(2); }
Symbol 143 Button
on (press) { holdDraw(3); }
Symbol 144 Button
on (press) { holdDraw(4); }
Symbol 147 Button
on (press) { secondDraw(); }
Symbol 150 Button
on (press) { Need(); tellTarget ("pair") { gotoAndStop (1); }; mysound = new Sound(); mySound.attachSound("play1"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); if (Number(cash) <= 0) { gotoAndStop (8); } else { gotoAndPlay ("deal"); } output1 = ""; output2 = ""; output3 = ""; output4 = ""; output5 = ""; output6 = ""; output7 = ""; output8 = ""; output9 = ""; }
Symbol 153 Button
on (press) { mysound = new Sound(); mySound.attachSound("play1"); mySound.start(0, 1); mySound.setPan(0); mySound.setVolume(100); gotoAndPlay (3); output1 = ""; output2 = ""; output3 = ""; output4 = ""; output5 = ""; output6 = ""; output7 = ""; output8 = ""; output9 = ""; }

Library Items

Symbol 1 Sound [won]
Symbol 2 Sound [select]
Symbol 3 Sound [play1]
Symbol 4 Sound [bet1]
Symbol 5 GraphicUsed by:6 8  Timeline
Symbol 6 MovieClipUses:5Used by:11
Symbol 7 GraphicUsed by:11
Symbol 8 ButtonUses:5Used by:11
Symbol 9 FontUsed by:10
Symbol 10 TextUses:9Used by:11
Symbol 11 MovieClipUses:6 7 8 10Used by:Timeline
Symbol 12 GraphicUsed by:20
Symbol 13 GraphicUsed by:20
Symbol 14 GraphicUsed by:20
Symbol 15 GraphicUsed by:20
Symbol 16 GraphicUsed by:20
Symbol 17 GraphicUsed by:20
Symbol 18 GraphicUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:12 13 14 15 16 17 18 19Used by:21 72
Symbol 21 MovieClipUses:20Used by:Timeline
Symbol 22 GraphicUsed by:Timeline
Symbol 23 SoundUsed by:Timeline
Symbol 24 BitmapUsed by:25 30
Symbol 25 GraphicUses:24Used by:Timeline
Symbol 26 FontUsed by:27
Symbol 27 EditableTextUses:26Used by:28
Symbol 28 MovieClipUses:27Used by:29
Symbol 29 MovieClipUses:28Used by:Timeline
Symbol 30 GraphicUses:24Used by:Timeline
Symbol 31 FontUsed by:32 37 76 89 92 95 139
Symbol 32 TextUses:31Used by:36
Symbol 33 FontUsed by:34 35
Symbol 34 EditableTextUses:33Used by:36
Symbol 35 EditableTextUses:33Used by:36
Symbol 36 MovieClipUses:32 34 35Used by:Timeline
Symbol 37 TextUses:31Used by:38
Symbol 38 MovieClipUses:37Used by:Timeline
Symbol 39 FontUsed by:40
Symbol 40 EditableTextUses:39Used by:Timeline
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:Timeline
Symbol 43 GraphicUsed by:Timeline
Symbol 44 GraphicUsed by:Timeline
Symbol 45 FontUsed by:46 47 50 53 56 57 60 63 66 151
Symbol 46 EditableTextUses:45Used by:Timeline
Symbol 47 EditableTextUses:45Used by:Timeline
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:Timeline
Symbol 50 EditableTextUses:45Used by:Timeline
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:Timeline
Symbol 53 EditableTextUses:45Used by:Timeline
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:Timeline
Symbol 56 EditableTextUses:45Used by:Timeline
Symbol 57 EditableTextUses:45Used by:Timeline
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:58Used by:Timeline
Symbol 60 EditableTextUses:45Used by:Timeline
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:Timeline
Symbol 63 EditableTextUses:45Used by:Timeline
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:Timeline
Symbol 66 EditableTextUses:45Used by:Timeline
Symbol 67 GraphicUsed by:Timeline
Symbol 68 GraphicUsed by:100
Symbol 69 GraphicUsed by:100
Symbol 70 GraphicUsed by:100
Symbol 71 GraphicUsed by:100 132
Symbol 72 MovieClipUses:20Used by:100 132
Symbol 73 GraphicUsed by:100 132
Symbol 74 BitmapUsed by:75
Symbol 75 GraphicUses:74Used by:100
Symbol 76 TextUses:31Used by:100
Symbol 77 GraphicUsed by:100
Symbol 78 GraphicUsed by:100
Symbol 79 GraphicUsed by:100
Symbol 80 GraphicUsed by:100
Symbol 81 GraphicUsed by:100
Symbol 82 GraphicUsed by:100
Symbol 83 GraphicUsed by:100
Symbol 84 GraphicUsed by:100
Symbol 85 GraphicUsed by:100
Symbol 86 GraphicUsed by:100
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:100
Symbol 89 TextUses:31Used by:100
Symbol 90 BitmapUsed by:91
Symbol 91 GraphicUses:90Used by:100
Symbol 92 TextUses:31Used by:100
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:100
Symbol 95 TextUses:31Used by:100
Symbol 96 GraphicUsed by:100
Symbol 97 GraphicUsed by:100
Symbol 98 GraphicUsed by:100
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:68 69 70 71 72 73 75 76 77 78 79 80 81 82 83 84 85 86 88 89 91 92 94 95 96 97 98 99Used by:Timeline
Symbol 101 FontUsed by:102 103 110 111 133 148 149 154
Symbol 102 EditableTextUses:101Used by:Timeline
Symbol 103 EditableTextUses:101Used by:Timeline
Symbol 104 GraphicUsed by:105 106 107 108 109
Symbol 105 ButtonUses:104Used by:Timeline
Symbol 106 ButtonUses:104Used by:Timeline
Symbol 107 ButtonUses:104Used by:Timeline
Symbol 108 ButtonUses:104Used by:Timeline
Symbol 109 ButtonUses:104Used by:Timeline
Symbol 110 EditableTextUses:101Used by:Timeline
Symbol 111 EditableTextUses:101Used by:Timeline
Symbol 112 FontUsed by:113 125 126 127 128 129 131 152 157
Symbol 113 EditableTextUses:112Used by:Timeline
Symbol 114 GraphicUsed by:Timeline
Symbol 115 GraphicUsed by:118 121 122 123 124 130 150 153
Symbol 116 GraphicUsed by:118 121 122 123 124 130 150 153
Symbol 117 GraphicUsed by:118 121 122 123 124 130 150 153
Symbol 118 ButtonUses:115 116 117Used by:Timeline
Symbol 119 BitmapUsed by:120
Symbol 120 GraphicUses:119Used by:Timeline
Symbol 121 ButtonUses:115 116 117Used by:Timeline
Symbol 122 ButtonUses:115 116 117Used by:Timeline
Symbol 123 ButtonUses:115 116 117Used by:Timeline
Symbol 124 ButtonUses:115 116 117Used by:Timeline
Symbol 125 TextUses:112Used by:Timeline
Symbol 126 TextUses:112Used by:Timeline
Symbol 127 TextUses:112Used by:Timeline
Symbol 128 TextUses:112Used by:Timeline
Symbol 129 TextUses:112Used by:Timeline
Symbol 130 ButtonUses:115 116 117Used by:Timeline
Symbol 131 EditableTextUses:112Used by:Timeline
Symbol 132 MovieClipUses:71 72 73Used by:Timeline
Symbol 133 TextUses:101Used by:Timeline
Symbol 134 SoundUsed by:Timeline
Symbol 135 GraphicUsed by:140 141 142 143 144
Symbol 136 GraphicUsed by:140 141 142 143 144
Symbol 137 GraphicUsed by:140 141 142 143 144
Symbol 138 GraphicUsed by:140 141 142 143 144
Symbol 139 TextUses:31Used by:140 141 142 143 144
Symbol 140 ButtonUses:135 136 137 138 139Used by:Timeline
Symbol 141 ButtonUses:135 136 137 138 139Used by:Timeline
Symbol 142 ButtonUses:135 136 137 138 139Used by:Timeline
Symbol 143 ButtonUses:135 136 137 138 139Used by:Timeline
Symbol 144 ButtonUses:135 136 137 138 139Used by:Timeline
Symbol 145 GraphicUsed by:147
Symbol 146 GraphicUsed by:147
Symbol 147 ButtonUses:145 146Used by:Timeline
Symbol 148 TextUses:101Used by:Timeline
Symbol 149 TextUses:101Used by:Timeline
Symbol 150 ButtonUses:115 116 117Used by:Timeline
Symbol 151 EditableTextUses:45Used by:Timeline
Symbol 152 TextUses:112Used by:Timeline
Symbol 153 ButtonUses:115 116 117Used by:Timeline
Symbol 154 TextUses:101Used by:Timeline
Symbol 155 FontUsed by:156
Symbol 156 TextUses:155Used by:Timeline
Symbol 157 TextUses:112Used by:Timeline

Instance Names

"st8f"Frame 3Symbol 36 MovieClip
"sf"Frame 3Symbol 38 MovieClip
"st8"Frame 3Symbol 42 MovieClip
"4k"Frame 3Symbol 49 MovieClip
"boat"Frame 3Symbol 52 MovieClip
"flush"Frame 3Symbol 55 MovieClip
"st8"Frame 3Symbol 42 MovieClip
"3k"Frame 3Symbol 59 MovieClip
"2p"Frame 3Symbol 62 MovieClip
"pair"Frame 3Symbol 65 MovieClip
"card0"Frame 3Symbol 100 MovieClip
"card1"Frame 3Symbol 100 MovieClip
"card2"Frame 3Symbol 100 MovieClip
"card3"Frame 3Symbol 100 MovieClip
"card4"Frame 3Symbol 100 MovieClip
"score"Frame 3Symbol 102 EditableText
"bar"Symbol 11 MovieClip Frame 1Symbol 6 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "won"
ExportAssets (56)Timeline Frame 1Symbol 2 as "select"
ExportAssets (56)Timeline Frame 1Symbol 3 as "play1"
ExportAssets (56)Timeline Frame 1Symbol 4 as "bet1"

Labels

"deal"Frame 4
"play"Frame 5
"done"Frame 6
"loaded"Symbol 11 MovieClip Frame 3
"empty"Symbol 100 MovieClip Frame 1
"back"Symbol 100 MovieClip Frame 2
"c1"Symbol 100 MovieClip Frame 3
"c2"Symbol 100 MovieClip Frame 4
"c3"Symbol 100 MovieClip Frame 5
"c4"Symbol 100 MovieClip Frame 6
"c5"Symbol 100 MovieClip Frame 7
"c6"Symbol 100 MovieClip Frame 8
"c7"Symbol 100 MovieClip Frame 9
"c8"Symbol 100 MovieClip Frame 10
"c9"Symbol 100 MovieClip Frame 11
"c10"Symbol 100 MovieClip Frame 12
"c11"Symbol 100 MovieClip Frame 13
"c12"Symbol 100 MovieClip Frame 14
"c13"Symbol 100 MovieClip Frame 15
"d1"Symbol 100 MovieClip Frame 16
"d2"Symbol 100 MovieClip Frame 17
"d3"Symbol 100 MovieClip Frame 18
"d4"Symbol 100 MovieClip Frame 19
"d5"Symbol 100 MovieClip Frame 20
"d6"Symbol 100 MovieClip Frame 21
"d7"Symbol 100 MovieClip Frame 22
"d8"Symbol 100 MovieClip Frame 23
"d9"Symbol 100 MovieClip Frame 24
"d10"Symbol 100 MovieClip Frame 25
"d11"Symbol 100 MovieClip Frame 26
"d12"Symbol 100 MovieClip Frame 27
"d13"Symbol 100 MovieClip Frame 28
"s1"Symbol 100 MovieClip Frame 29
"s2"Symbol 100 MovieClip Frame 30
"s3"Symbol 100 MovieClip Frame 31
"s4"Symbol 100 MovieClip Frame 32
"s5"Symbol 100 MovieClip Frame 33
"s6"Symbol 100 MovieClip Frame 34
"s7"Symbol 100 MovieClip Frame 35
"s8"Symbol 100 MovieClip Frame 36
"s9"Symbol 100 MovieClip Frame 37
"s10"Symbol 100 MovieClip Frame 38
"s11"Symbol 100 MovieClip Frame 39
"s12"Symbol 100 MovieClip Frame 40
"s13"Symbol 100 MovieClip Frame 41
"h1"Symbol 100 MovieClip Frame 42
"h2"Symbol 100 MovieClip Frame 43
"h3"Symbol 100 MovieClip Frame 44
"h4"Symbol 100 MovieClip Frame 45
"h5"Symbol 100 MovieClip Frame 46
"h6"Symbol 100 MovieClip Frame 47
"h7"Symbol 100 MovieClip Frame 48
"h8"Symbol 100 MovieClip Frame 49
"h9"Symbol 100 MovieClip Frame 50
"h10"Symbol 100 MovieClip Frame 51
"h11"Symbol 100 MovieClip Frame 52
"h12"Symbol 100 MovieClip Frame 53
"h13"Symbol 100 MovieClip Frame 54

Dynamic Text Variables

output1Symbol 40 EditableText""
output1Symbol 46 EditableText""
output2Symbol 47 EditableText""
output3Symbol 50 EditableText""
output4Symbol 53 EditableText""
output5Symbol 56 EditableText""
output6Symbol 57 EditableText""
output7Symbol 60 EditableText""
output8Symbol 63 EditableText""
output9Symbol 66 EditableText""
cashSymbol 102 EditableText"100.00"
betSymbol 103 EditableText"100.00"
resultsDisplaySymbol 151 EditableText"results"




http://swfchan.com/3/10097/info.shtml
Created: 8/6 -2019 21:57:02 Last modified: 8/6 -2019 21:57:02 Server time: 28/04 -2024 23:55:14