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

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

Star Splash.swf

This is the info page for
Flash #100650

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


Text
add this to your site

add this to your site

BR

h

s

a

l

p

S

r

t

OneMoreLevel presents...

Start

<p align="left"><font face="Arial Black" size="20" color="#0000ff" letterSpacing="0.000000" kerning="1">ArialBl</font></p>

<p align="left"><font face="Arial" size="24" color="#ff0000" letterSpacing="0.000000" kerning="1">Arial</font></p>

<p align="left"><font face="Arial Black" size="20" color="#0000ff" letterSpacing="0.000000" kerning="1"><b>Arial Bl _BD</b></font></p>

<p align="left"><font face="Arial" size="24" color="#ff0000" letterSpacing="0.000000" kerning="1"><b>Arial _BD</b></font></p>

<p align="left"><font face="Porky's" size="25" color="#000000" letterSpacing="0.000000" kerning="1">Porky&apos;s</font></p>

<p align="left"><font face="Berlin Sans FB Demi" size="32" color="#000000" letterSpacing="0.000000" kerning="1">Berlin</font></p>

<p align="left"><font face="Futura BdCn BT" size="25" color="#000000" letterSpacing="0.000000" kerning="1">Futura</font></p>

<p align="left"><font face="Champignon" size="44" color="#000000" letterSpacing="0.000000" kerning="1">Champignon</font></p>

This game is locked.

Developed by

SNAILS

A

N

I

M

T

O

A N I M A T I O N

[MEDIUM]

[HIGH]

[BEST]

[LOW]

© Snails Animation 2011

© Snails Animation 2011

OneMoreLevel presents...

OneMoreLevel.com
Yeajimmiboi, Unknowngoth,
Jonah-B
FindSounds, SoundSnap

Snails Animation

Snails Animation

108.99%

Congratulations

Gefeliciteerd

Félicitations

Glückwunsch

Enhorabuena

Parabéns

Complimenti

Gratulerar

Gratulacje

Поздравляем!

Selamat!

Felicitaciones

~ Game

complete ~

~ Spel

uitgespeeld ~

~ Jeu

complété ~

~ Spiel

beendet ~

~ Juego

finalizado ~

~ Jogo

completo ~

~ Gioco

~ Spelet

klarat ~

~ Gra

ukonczona ~

~ Игра

пройдена ~

selasai ~

completado ~

105.43

500

%

OneMoreLevel

100

60

80

80

80

S

U

C

E

!

P

R

F

T

PARFAIT!

PERFEKT!

¡PERFECTO!

PERFEITO!

PERFETTO!

DOSKONALE!

СУПЕР!

SEMPURNA!

Use the ARROW KEYS to move
around in the water. If you swim
up to the surface you will
automatically jump.

,

,

+

+

SPACE

SPACE

ActionScript [AS3]

Section 1
//PropTween (com.greensock.core.PropTween) package com.greensock.core { public class PropTween { public var start:Number; public var name:String; public var prevNode:PropTween; public var change:Number; public var target:Object; public var priority:int; public var property:String; public var nextNode:PropTween; public var isPlugin:Boolean; public function PropTween(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Number, _arg5:String, _arg6:Boolean, _arg7:PropTween=null, _arg8:int=0){ this.target = _arg1; this.property = _arg2; this.start = _arg3; this.change = _arg4; this.name = _arg5; this.isPlugin = _arg6; if (_arg7){ _arg7.prevNode = this; this.nextNode = _arg7; }; this.priority = _arg8; } } }//package com.greensock.core
Section 2
//SimpleTimeline (com.greensock.core.SimpleTimeline) package com.greensock.core { public class SimpleTimeline extends TweenCore { public var autoRemoveChildren:Boolean; protected var _lastChild:TweenCore; protected var _firstChild:TweenCore; public function SimpleTimeline(_arg1:Object=null){ super(0, _arg1); } override public function renderTime(_arg1:Number, _arg2:Boolean=false, _arg3:Boolean=false):void{ var _local4:TweenCore; var _local5:Number; var _local6:TweenCore; _local4 = _firstChild; this.cachedTotalTime = _arg1; this.cachedTime = _arg1; while (_local4) { _local6 = _local4.nextNode; if (((_local4.active) || ((((((_arg1 >= _local4.cachedStartTime)) && (!(_local4.cachedPaused)))) && (!(_local4.gc)))))){ if (!_local4.cachedReversed){ _local4.renderTime(((_arg1 - _local4.cachedStartTime) * _local4.cachedTimeScale), _arg2, false); } else { _local5 = (_local4.cacheIsDirty) ? _local4.totalDuration : _local4.cachedTotalDuration; _local4.renderTime((_local5 - ((_arg1 - _local4.cachedStartTime) * _local4.cachedTimeScale)), _arg2, false); }; }; _local4 = _local6; }; } public function addChild(_arg1:TweenCore):void{ if (((!(_arg1.cachedOrphan)) && (_arg1.timeline))){ _arg1.timeline.remove(_arg1, true); }; _arg1.timeline = this; if (_arg1.gc){ _arg1.setEnabled(true, true); }; if (_firstChild){ _firstChild.prevNode = _arg1; }; _arg1.nextNode = _firstChild; _firstChild = _arg1; _arg1.prevNode = null; _arg1.cachedOrphan = false; } public function get rawTime():Number{ return (this.cachedTotalTime); } public function remove(_arg1:TweenCore, _arg2:Boolean=false):void{ if (_arg1.cachedOrphan){ return; }; if (!_arg2){ _arg1.setEnabled(false, true); }; if (_arg1.nextNode){ _arg1.nextNode.prevNode = _arg1.prevNode; } else { if (_lastChild == _arg1){ _lastChild = _arg1.prevNode; }; }; if (_arg1.prevNode){ _arg1.prevNode.nextNode = _arg1.nextNode; } else { if (_firstChild == _arg1){ _firstChild = _arg1.nextNode; }; }; _arg1.cachedOrphan = true; } } }//package com.greensock.core
Section 3
//TweenCore (com.greensock.core.TweenCore) package com.greensock.core { import com.greensock.*; public class TweenCore { public var initted:Boolean; protected var _hasUpdate:Boolean; public var active:Boolean; protected var _delay:Number; public var cachedReversed:Boolean; public var nextNode:TweenCore; public var cachedTime:Number; protected var _rawPrevTime:Number;// = -1 public var vars:Object; public var cachedTotalTime:Number; public var data; public var timeline:SimpleTimeline; public var cachedOrphan:Boolean; public var cachedStartTime:Number; public var prevNode:TweenCore; public var cachedDuration:Number; public var gc:Boolean; protected var _pauseTime:Number; public var cacheIsDirty:Boolean; public var cachedPaused:Boolean; public var cachedTimeScale:Number; public var cachedTotalDuration:Number; public static const version:Number = 1.382; protected static var _classInitted:Boolean; public function TweenCore(_arg1:Number=0, _arg2:Object=null){ var _local3:SimpleTimeline; _rawPrevTime = -1; super(); this.vars = ((_arg2)!=null) ? _arg2 : {}; this.cachedDuration = (this.cachedTotalDuration = _arg1); _delay = (this.vars.delay) ? Number(this.vars.delay) : 0; this.cachedTimeScale = (this.vars.timeScale) ? Number(this.vars.timeScale) : 1; this.active = Boolean((((((_arg1 == 0)) && ((_delay == 0)))) && (!((this.vars.immediateRender == false))))); this.cachedTotalTime = (this.cachedTime = 0); this.data = this.vars.data; if (!_classInitted){ if (isNaN(TweenLite.rootFrame)){ TweenLite.initClass(); _classInitted = true; } else { return; }; }; _local3 = ((this.vars.timeline is SimpleTimeline)) ? this.vars.timeline : (this.vars.useFrames) ? TweenLite.rootFramesTimeline : TweenLite.rootTimeline; this.cachedStartTime = (_local3.cachedTotalTime + _delay); _local3.addChild(this); if (this.vars.reversed){ this.cachedReversed = true; }; if (this.vars.paused){ this.paused = true; }; } public function renderTime(_arg1:Number, _arg2:Boolean=false, _arg3:Boolean=false):void{ } public function get delay():Number{ return (_delay); } public function get duration():Number{ return (this.cachedDuration); } public function set reversed(_arg1:Boolean):void{ if (_arg1 != this.cachedReversed){ this.cachedReversed = _arg1; setTotalTime(this.cachedTotalTime, true); }; } public function set startTime(_arg1:Number):void{ var _local2:Boolean; _local2 = Boolean(((!((this.timeline == null))) && (((!((_arg1 == this.cachedStartTime))) || (this.gc))))); this.cachedStartTime = _arg1; if (_local2){ this.timeline.addChild(this); }; } public function set delay(_arg1:Number):void{ this.startTime = (this.startTime + (_arg1 - _delay)); _delay = _arg1; } public function resume():void{ this.paused = false; } public function get paused():Boolean{ return (this.cachedPaused); } public function play():void{ this.reversed = false; this.paused = false; } public function set duration(_arg1:Number):void{ this.cachedDuration = (this.cachedTotalDuration = _arg1); setDirtyCache(false); } public function invalidate():void{ } public function restart(_arg1:Boolean=false, _arg2:Boolean=true):void{ this.reversed = false; this.paused = false; this.setTotalTime((_arg1) ? -(_delay) : 0, _arg2); } public function complete(_arg1:Boolean=false, _arg2:Boolean=false):void{ if (!_arg1){ renderTime(this.totalDuration, _arg2, false); return; }; if (this.timeline.autoRemoveChildren){ this.setEnabled(false, false); } else { this.active = false; }; if (!_arg2){ if (((((this.vars.onComplete) && ((this.cachedTotalTime == this.cachedTotalDuration)))) && (!(this.cachedReversed)))){ this.vars.onComplete.apply(null, this.vars.onCompleteParams); } else { if (((((this.cachedReversed) && ((this.cachedTotalTime == 0)))) && (this.vars.onReverseComplete))){ this.vars.onReverseComplete.apply(null, this.vars.onReverseCompleteParams); }; }; }; } public function get reversed():Boolean{ return (this.cachedReversed); } public function get totalTime():Number{ return (this.cachedTotalTime); } public function get startTime():Number{ return (this.cachedStartTime); } public function set currentTime(_arg1:Number):void{ setTotalTime(_arg1, false); } protected function setDirtyCache(_arg1:Boolean=true):void{ var _local2:TweenCore; _local2 = (_arg1) ? this : this.timeline; while (_local2) { _local2.cacheIsDirty = true; _local2 = _local2.timeline; }; } public function reverse(_arg1:Boolean=true):void{ this.reversed = true; if (_arg1){ this.paused = false; } else { if (this.gc){ this.setEnabled(true, false); }; }; } public function set paused(_arg1:Boolean):void{ if (((!((_arg1 == this.cachedPaused))) && (this.timeline))){ if (_arg1){ _pauseTime = this.timeline.rawTime; } else { this.cachedStartTime = (this.cachedStartTime + (this.timeline.rawTime - _pauseTime)); _pauseTime = NaN; setDirtyCache(false); }; this.cachedPaused = _arg1; this.active = Boolean(((((!(this.cachedPaused)) && ((this.cachedTotalTime > 0)))) && ((this.cachedTotalTime < this.cachedTotalDuration)))); }; if (((!(_arg1)) && (this.gc))){ this.setTotalTime(this.cachedTotalTime, false); this.setEnabled(true, false); }; } public function kill():void{ setEnabled(false, false); } public function set totalTime(_arg1:Number):void{ setTotalTime(_arg1, false); } public function get currentTime():Number{ return (this.cachedTime); } protected function setTotalTime(_arg1:Number, _arg2:Boolean=false):void{ var _local3:Number; var _local4:Number; if (this.timeline){ _local3 = (((_pauseTime) || ((_pauseTime == 0)))) ? _pauseTime : this.timeline.cachedTotalTime; if (this.cachedReversed){ _local4 = (this.cacheIsDirty) ? this.totalDuration : this.cachedTotalDuration; this.cachedStartTime = (_local3 - ((_local4 - _arg1) / this.cachedTimeScale)); } else { this.cachedStartTime = (_local3 - (_arg1 / this.cachedTimeScale)); }; if (!this.timeline.cacheIsDirty){ setDirtyCache(false); }; if (this.cachedTotalTime != _arg1){ renderTime(_arg1, _arg2, false); }; }; } public function pause():void{ this.paused = true; } public function set totalDuration(_arg1:Number):void{ this.duration = _arg1; } public function get totalDuration():Number{ return (this.cachedTotalDuration); } public function setEnabled(_arg1:Boolean, _arg2:Boolean=false):Boolean{ this.gc = !(_arg1); if (_arg1){ this.active = Boolean(((((!(this.cachedPaused)) && ((this.cachedTotalTime > 0)))) && ((this.cachedTotalTime < this.cachedTotalDuration)))); if (((!(_arg2)) && (this.cachedOrphan))){ this.timeline.addChild(this); }; } else { this.active = false; if (((!(_arg2)) && (!(this.cachedOrphan)))){ this.timeline.remove(this, true); }; }; return (false); } } }//package com.greensock.core
Section 4
//Cubic (com.greensock.easing.Cubic) package com.greensock.easing { public class Cubic { public static const power:uint = 2; public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = ((_arg1 / _arg4) - 1); return (((_arg3 * (((_arg1 * _arg1) * _arg1) + 1)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return (((((_arg3 * _arg1) * _arg1) * _arg1) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / (_arg4 * 0.5)); if (_arg1 < 1){ return ((((((_arg3 * 0.5) * _arg1) * _arg1) * _arg1) + _arg2)); }; _arg1 = (_arg1 - 2); return ((((_arg3 * 0.5) * (((_arg1 * _arg1) * _arg1) + 2)) + _arg2)); } } }//package com.greensock.easing
Section 5
//Quad (com.greensock.easing.Quad) package com.greensock.easing { public class Quad { public static const power:uint = 1; public static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((-(_arg3) * _arg1) * (_arg1 - 2)) + _arg2)); } public static function easeIn(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / _arg4); return ((((_arg3 * _arg1) * _arg1) + _arg2)); } public static function easeInOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (_arg1 / (_arg4 * 0.5)); if (_arg1 < 1){ return (((((_arg3 * 0.5) * _arg1) * _arg1) + _arg2)); }; --_arg1; return ((((-(_arg3) * 0.5) * ((_arg1 * (_arg1 - 2)) - 1)) + _arg2)); } } }//package com.greensock.easing
Section 6
//OverwriteManager (com.greensock.OverwriteManager) package com.greensock { import com.greensock.core.*; public class OverwriteManager { public static const ALL_ONSTART:int = 4; public static const CONCURRENT:int = 3; public static const ALL_IMMEDIATE:int = 1; public static const PREEXISTING:int = 5; public static const AUTO:int = 2; public static const version:Number = 6.02; public static const NONE:int = 0; public static var enabled:Boolean; public static var mode:int; public static function getGlobalPaused(_arg1:TweenCore):Boolean{ while (_arg1) { if (_arg1.cachedPaused){ return (true); }; _arg1 = _arg1.timeline; }; return (false); } public static function init(_arg1:int=2):int{ if (TweenLite.version < 11.1){ throw (new Error("Warning: Your TweenLite class needs to be updated to work with OverwriteManager (or you may need to clear your ASO files). Please download and install the latest version from http://www.tweenlite.com.")); }; TweenLite.overwriteManager = OverwriteManager; mode = _arg1; enabled = true; return (mode); } public static function manageOverwrites(_arg1:TweenLite, _arg2:Object, _arg3:Array, _arg4:uint):Boolean{ var _local5:int; var _local6:Boolean; var _local7:TweenLite; var _local8:Number; var _local9:Array; var _local10:Array; var _local11:uint; var _local12:uint; var _local13:uint; var _local14:Number; var _local15:Number; var _local16:TweenCore; var _local17:Number; var _local18:SimpleTimeline; if (_arg4 >= 4){ _local13 = _arg3.length; _local5 = 0; while (_local5 < _local13) { _local7 = _arg3[_local5]; if (_local7 != _arg1){ if (_local7.setEnabled(false, false)){ _local6 = true; }; } else { if (_arg4 == 5){ break; }; }; _local5++; }; return (_local6); }; _local8 = (_arg1.cachedStartTime + 1E-10); _local9 = []; _local10 = []; _local11 = 0; _local12 = 0; _local5 = _arg3.length; while (--_local5 > -1) { _local7 = _arg3[_local5]; if ((((_local7 == _arg1)) || (_local7.gc))){ } else { if (_local7.timeline != _arg1.timeline){ if (!getGlobalPaused(_local7)){ var _temp1 = _local11; _local11 = (_local11 + 1); var _local19 = _temp1; _local10[_local19] = _local7; }; } else { if ((((((_local7.cachedStartTime <= _local8)) && ((((_local7.cachedStartTime + _local7.totalDuration) + 1E-10) > _local8)))) && (!(getGlobalPaused(_local7))))){ var _temp2 = _local12; _local12 = (_local12 + 1); _local19 = _temp2; _local9[_local19] = _local7; }; }; }; }; if (_local11 != 0){ _local14 = _arg1.cachedTimeScale; _local15 = _local8; _local18 = _arg1.timeline; while (_local18) { _local14 = (_local14 * _local18.cachedTimeScale); _local15 = (_local15 + _local18.cachedStartTime); _local18 = _local18.timeline; }; _local8 = (_local14 * _local15); _local5 = _local11; while (--_local5 > -1) { _local16 = _local10[_local5]; _local14 = _local16.cachedTimeScale; _local15 = _local16.cachedStartTime; _local18 = _local16.timeline; while (_local18) { _local14 = (_local14 * _local18.cachedTimeScale); _local15 = (_local15 + _local18.cachedStartTime); _local18 = _local18.timeline; }; _local17 = (_local14 * _local15); if ((((_local17 <= _local8)) && ((((((_local17 + (_local16.totalDuration * _local14)) + 1E-10) > _local8)) || ((_local16.cachedDuration == 0)))))){ var _temp3 = _local12; _local12 = (_local12 + 1); _local19 = _temp3; _local9[_local19] = _local16; }; }; }; if (_local12 == 0){ return (_local6); }; _local5 = _local12; if (_arg4 == 2){ while (--_local5 > -1) { _local7 = _local9[_local5]; if (_local7.killVars(_arg2)){ _local6 = true; }; if ((((_local7.cachedPT1 == null)) && (_local7.initted))){ _local7.setEnabled(false, false); }; }; } else { while (--_local5 > -1) { if (TweenLite(_local9[_local5]).setEnabled(false, false)){ _local6 = true; }; }; }; return (_local6); } } }//package com.greensock
Section 7
//TweenLite (com.greensock.TweenLite) package com.greensock { import flash.display.*; import flash.events.*; import com.greensock.core.*; import flash.utils.*; import com.greensock.plugins.*; public class TweenLite extends TweenCore { public var target:Object; public var ratio:Number;// = 0 protected var _overwrite:uint; protected var _notifyPluginsOfEnabled:Boolean; protected var _hasPlugins:Boolean; public var cachedPT1:PropTween; protected var _overwrittenProps:Object; public var propTweenLookup:Object; protected var _ease:Function; public static const version:Number = 11.36; public static var rootTimeline:SimpleTimeline; public static var fastEaseLookup:Dictionary = new Dictionary(false); public static var onPluginEvent:Function; public static var rootFramesTimeline:SimpleTimeline; public static var defaultEase:Function = TweenLite.easeOut; public static var plugins:Object = {}; public static var masterList:Dictionary = new Dictionary(false); public static var overwriteManager:Object; public static var rootFrame:Number; public static var killDelayedCallsTo:Function = TweenLite.killTweensOf; private static var _shape:Shape = new Shape(); protected static var _reservedProps:Object = {ease:1, delay:1, overwrite:1, onComplete:1, onCompleteParams:1, useFrames:1, runBackwards:1, startAt:1, onUpdate:1, onUpdateParams:1, roundProps:1, onStart:1, onStartParams:1, onInit:1, onInitParams:1, onReverseComplete:1, onReverseCompleteParams:1, onRepeat:1, onRepeatParams:1, proxiedEase:1, easeParams:1, yoyo:1, onCompleteListener:1, onUpdateListener:1, onStartListener:1, onReverseCompleteListener:1, onRepeatListener:1, orientToBezier:1, timeScale:1, immediateRender:1, repeat:1, repeatDelay:1, timeline:1, data:1, paused:1}; public function TweenLite(_arg1:Object, _arg2:Number, _arg3:Object){ var _local4:Array; var _local5:TweenLite; ratio = 0; super(_arg2, _arg3); this.target = _arg1; if ((((this.target is TweenCore)) && (this.vars.timeScale))){ this.cachedTimeScale = 1; }; propTweenLookup = {}; _ease = defaultEase; _overwrite = (((!((Number(_arg3.overwrite) > -1))) || (((!(overwriteManager.enabled)) && ((_arg3.overwrite > 1)))))) ? overwriteManager.mode : int(_arg3.overwrite); _local4 = masterList[_arg1]; if (!_local4){ masterList[_arg1] = [this]; } else { if (_overwrite == 1){ for each (_local5 in _local4) { if (!_local5.gc){ _local5.setEnabled(false, false); }; }; masterList[_arg1] = [this]; } else { _local4[_local4.length] = this; }; }; if (((this.active) || (this.vars.immediateRender))){ renderTime(0, false, true); }; } override public function renderTime(_arg1:Number, _arg2:Boolean=false, _arg3:Boolean=false):void{ var _local4:Boolean; var _local5:Number; var _local6:PropTween; _local5 = this.cachedTime; if (_arg1 >= this.cachedDuration){ this.cachedTotalTime = (this.cachedTime = this.cachedDuration); this.ratio = 1; _local4 = true; if (this.cachedDuration == 0){ if ((((((_arg1 == 0)) || ((_rawPrevTime < 0)))) && (!((_rawPrevTime == _arg1))))){ _arg3 = true; }; _rawPrevTime = _arg1; }; } else { if (_arg1 <= 0){ this.cachedTotalTime = (this.cachedTime = (this.ratio = 0)); if (_arg1 < 0){ this.active = false; if (this.cachedDuration == 0){ if (_rawPrevTime > 0){ _arg3 = true; _local4 = true; }; _rawPrevTime = _arg1; }; }; if (((this.cachedReversed) && (!((_local5 == 0))))){ _local4 = true; }; } else { this.cachedTotalTime = (this.cachedTime = _arg1); this.ratio = _ease(_arg1, 0, 1, this.cachedDuration); }; }; if ((((this.cachedTime == _local5)) && (!(_arg3)))){ return; }; if (!this.initted){ init(); if (((!(_local4)) && (this.cachedTime))){ this.ratio = _ease(this.cachedTime, 0, 1, this.cachedDuration); }; }; if (((!(this.active)) && (!(this.cachedPaused)))){ this.active = true; }; if ((((((((_local5 == 0)) && (this.vars.onStart))) && (!((this.cachedTime == 0))))) && (!(_arg2)))){ this.vars.onStart.apply(null, this.vars.onStartParams); }; _local6 = this.cachedPT1; while (_local6) { _local6.target[_local6.property] = (_local6.start + (this.ratio * _local6.change)); _local6 = _local6.nextNode; }; if (((_hasUpdate) && (!(_arg2)))){ this.vars.onUpdate.apply(null, this.vars.onUpdateParams); }; if (_local4){ if (((_hasPlugins) && (this.cachedPT1))){ onPluginEvent("onComplete", this); }; complete(true, _arg2); }; } protected function init():void{ var _local1:String; var _local2:int; var _local3:*; var _local4:Boolean; var _local5:Array; var _local6:PropTween; if (this.vars.onInit){ this.vars.onInit.apply(null, this.vars.onInitParams); }; if (typeof(this.vars.ease) == "function"){ _ease = this.vars.ease; }; if (this.vars.easeParams){ this.vars.proxiedEase = _ease; _ease = easeProxy; }; this.cachedPT1 = null; this.propTweenLookup = {}; for (_local1 in this.vars) { if ((((_local1 in _reservedProps)) && (!((((_local1 == "timeScale")) && ((this.target is TweenCore))))))){ } else { if ((((_local1 in plugins)) && (new ((plugins[_local1] as Class)).onInitTween(this.target, this.vars[_local1], this)))){ this.cachedPT1 = new PropTween(_local3, "changeFactor", 0, 1, ((_local3.overwriteProps.length)==1) ? _local3.overwriteProps[0] : "_MULTIPLE_", true, this.cachedPT1); if (this.cachedPT1.name == "_MULTIPLE_"){ _local2 = _local3.overwriteProps.length; while (--_local2 > -1) { this.propTweenLookup[_local3.overwriteProps[_local2]] = this.cachedPT1; }; } else { this.propTweenLookup[this.cachedPT1.name] = this.cachedPT1; }; if (_local3.priority){ this.cachedPT1.priority = _local3.priority; _local4 = true; }; if (((_local3.onDisable) || (_local3.onEnable))){ _notifyPluginsOfEnabled = true; }; _hasPlugins = true; } else { this.cachedPT1 = new PropTween(this.target, _local1, Number(this.target[_local1]), ((typeof(this.vars[_local1]))=="number") ? (Number(this.vars[_local1]) - this.target[_local1]) : Number(this.vars[_local1]), _local1, false, this.cachedPT1); this.propTweenLookup[_local1] = this.cachedPT1; }; }; }; if (_local4){ onPluginEvent("onInit", this); }; if (this.vars.runBackwards){ _local6 = this.cachedPT1; while (_local6) { _local6.start = (_local6.start + _local6.change); _local6.change = -(_local6.change); _local6 = _local6.nextNode; }; }; _hasUpdate = Boolean(!((this.vars.onUpdate == null))); if (_overwrittenProps){ killVars(_overwrittenProps); if (this.cachedPT1 == null){ this.setEnabled(false, false); }; }; if ((((((((_overwrite > 1)) && (this.cachedPT1))) && (masterList[this.target]))) && ((_local5.length > 1)))){ if (overwriteManager.manageOverwrites(this, this.propTweenLookup, _local5, _overwrite)){ init(); }; }; this.initted = true; } protected function easeProxy(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ return (this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams))); } override public function invalidate():void{ if (((_notifyPluginsOfEnabled) && (this.cachedPT1))){ onPluginEvent("onDisable", this); }; this.cachedPT1 = null; _overwrittenProps = null; _hasUpdate = (this.initted = (this.active = (_notifyPluginsOfEnabled = false))); this.propTweenLookup = {}; } public function killVars(_arg1:Object, _arg2:Boolean=true):Boolean{ var _local3:String; var _local4:PropTween; var _local5:Boolean; if (_overwrittenProps == null){ _overwrittenProps = {}; }; for (_local3 in _arg1) { if ((_local3 in propTweenLookup)){ _local4 = propTweenLookup[_local3]; if (((_local4.isPlugin) && ((_local4.name == "_MULTIPLE_")))){ _local4.target.killProps(_arg1); if (_local4.target.overwriteProps.length == 0){ _local4.name = ""; }; }; if (_local4.name != "_MULTIPLE_"){ if (_local4.nextNode){ _local4.nextNode.prevNode = _local4.prevNode; }; if (_local4.prevNode){ _local4.prevNode.nextNode = _local4.nextNode; } else { if (this.cachedPT1 == _local4){ this.cachedPT1 = _local4.nextNode; }; }; if (((_local4.isPlugin) && (_local4.target.onDisable))){ _local4.target.onDisable(); if (_local4.target.activeDisable){ _local5 = true; }; }; delete propTweenLookup[_local3]; }; }; if (((_arg2) && (!((_arg1 == _overwrittenProps))))){ _overwrittenProps[_local3] = 1; }; }; return (_local5); } override public function setEnabled(_arg1:Boolean, _arg2:Boolean=false):Boolean{ var _local3:Array; if (_arg1){ _local3 = TweenLite.masterList[this.target]; if (!_local3){ TweenLite.masterList[this.target] = [this]; } else { _local3[_local3.length] = this; }; }; super.setEnabled(_arg1, _arg2); if (((_notifyPluginsOfEnabled) && (this.cachedPT1))){ return (onPluginEvent((_arg1) ? "onEnable" : "onDisable", this)); }; return (false); } public static function initClass():void{ rootFrame = 0; rootTimeline = new SimpleTimeline(null); rootFramesTimeline = new SimpleTimeline(null); rootTimeline.cachedStartTime = (getTimer() * 0.001); rootFramesTimeline.cachedStartTime = rootFrame; rootTimeline.autoRemoveChildren = true; rootFramesTimeline.autoRemoveChildren = true; _shape.addEventListener(Event.ENTER_FRAME, updateAll, false, 0, true); if (overwriteManager == null){ overwriteManager = {mode:1, enabled:false}; }; } public static function killTweensOf(_arg1:Object, _arg2:Boolean=false, _arg3:Object=null):void{ var _local4:Array; var _local5:int; var _local6:TweenLite; if ((_arg1 in masterList)){ _local4 = masterList[_arg1]; _local5 = _local4.length; while (--_local5 > -1) { _local6 = _local4[_local5]; if (!_local6.gc){ if (_arg2){ _local6.complete(false, false); }; if (_arg3 != null){ _local6.killVars(_arg3); }; if ((((_arg3 == null)) || ((((_local6.cachedPT1 == null)) && (_local6.initted))))){ _local6.setEnabled(false, false); }; }; }; if (_arg3 == null){ delete masterList[_arg1]; }; }; } public static function from(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ _arg3.runBackwards = true; if (!("immediateRender" in _arg3)){ _arg3.immediateRender = true; }; return (new TweenLite(_arg1, _arg2, _arg3)); } protected static function easeOut(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):Number{ _arg1 = (1 - (_arg1 / _arg4)); return ((1 - (_arg1 * _arg1))); } public static function delayedCall(_arg1:Number, _arg2:Function, _arg3:Array=null, _arg4:Boolean=false):TweenLite{ return (new TweenLite(_arg2, 0, {delay:_arg1, onComplete:_arg2, onCompleteParams:_arg3, immediateRender:false, useFrames:_arg4, overwrite:0})); } protected static function updateAll(_arg1:Event=null):void{ var _local2:Dictionary; var _local3:Object; var _local4:Array; var _local5:int; rootTimeline.renderTime((((getTimer() * 0.001) - rootTimeline.cachedStartTime) * rootTimeline.cachedTimeScale), false, false); rootFrame++; rootFramesTimeline.renderTime(((rootFrame - rootFramesTimeline.cachedStartTime) * rootFramesTimeline.cachedTimeScale), false, false); if (!(rootFrame % 60)){ _local2 = masterList; for (_local3 in _local2) { _local4 = _local2[_local3]; _local5 = _local4.length; while (--_local5 > -1) { if (TweenLite(_local4[_local5]).gc){ _local4.splice(_local5, 1); }; }; if (_local4.length == 0){ delete _local2[_local3]; }; }; }; } public static function to(_arg1:Object, _arg2:Number, _arg3:Object):TweenLite{ return (new TweenLite(_arg1, _arg2, _arg3)); } } }//package com.greensock
Section 8
//AwardsService (com.spilgames.api.AwardsService) package com.spilgames.api { public class AwardsService { public static function submitAward(_arg1:String, _arg2:Function=null):int{ return (SpilGamesServices.getInstance().send("Awards", "submitAward", _arg2, {tag:_arg1, userName:User.getUserName(), userHash:User.getUserHash()})); } } }//package com.spilgames.api
Section 9
//SpilGamesServices (com.spilgames.api.SpilGamesServices) package com.spilgames.api { import flash.display.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.system.*; public class SpilGamesServices extends MovieClip { private const DEFAULT_CONNECTION_LOCATION:String = "http://www8.agame.com/games/flash/services/ServicesConnection.swf"; private var _alwaysInFront:Boolean;// = false private var _loader:Loader; private var _request:URLRequest; private var _connecting:Boolean;// = false private var _servicesConnection;// = null private var _connected:Boolean;// = false private var currentDelay:Number;// = 0 private var previousFrameTime:Number; private var _numConnectionLoadTries:uint;// = 0 public static const INVALID_ID:int = -1; public static const CONFIGURATION_FAILED:String = "configurationFailure"; private static const MAX_CONNECTION_LOAD_RETRIES:uint = 99; public static const INVALID_DOMAIN:String = "invalidDomain"; private static var _instance:SpilGamesServices = null; public function SpilGamesServices(_arg1:Private=null){ _servicesConnection = null; _connecting = false; _connected = false; _numConnectionLoadTries = 0; _alwaysInFront = false; currentDelay = 0; super(); if (!_arg1){ throw (new Error("Cannot instantiate this class, use SpilGamesServices.getInstance")); }; } public function get alwaysInFront():Boolean{ return (_alwaysInFront); } public function get version():String{ return ("1.1"); } private function handleRemovedFromStage(_arg1:Event):void{ trace("WARNING: please do not remove SpilGamesServices from the stage"); } private function handleIOError(_arg1:IOErrorEvent):void{ _numConnectionLoadTries++; if (_numConnectionLoadTries > MAX_CONNECTION_LOAD_RETRIES){ _loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, handleLoadComplete); _loader.contentLoaderInfo.removeEventListener(IOErrorEvent.IO_ERROR, handleIOError); _connecting = false; trace("ERROR: SpilGamesServices failed to load the connection object"); if (hasEventListener(_arg1.type)){ dispatchEvent(_arg1); }; } else { trace(("WARN: SpilGamesServices failed to load the connection object, retry #" + _numConnectionLoadTries)); previousFrameTime = getTimer(); addEventListener(Event.ENTER_FRAME, updateConnectionRetry); }; } public function allowDomain(_arg1:String):void{ Security.allowDomain("*"); Security.allowInsecureDomain("*"); } private function updateConnectionRetry(_arg1:Event):void{ var _local2:Number; var _local3:Number; _local2 = getTimer(); _local3 = ((_local2 - previousFrameTime) / 1000); currentDelay = (currentDelay + _local3); if (currentDelay >= 2){ trace(("WARN: SpilGamesServices trying to reconnect after: " + currentDelay)); _loader.load(_request); removeEventListener(Event.ENTER_FRAME, updateConnectionRetry); currentDelay = 0; }; previousFrameTime = _local2; } public function getItemID():int{ if (_servicesConnection != null){ return (_servicesConnection.getItemID()); }; return (INVALID_ID); } public function bringToFront(_arg1:Event=null):void{ var e = _arg1; if (parent){ try { parent.setChildIndex(this, (parent.numChildren - 1)); } catch(e:Error) { removeEventListener(Event.ENTER_FRAME, bringToFront); }; }; } private function handleLoadComplete(_arg1:Event):void{ _loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, handleLoadComplete); _loader.contentLoaderInfo.removeEventListener(IOErrorEvent.IO_ERROR, handleIOError); _servicesConnection = LoaderInfo(_arg1.target).content; _servicesConnection.addEventListener(Event.COMPLETE, handleServicesReady); _servicesConnection.addEventListener(ErrorEvent.ERROR, handleServicesFailed); _servicesConnection.addEventListener("serviceError", handleServiceError); addChild(_servicesConnection); } public function send(_arg1:String, _arg2:String, _arg3:Function, _arg4:Object=null):int{ if (isReady()){ return (_servicesConnection.send(_arg1, _arg2, _arg3, _arg4)); }; return (INVALID_ID); } public function getSiteID():int{ if (_servicesConnection != null){ return (_servicesConnection.getSiteID()); }; return (INVALID_ID); } public function isReady():Boolean{ return (((!((_servicesConnection == null))) && (_servicesConnection.isReady()))); } public function isDomainAllowed():Boolean{ return (((!((_servicesConnection == null))) && (_servicesConnection.isDomainValid()))); } public function getChannelID():int{ if (_servicesConnection != null){ return (_servicesConnection.getChannelID()); }; return (INVALID_ID); } private function handleServicesReady(_arg1:Event):void{ _loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, handleLoadComplete); _loader.contentLoaderInfo.removeEventListener(IOErrorEvent.IO_ERROR, handleIOError); _connected = true; _connecting = false; dispatchEvent(new Event("servicesReady")); } private function handleServiceError(_arg1:Event):void{ var _local2:String; if (hasEventListener("serviceError")){ _local2 = ""; if ((_arg1 is ErrorEvent)){ _local2 = ErrorEvent(_arg1).text; } else { _local2 = _arg1.toString(); }; dispatchEvent(new ErrorEvent("serviceError", false, false, _local2)); }; } public function disconnect():void{ if (_servicesConnection){ _servicesConnection.removeEventListener(Event.COMPLETE, handleServicesReady); _servicesConnection.removeEventListener(ErrorEvent.ERROR, handleServicesFailed); _servicesConnection.removeEventListener("serviceError", handleServiceError); if (_connected){ _servicesConnection.disconnect(); }; removeChild(_servicesConnection); }; _servicesConnection = null; if (_loader){ try { _loader.close(); } catch(e:Error) { } finally { _loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, handleLoadComplete); _loader.contentLoaderInfo.removeEventListener(IOErrorEvent.IO_ERROR, handleIOError); }; _loader = null; }; removeEventListener(Event.ENTER_FRAME, bringToFront); removeEventListener(Event.REMOVED_FROM_STAGE, handleRemovedFromStage); if (parent){ parent.removeChild(this); }; _connected = (_connecting = false); } public function get connecting():Boolean{ return (_connecting); } private function handleServicesFailed(_arg1:ErrorEvent):void{ _servicesConnection.addEventListener(Event.COMPLETE, handleServicesReady); _servicesConnection.addEventListener(ErrorEvent.ERROR, handleServicesFailed); _servicesConnection.addEventListener("serviceError", handleServiceError); _connecting = false; if (hasEventListener("servicesFailed")){ dispatchEvent(new ErrorEvent("servicesFailed", false, false, _arg1.text)); }; } public function get connection(){ return (_servicesConnection); } public function isServiceAvailable(_arg1:String):Boolean{ return (((isReady()) && (_servicesConnection.isServiceAvailable(_arg1)))); } public function set alwaysInFront(_arg1:Boolean):void{ if (_alwaysInFront != _arg1){ _alwaysInFront = _arg1; if (_alwaysInFront){ addEventListener(Event.ENTER_FRAME, bringToFront); } else { removeEventListener(Event.ENTER_FRAME, bringToFront); }; }; } public function connect(_arg1:DisplayObjectContainer, ... _args):void{ var _local3:String; var _local4:URLVariables; var _local5:Date; if (((!(_connecting)) && (!(_connected)))){ if (!_arg1.stage){ throw (new Error("The given clip must be present in the display list (added to stage)")); }; _connecting = true; _arg1.stage.addChild(this); addEventListener(Event.REMOVED_FROM_STAGE, handleRemovedFromStage); if (((root.loaderInfo.parameters["servicesLoc"]) && ((root.loaderInfo.parameters["servicesLoc"].length > 0)))){ _local3 = root.loaderInfo.parameters["servicesLoc"]; _request = new URLRequest(_local3); } else { _local3 = DEFAULT_CONNECTION_LOCATION; _local4 = new URLVariables(); _local5 = new Date(); _local4.nocache = ((((_local5.fullYear * 12) + (_local5.month + 1)) * 31) + _local5.day); _request = new URLRequest(_local3); _request.data = _local4; }; allowDomain(_local3); _loader = new Loader(); _loader.contentLoaderInfo.addEventListener(Event.COMPLETE, handleLoadComplete); _loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, handleIOError); _loader.load(_request); }; } public static function getInstance():SpilGamesServices{ if (!_instance){ _instance = new SpilGamesServices(new Private()); }; return (_instance); } } }//package com.spilgames.api class Private { private function Private(){ } }
Section 10
//User (com.spilgames.api.User) package com.spilgames.api { import flash.display.*; public class User { public static function getUserName():String{ var _local1:*; _local1 = SpilGamesServices.getInstance().connection; if (_local1 != null){ return (_local1.getUserName()); }; return (""); } public static function isGuest():Boolean{ var _local1:*; var _local2:DisplayObject; var _local3:Object; _local1 = SpilGamesServices.getInstance().connection; if (_local1 != null){ return (_local1.isGuest()); }; _local2 = SpilGamesServices.getInstance().root; if (_local2.loaderInfo != null){ _local3 = _local2.loaderInfo.parameters; return (((((((!(_local3.username)) || ((_local3.username == "")))) || (!(_local3.hash)))) || ((_local3.hash == "")))); }; return (false); } public static function getUserHash():String{ var _local1:*; _local1 = SpilGamesServices.getInstance().connection; if (_local1 != null){ return (_local1.getUserHash()); }; return (""); } } }//package com.spilgames.api
Section 11
//AdLoader (CPMStar.AdLoader) package CPMStar { import flash.display.*; import flash.events.*; import flash.net.*; import flash.system.*; public class AdLoader extends Sprite { private var contentspotid:String; private var cpmstarLoader:Loader; public function AdLoader(_arg1:String){ this.contentspotid = _arg1; addEventListener(Event.ADDED, addedHandler); } private function addedHandler(_arg1:Event):void{ var _local2:String; var _local3:DisplayObjectContainer; removeEventListener(Event.ADDED, addedHandler); Security.allowDomain("server.cpmstar.com"); _local2 = "http://server.cpmstar.com/adviewas3.swf"; _local3 = parent; cpmstarLoader = new Loader(); cpmstarLoader.contentLoaderInfo.addEventListener(Event.INIT, dispatchHandler); cpmstarLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, dispatchHandler); cpmstarLoader.load(new URLRequest(((_local2 + "?contentspotid=") + contentspotid))); addChild(cpmstarLoader); } private function dispatchHandler(_arg1:Event):void{ dispatchEvent(_arg1); } } }//package CPMStar
Section 12
//MochiCoins (mochi.as3.MochiCoins) package mochi.as3 { public class MochiCoins { public static const STORE_HIDE:String = "StoreHide"; public static const NO_USER:String = "NoUser"; public static const IO_ERROR:String = "IOError"; public static const ITEM_NEW:String = "ItemNew"; public static const ITEM_OWNED:String = "ItemOwned"; public static const STORE_ITEMS:String = "StoreItems"; public static const ERROR:String = "Error"; public static const STORE_SHOW:String = "StoreShow"; private static var _dispatcher:MochiEventDispatcher = new MochiEventDispatcher(); public static var _inventory:MochiInventory; public static function triggerEvent(_arg1:String, _arg2:Object):void{ _dispatcher.triggerEvent(_arg1, _arg2); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.removeEventListener(_arg1, _arg2); } public static function addEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.addEventListener(_arg1, _arg2); } public static function getStoreItems():void{ MochiServices.send("coins_getStoreItems"); } public static function get inventory():MochiInventory{ return (_inventory); } public static function showStore(_arg1:Object=null):void{ MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("coins_showStore", {options:_arg1}, null, null); } public static function requestFunding(_arg1:Object=null):void{ MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("social_requestFunding", _arg1); } public static function showItem(_arg1:Object=null):void{ if (((!(_arg1)) || (!((typeof(_arg1.item) == "string"))))){ trace("ERROR: showItem call must pass an Object with an item key"); return; }; MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("coins_showItem", {options:_arg1}, null, null); } public static function getVersion():String{ return (MochiServices.getVersion()); } public static function showVideo(_arg1:Object=null):void{ if (((!(_arg1)) || (!((typeof(_arg1.item) == "string"))))){ trace("ERROR: showVideo call must pass an Object with an item key"); return; }; MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("coins_showVideo", {options:_arg1}, null, null); } addEventListener(MochiSocial.LOGGED_IN, function (_arg1:Object):void{ _inventory = new MochiInventory(); }); addEventListener(MochiSocial.LOGGED_OUT, function (_arg1:Object):void{ _inventory = null; }); } }//package mochi.as3
Section 13
//MochiDigits (mochi.as3.MochiDigits) package mochi.as3 { public final class MochiDigits { private var Sibling:MochiDigits; private var Fragment:Number; private var Encoder:Number; public function MochiDigits(_arg1:Number=0, _arg2:uint=0):void{ Encoder = 0; setValue(_arg1, _arg2); } public function set value(_arg1:Number):void{ setValue(_arg1); } public function reencode():void{ var _local1:uint; _local1 = int((2147483647 * Math.random())); Fragment = (Fragment ^ (_local1 ^ Encoder)); Encoder = _local1; } public function toString():String{ var _local1:String; _local1 = String.fromCharCode((Fragment ^ Encoder)); if (Sibling != null){ _local1 = (_local1 + Sibling.toString()); }; return (_local1); } public function get value():Number{ return (Number(this.toString())); } public function setValue(_arg1:Number=0, _arg2:uint=0):void{ var _local3:String; _local3 = _arg1.toString(); var _temp1 = _arg2; _arg2 = (_arg2 + 1); Fragment = (_local3.charCodeAt(_temp1) ^ Encoder); if (_arg2 < _local3.length){ Sibling = new MochiDigits(_arg1, _arg2); } else { Sibling = null; }; reencode(); } public function addValue(_arg1:Number):void{ value = (value + _arg1); } } }//package mochi.as3
Section 14
//MochiEventDispatcher (mochi.as3.MochiEventDispatcher) package mochi.as3 { public class MochiEventDispatcher { private var eventTable:Object; public function MochiEventDispatcher():void{ eventTable = {}; } public function triggerEvent(_arg1:String, _arg2:Object):void{ var _local3:Object; if (eventTable[_arg1] == undefined){ return; }; for (_local3 in eventTable[_arg1]) { var _local6 = eventTable[_arg1]; _local6[_local3](_arg2); }; } public function removeEventListener(_arg1:String, _arg2:Function):void{ var _local3:Object; if (eventTable[_arg1] == undefined){ eventTable[_arg1] = []; return; }; for (_local3 in eventTable[_arg1]) { if (eventTable[_arg1][_local3] != _arg2){ } else { eventTable[_arg1].splice(Number(_local3), 1); }; }; } public function addEventListener(_arg1:String, _arg2:Function):void{ removeEventListener(_arg1, _arg2); eventTable[_arg1].push(_arg2); } } }//package mochi.as3
Section 15
//MochiEvents (mochi.as3.MochiEvents) package mochi.as3 { import flash.display.*; public class MochiEvents { public static const ALIGN_BOTTOM_LEFT:String = "ALIGN_BL"; public static const FORMAT_LONG:String = "LongForm"; public static const ALIGN_BOTTOM:String = "ALIGN_B"; public static const ACHIEVEMENT_RECEIVED:String = "AchievementReceived"; public static const FORMAT_SHORT:String = "ShortForm"; public static const ALIGN_TOP_RIGHT:String = "ALIGN_TR"; public static const ALIGN_BOTTOM_RIGHT:String = "ALIGN_BR"; public static const ALIGN_TOP:String = "ALIGN_T"; public static const ALIGN_LEFT:String = "ALIGN_L"; public static const ALIGN_RIGHT:String = "ALIGN_R"; public static const ALIGN_TOP_LEFT:String = "ALIGN_TL"; public static const ALIGN_CENTER:String = "ALIGN_C"; private static var _dispatcher:MochiEventDispatcher = new MochiEventDispatcher(); private static var gameStart:Number; private static var levelStart:Number; public static function endPlay():void{ MochiServices.send("events_clearRoundID", null, null, null); } public static function addEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.addEventListener(_arg1, _arg2); } public static function trackEvent(_arg1:String, _arg2=null):void{ MochiServices.send("events_trackEvent", {tag:_arg1, value:_arg2}, null, null); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.removeEventListener(_arg1, _arg2); } public static function startSession(_arg1:String):void{ MochiServices.send("events_beginSession", {achievementID:_arg1}, null, null); } public static function triggerEvent(_arg1:String, _arg2:Object):void{ _dispatcher.triggerEvent(_arg1, _arg2); } public static function setNotifications(_arg1:MovieClip, _arg2:Object):void{ var _local3:Object; var _local4:Object; _local3 = {}; for (_local4 in _arg2) { _local3[_local4] = _arg2[_local4]; }; _local3.clip = _arg1; MochiServices.send("events_setNotifications", _local3, null, null); } public static function getVersion():String{ return (MochiServices.getVersion()); } public static function startPlay(_arg1:String="gameplay"):void{ MochiServices.send("events_setRoundID", {tag:String(_arg1)}, null, null); } } }//package mochi.as3
Section 16
//MochiInventory (mochi.as3.MochiInventory) package mochi.as3 { import flash.events.*; import flash.utils.*; public dynamic class MochiInventory extends Proxy { private var _timer:Timer; private var _names:Array; private var _consumableProperties:Object; private var _syncID:Number; private var _storeSync:Object; private var _outstandingID:Number; private var _syncPending:Boolean; public static const READY:String = "InvReady"; public static const ERROR:String = "Error"; public static const IO_ERROR:String = "IoError"; private static const KEY_SALT:String = " syncMaint"; public static const WRITTEN:String = "InvWritten"; public static const NOT_READY:String = "InvNotReady"; public static const VALUE_ERROR:String = "InvValueError"; private static const CONSUMER_KEY:String = "MochiConsumables"; private static var _dispatcher:MochiEventDispatcher = new MochiEventDispatcher(); public function MochiInventory():void{ MochiCoins.addEventListener(MochiCoins.ITEM_OWNED, itemOwned); MochiCoins.addEventListener(MochiCoins.ITEM_NEW, newItems); MochiSocial.addEventListener(MochiSocial.LOGGED_IN, loggedIn); MochiSocial.addEventListener(MochiSocial.LOGGED_OUT, loggedOut); _storeSync = new Object(); _syncPending = false; _outstandingID = 0; _syncID = 0; _timer = new Timer(1000); _timer.addEventListener(TimerEvent.TIMER, sync); _timer.start(); if (MochiSocial.loggedIn){ loggedIn(); } else { loggedOut(); }; } private function newItems(_arg1:Object):void{ if (!this[(_arg1.id + KEY_SALT)]){ this[(_arg1.id + KEY_SALT)] = 0; }; if (!this[_arg1.id]){ this[_arg1.id] = 0; }; this[(_arg1.id + KEY_SALT)] = (this[(_arg1.id + KEY_SALT)] + _arg1.count); this[_arg1.id] = (this[_arg1.id] + _arg1.count); if (((_arg1.privateProperties) && (_arg1.privateProperties.consumable))){ if (!this[_arg1.privateProperties.tag]){ this[_arg1.privateProperties.tag] = 0; }; this[_arg1.privateProperties.tag] = (this[_arg1.privateProperties.tag] + (_arg1.privateProperties.inc * _arg1.count)); }; } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function getProperty(_arg1){ if (_consumableProperties == null){ triggerEvent(ERROR, {type:NOT_READY}); return (-1); }; if (_consumableProperties[_arg1]){ return (MochiDigits(_consumableProperties[_arg1]).value); }; return (undefined); } public function release():void{ MochiCoins.removeEventListener(MochiCoins.ITEM_NEW, newItems); MochiSocial.removeEventListener(MochiSocial.LOGGED_IN, loggedIn); MochiSocial.removeEventListener(MochiSocial.LOGGED_OUT, loggedOut); } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function hasProperty(_arg1):Boolean{ if (_consumableProperties == null){ triggerEvent(ERROR, {type:NOT_READY}); return (false); }; if (_consumableProperties[_arg1] == undefined){ return (false); }; return (true); } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function nextNameIndex(_arg1:int):int{ return (((_arg1)>=_names.length) ? 0 : (_arg1 + 1)); } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function setProperty(_arg1, _arg2):void{ var _local3:MochiDigits; if (_consumableProperties == null){ triggerEvent(ERROR, {type:NOT_READY}); return; }; if (!(_arg2 is Number)){ triggerEvent(ERROR, {type:VALUE_ERROR, error:"Invalid type", arg:_arg2}); return; }; if (_consumableProperties[_arg1]){ _local3 = MochiDigits(_consumableProperties[_arg1]); if (_local3.value == _arg2){ return; }; _local3.value = _arg2; } else { _names.push(_arg1); _consumableProperties[_arg1] = new MochiDigits(_arg2); }; _syncID++; } private function sync(_arg1:Event=null):void{ var _local2:Object; var _local3:String; if (((_syncPending) || ((_syncID == _outstandingID)))){ return; }; _outstandingID = _syncID; _local2 = {}; for (_local3 in _consumableProperties) { _local2[_local3] = MochiDigits(_consumableProperties[_local3]).value; }; MochiUserData.put(CONSUMER_KEY, _local2, putConsumableBag); _syncPending = true; } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function nextName(_arg1:int):String{ return (_names[(_arg1 - 1)]); } private function loggedIn(_arg1:Object=null):void{ MochiUserData.get(CONSUMER_KEY, getConsumableBag); } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function deleteProperty(_arg1):Boolean{ if (!_consumableProperties[_arg1]){ return (false); }; _names.splice(_names.indexOf(_arg1), 1); delete _consumableProperties[_arg1]; return (true); } private function itemOwned(_arg1:Object):void{ _storeSync[_arg1.id] = {properties:_arg1.properties, count:_arg1.count}; } private function putConsumableBag(_arg1:MochiUserData):void{ _syncPending = false; if (_arg1.error){ triggerEvent(ERROR, {type:IO_ERROR, error:_arg1.error}); _outstandingID = -1; }; triggerEvent(WRITTEN, {}); } private function getConsumableBag(_arg1:MochiUserData):void{ var _local2:String; var _local3:Number; if (_arg1.error){ triggerEvent(ERROR, {type:IO_ERROR, error:_arg1.error}); return; }; _consumableProperties = {}; _names = new Array(); if (_arg1.data){ for (_local2 in _arg1.data) { _names.push(_local2); _consumableProperties[_local2] = new MochiDigits(_arg1.data[_local2]); }; }; for (_local2 in _storeSync) { _local3 = _storeSync[_local2].count; if (_consumableProperties[(_local2 + KEY_SALT)]){ _local3 = (_local3 - _consumableProperties[(_local2 + KEY_SALT)].value); }; if (_local3 == 0){ } else { newItems({id:_local2, count:_local3, properties:_storeSync[_local2].properties}); }; }; triggerEvent(READY, {}); } private function loggedOut(_arg1:Object=null):void{ _consumableProperties = null; } public static function triggerEvent(_arg1:String, _arg2:Object):void{ _dispatcher.triggerEvent(_arg1, _arg2); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.removeEventListener(_arg1, _arg2); } public static function addEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.addEventListener(_arg1, _arg2); } } }//package mochi.as3
Section 17
//MochiScores (mochi.as3.MochiScores) package mochi.as3 { import flash.display.*; import flash.text.*; public class MochiScores { private static var boardID:String; public static var onErrorHandler:Object; public static var onCloseHandler:Object; public static function showLeaderboard(_arg1:Object=null):void{ var n:Number; var options = _arg1; if (options != null){ delete options.clip; MochiServices.setContainer(); MochiServices.bringToTop(); if (options.name != null){ if ((options.name is TextField)){ if (options.name.text.length > 0){ options.name = options.name.text; }; }; }; if (options.score != null){ if ((options.score is TextField)){ if (options.score.text.length > 0){ options.score = options.score.text; }; } else { if ((options.score is MochiDigits)){ options.score = options.score.value; }; }; n = Number(options.score); if (isNaN(n)){ trace((("ERROR: Submitted score '" + options.score) + "' will be rejected, score is 'Not a Number'")); } else { if ((((n == Number.NEGATIVE_INFINITY)) || ((n == Number.POSITIVE_INFINITY)))){ trace((("ERROR: Submitted score '" + options.score) + "' will be rejected, score is an infinite")); } else { if (Math.floor(n) != n){ trace((("WARNING: Submitted score '" + options.score) + "' will be truncated")); }; options.score = n; }; }; }; if (options.onDisplay != null){ options.onDisplay(); } else { if (MochiServices.clip != null){ if ((MochiServices.clip is MovieClip)){ MochiServices.clip.stop(); } else { trace("Warning: Container is not a MovieClip, cannot call default onDisplay."); }; }; }; } else { options = {}; if ((MochiServices.clip is MovieClip)){ MochiServices.clip.stop(); } else { trace("Warning: Container is not a MovieClip, cannot call default onDisplay."); }; }; if (options.onClose != null){ onCloseHandler = options.onClose; } else { onCloseHandler = function ():void{ if ((MochiServices.clip is MovieClip)){ MochiServices.clip.play(); } else { trace("Warning: Container is not a MovieClip, cannot call default onClose."); }; }; }; if (options.onError != null){ onErrorHandler = options.onError; } else { onErrorHandler = null; }; if (options.boardID == null){ if (MochiScores.boardID != null){ options.boardID = MochiScores.boardID; }; }; MochiServices.warnID(options.boardID, true); trace("[MochiScores] NOTE: Security Sandbox Violation errors below are normal"); MochiServices.send("scores_showLeaderboard", {options:options}, null, onClose); } public static function closeLeaderboard():void{ MochiServices.send("scores_closeLeaderboard"); } public static function getPlayerInfo(_arg1:Object, _arg2:Object=null):void{ MochiServices.send("scores_getPlayerInfo", null, _arg1, _arg2); } public static function requestList(_arg1:Object, _arg2:Object=null):void{ MochiServices.send("scores_requestList", null, _arg1, _arg2); } public static function scoresArrayToObjects(_arg1:Object):Object{ var _local2:Object; var _local3:Number; var _local4:Number; var _local5:Object; var _local6:Object; var _local7:String; var _local8:String; _local2 = {}; for (_local7 in _arg1) { if (typeof(_arg1[_local7]) == "object"){ if (((!((_arg1[_local7].cols == null))) && (!((_arg1[_local7].rows == null))))){ _local2[_local7] = []; _local5 = _arg1[_local7]; _local4 = 0; while (_local4 < _local5.rows.length) { _local6 = {}; _local3 = 0; while (_local3 < _local5.cols.length) { _local6[_local5.cols[_local3]] = _local5.rows[_local4][_local3]; _local3++; }; _local2[_local7].push(_local6); _local4++; }; } else { _local2[_local7] = {}; for (_local8 in _arg1[_local7]) { _local2[_local7][_local8] = _arg1[_local7][_local8]; }; }; } else { _local2[_local7] = _arg1[_local7]; }; }; return (_local2); } public static function submit(_arg1:Number, _arg2:String, _arg3:Object=null, _arg4:Object=null):void{ _arg1 = Number(_arg1); if (isNaN(_arg1)){ trace((("ERROR: Submitted score '" + String(_arg1)) + "' will be rejected, score is 'Not a Number'")); } else { if ((((_arg1 == Number.NEGATIVE_INFINITY)) || ((_arg1 == Number.POSITIVE_INFINITY)))){ trace((("ERROR: Submitted score '" + String(_arg1)) + "' will be rejected, score is an infinite")); } else { if (Math.floor(_arg1) != _arg1){ trace((("WARNING: Submitted score '" + String(_arg1)) + "' will be truncated")); }; _arg1 = Number(_arg1); }; }; MochiServices.send("scores_submit", {score:_arg1, name:_arg2}, _arg3, _arg4); } public static function onClose(_arg1:Object=null):void{ if (((((_arg1) && ((_arg1.error == true)))) && (onErrorHandler))){ if (_arg1.errorCode == null){ _arg1.errorCode = "IOError"; }; onErrorHandler(_arg1.errorCode); MochiServices.doClose(); return; }; onCloseHandler(); MochiServices.doClose(); } public static function setBoardID(_arg1:String):void{ MochiServices.warnID(_arg1, true); MochiScores.boardID = _arg1; MochiServices.send("scores_setBoardID", {boardID:_arg1}); } } }//package mochi.as3
Section 18
//MochiServices (mochi.as3.MochiServices) package mochi.as3 { import flash.display.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.geom.*; import flash.system.*; public class MochiServices { public static const CONNECTED:String = "onConnected"; private static var _container:Object; private static var _connected:Boolean = false; private static var _queue:Array; private static var _swfVersion:String; private static var _preserved:Object; public static var netupAttempted:Boolean = false; private static var _sendChannel:LocalConnection; private static var _nextCallbackID:Number; private static var _clip:MovieClip; private static var _loader:Loader; private static var _id:String; private static var _services:String = "services.swf"; private static var _servURL:String = "http://www.mochiads.com/static/lib/services/"; public static var widget:Boolean = false; private static var _timer:Timer; private static var _sendChannelName:String; private static var _dispatcher:MochiEventDispatcher = new MochiEventDispatcher(); private static var _callbacks:Object; private static var _connecting:Boolean = false; private static var _mochiLocalConnection:MovieClip; private static var _listenChannelName:String = "__ms_"; public static var onError:Object; public static var netup:Boolean = true; private static var _mochiLC:String = "MochiLC.swf"; public static function isNetworkAvailable():Boolean{ return (!((Security.sandboxType == "localWithFile"))); } public static function get connected():Boolean{ return (_connected); } private static function onReceive(_arg1:Object):void{ var cb:String; var cblst:Object; var method:*; var methodName:String; var obj:Object; var pkg = _arg1; cb = pkg.callbackID; cblst = _callbacks[cb]; if (!cblst){ return; }; method = cblst.callbackMethod; methodName = ""; obj = cblst.callbackObject; if (((obj) && ((typeof(method) == "string")))){ methodName = method; if (obj[method] != null){ method = obj[method]; } else { trace((("Error: Method " + method) + " does not exist.")); }; }; if (method != undefined){ try { method.apply(obj, pkg.args); } catch(error:Error) { trace(((("Error invoking callback method '" + methodName) + "': ") + error.toString())); }; } else { if (obj != null){ try { obj(pkg.args); } catch(error:Error) { trace(("Error invoking method on object: " + error.toString())); }; }; }; delete _callbacks[cb]; } public static function send(_arg1:String, _arg2:Object=null, _arg3:Object=null, _arg4:Object=null):void{ if (_connected){ _mochiLocalConnection.send(_sendChannelName, "onReceive", {methodName:_arg1, args:_arg2, callbackID:_nextCallbackID}); } else { if ((((_clip == null)) || (!(_connecting)))){ trace(("Error: MochiServices not connected. Please call MochiServices.connect(). Function: " + _arg1)); handleError(_arg2, _arg3, _arg4); flush(true); return; }; _queue.push({methodName:_arg1, args:_arg2, callbackID:_nextCallbackID}); }; if (_clip != null){ if (_callbacks != null){ _callbacks[_nextCallbackID] = {callbackObject:_arg3, callbackMethod:_arg4}; _nextCallbackID++; }; }; } private static function init(_arg1:String, _arg2:Object):void{ _id = _arg1; if (_arg2 != null){ _container = _arg2; loadCommunicator(_arg1, _container); }; } private static function clickMovie(_arg1:String, _arg2:Function):MovieClip{ var _local3:Array; var _local4:int; var _local5:Array; var _local6:Array; var _local7:MovieClip; var _local8:LocalConnection; var _local9:String; var _local10:ByteArray; var _local11:ByteArray; var _local12:uint; var _local13:uint; var _local14:Loader; _local3 = [150, 21, 0, 7, 1, 0, 0, 0, 0, 98, 116, 110, 0, 7, 2, 0, 0, 0, 0, 116, 104, 105, 115, 0, 28, 150, 22, 0, 0, 99, 114, 101, 97, 116, 101, 69, 109, 112, 116, 121, 77, 111, 118, 105, 101, 67, 108, 105, 112, 0, 82, 135, 1, 0, 0, 23, 150, 13, 0, 4, 0, 0, 111, 110, 82, 101, 108, 101, 97, 115, 101, 0, 142, 8, 0, 0, 0, 0, 2, 42, 0, 114, 0, 150, 17, 0, 0, 32, 0, 7, 1, 0, 0, 0, 8, 0, 0, 115, 112, 108, 105, 116, 0, 82, 135, 1, 0, 1, 23, 150, 7, 0, 4, 1, 7, 0, 0, 0, 0, 78, 150, 8, 0, 0, 95, 98, 108, 97, 110, 107, 0, 154, 1, 0, 0, 150, 7, 0, 0, 99, 108, 105, 99, 107, 0, 150, 7, 0, 4, 1, 7, 1, 0, 0, 0, 78, 150, 27, 0, 7, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 76, 111, 99, 97, 108, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 0, 64, 150, 6, 0, 0, 115, 101, 110, 100, 0, 82, 79, 150, 15, 0, 4, 0, 0, 95, 97, 108, 112, 104, 97, 0, 7, 0, 0, 0, 0, 79, 150, 23, 0, 7, 0xFF, 0, 0xFF, 0, 7, 1, 0, 0, 0, 4, 0, 0, 98, 101, 103, 105, 110, 70, 105, 108, 108, 0, 82, 23, 150, 25, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 109, 111, 118, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 100, 0, 0, 0, 7, 0, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 100, 0, 0, 0, 7, 100, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 0, 0, 0, 0, 7, 100, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 16, 0, 7, 0, 0, 0, 0, 4, 0, 0, 101, 110, 100, 70, 105, 108, 108, 0, 82, 23]; _local5 = [104, 0, 31, 64, 0, 7, 208, 0, 0, 12, 1, 0, 67, 2, 0xFF, 0xFF, 0xFF, 63, 3]; _local6 = [0, 64, 0, 0, 0]; _local7 = new MovieClip(); _local8 = new LocalConnection(); _local9 = ((("_click_" + Math.floor((Math.random() * 999999))) + "_") + Math.floor(new Date().time)); _local8 = new LocalConnection(); _local7.lc = _local8; _local7.click = _arg2; _local8.client = _local7; _local8.connect(_local9); _local10 = new ByteArray(); _local11 = new ByteArray(); _local11.endian = Endian.LITTLE_ENDIAN; _local11.writeShort(1); _local11.writeUTFBytes(((_arg1 + " ") + _local9)); _local11.writeByte(0); _local12 = ((_local3.length + _local11.length) + 4); _local13 = (_local12 + 35); _local10.endian = Endian.LITTLE_ENDIAN; _local10.writeUTFBytes("FWS"); _local10.writeByte(8); _local10.writeUnsignedInt(_local13); for each (_local4 in _local5) { _local10.writeByte(_local4); }; _local10.writeUnsignedInt(_local12); _local10.writeByte(136); _local10.writeShort(_local11.length); _local10.writeBytes(_local11); for each (_local4 in _local3) { _local10.writeByte(_local4); }; for each (_local4 in _local6) { _local10.writeByte(_local4); }; _local14 = new Loader(); _local14.loadBytes(_local10); _local7.addChild(_local14); return (_local7); } private static function detach(_arg1:Event):void{ var _local2:LoaderInfo; _local2 = LoaderInfo(_arg1.target); _local2.removeEventListener(Event.COMPLETE, detach); _local2.removeEventListener(IOErrorEvent.IO_ERROR, detach); _local2.removeEventListener(Event.COMPLETE, loadLCBridgeComplete); _local2.removeEventListener(IOErrorEvent.IO_ERROR, loadError); } public static function stayOnTop():void{ _container.addEventListener(Event.ENTER_FRAME, MochiServices.bringToTop, false, 0, true); if (_clip != null){ _clip.visible = true; }; } private static function loadLCBridgeComplete(_arg1:Event):void{ var _local2:Loader; _local2 = LoaderInfo(_arg1.target).loader; _mochiLocalConnection = MovieClip(_local2.content); listen(); } public static function disconnect():void{ if (((_connected) || (_connecting))){ if (_clip != null){ if (_clip.parent != null){ if ((_clip.parent is Sprite)){ Sprite(_clip.parent).removeChild(_clip); _clip = null; }; }; }; _connecting = (_connected = false); flush(true); try { _mochiLocalConnection.close(); } catch(error:Error) { }; }; if (_timer != null){ try { _timer.stop(); _timer.removeEventListener(TimerEvent.TIMER, connectWait); _timer = null; } catch(error:Error) { }; }; } public static function allowDomains(_arg1:String):String{ var _local2:String; if (Security.sandboxType != "application"){ Security.allowDomain("*"); Security.allowInsecureDomain("*"); }; if (_arg1.indexOf("http://") != -1){ _local2 = _arg1.split("/")[2].split(":")[0]; if (Security.sandboxType != "application"){ Security.allowDomain(_local2); Security.allowInsecureDomain(_local2); }; }; return (_local2); } public static function getVersion():String{ return ("3.9.2 as3"); } public static function doClose():void{ _container.removeEventListener(Event.ENTER_FRAME, MochiServices.bringToTop); } public static function warnID(_arg1:String, _arg2:Boolean):void{ var _local3:Number; _arg1 = _arg1.toLowerCase(); if (_arg1.length != 16){ trace((("WARNING: " + (_arg2) ? "board" : "game") + " ID is not the appropriate length")); return; } else { if (_arg1 == "1e113c7239048b3f"){ if (_arg2){ trace("WARNING: Using testing board ID"); } else { trace("WARNING: Using testing board ID as game ID"); }; return; } else { if (_arg1 == "84993a1de4031cd8"){ if (_arg2){ trace("WARNING: Using testing game ID as board ID"); } else { trace("WARNING: Using testing game ID"); }; return; }; }; }; _local3 = 0; while (_local3 < _arg1.length) { switch (_arg1.charAt(_local3)){ case "0": case "1": case "2": case "3": case "4": case "5": case "6": case "7": case "8": case "9": case "a": case "b": case "c": case "d": case "e": case "f": break; default: trace(("WARNING: Board ID contains illegal characters: " + _arg1)); return; }; _local3++; }; } private static function flush(_arg1:Boolean):void{ var _local2:Object; var _local3:Object; if (((_clip) && (_queue))){ while (_queue.length > 0) { _local2 = _queue.shift(); _local3 = null; if (_local2 != null){ if (_local2.callbackID != null){ _local3 = _callbacks[_local2.callbackID]; }; delete _callbacks[_local2.callbackID]; if (((_arg1) && (!((_local3 == null))))){ handleError(_local2.args, _local3.callbackObject, _local3.callbackMethod); }; }; }; }; } public static function get id():String{ return (_id); } private static function onEvent(_arg1:Object):void{ var _local2:String; var _local3:String; _local2 = _arg1.target; _local3 = _arg1.event; switch (_local2){ case "services": MochiServices.triggerEvent(_arg1.event, _arg1.args); break; case "events": MochiEvents.triggerEvent(_arg1.event, _arg1.args); break; case "coins": MochiCoins.triggerEvent(_arg1.event, _arg1.args); break; case "social": MochiSocial.triggerEvent(_arg1.event, _arg1.args); break; }; } private static function urlOptions(_arg1:Object):Object{ var _local2:Object; var _local3:String; var _local4:Array; var _local5:Number; var _local6:Array; _local2 = {}; if (_arg1.stage){ _local3 = _arg1.stage.loaderInfo.parameters.mochiad_options; } else { _local3 = _arg1.loaderInfo.parameters.mochiad_options; }; if (_local3){ _local4 = _local3.split("&"); _local5 = 0; while (_local5 < _local4.length) { _local6 = _local4[_local5].split("="); _local2[unescape(_local6[0])] = unescape(_local6[1]); _local5++; }; }; return (_local2); } public static function addLinkEvent(_arg1:String, _arg2:String, _arg3:DisplayObjectContainer, _arg4:Function=null):void{ var vars:Object; var avm1Click:DisplayObject; var s:String; var i:Number; var x:String; var req:URLRequest; var loader:Loader; var setURL:Function; var err:Function; var complete:Function; var url = _arg1; var burl = _arg2; var btn = _arg3; var onClick = _arg4; vars = new Object(); vars["mav"] = getVersion(); vars["swfv"] = "9"; vars["swfurl"] = btn.loaderInfo.loaderURL; vars["fv"] = Capabilities.version; vars["os"] = Capabilities.os; vars["lang"] = Capabilities.language; vars["scres"] = ((Capabilities.screenResolutionX + "x") + Capabilities.screenResolutionY); s = "?"; i = 0; for (x in vars) { if (i != 0){ s = (s + "&"); }; i = (i + 1); s = (((s + x) + "=") + escape(vars[x])); }; req = new URLRequest("http://link.mochiads.com/linkping.swf"); loader = new Loader(); setURL = function (_arg1:String):void{ var _local2:Rectangle; if (avm1Click){ btn.removeChild(avm1Click); }; avm1Click = clickMovie(_arg1, onClick); _local2 = btn.getBounds(btn); btn.addChild(avm1Click); avm1Click.x = _local2.x; avm1Click.y = _local2.y; avm1Click.scaleX = (0.01 * _local2.width); avm1Click.scaleY = (0.01 * _local2.height); }; err = function (_arg1:Object):void{ netup = false; _arg1.target.removeEventListener(_arg1.type, arguments.callee); setURL(burl); }; complete = function (_arg1:Object):void{ _arg1.target.removeEventListener(_arg1.type, arguments.callee); }; if (netup){ setURL((url + s)); } else { setURL(burl); }; if (!((netupAttempted) || (_connected))){ netupAttempted = true; loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, err); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, complete); loader.load(req); }; } public static function setContainer(_arg1:Object=null, _arg2:Boolean=true):void{ if (_clip.parent){ _clip.parent.removeChild(_clip); }; if (_arg1 != null){ if ((_arg1 is DisplayObjectContainer)){ _container = _arg1; }; }; if (_arg2){ if ((_container is DisplayObjectContainer)){ DisplayObjectContainer(_container).addChild(_clip); }; }; } private static function handleError(_arg1:Object, _arg2:Object, _arg3:Object):void{ var args = _arg1; var callbackObject = _arg2; var callbackMethod = _arg3; if (args != null){ if (args.onError != null){ args.onError.apply(null, ["NotConnected"]); }; if (((!((args.options == null))) && (!((args.options.onError == null))))){ args.options.onError.apply(null, ["NotConnected"]); }; }; if (callbackMethod != null){ args = {}; args.error = true; args.errorCode = "NotConnected"; if (((!((callbackObject == null))) && ((callbackMethod is String)))){ try { var _local5 = callbackObject; _local5[callbackMethod](args); } catch(error:Error) { }; } else { if (callbackMethod != null){ try { callbackMethod.apply(args); } catch(error:Error) { }; }; }; }; } private static function loadError(_arg1:Object):void{ _clip._mochiad_ctr_failed = true; trace("MochiServices could not load."); MochiServices.disconnect(); MochiServices.onError("IOError"); } public static function get childClip():Object{ return (_clip); } private static function initComChannels():void{ if (!_connected){ trace("[SERVICES_API] connected!"); _connecting = false; _connected = true; _mochiLocalConnection.send(_sendChannelName, "onReceive", {methodName:"handshakeDone"}); _mochiLocalConnection.send(_sendChannelName, "onReceive", {methodName:"registerGame", preserved:_preserved, id:_id, version:getVersion(), parentURL:_container.loaderInfo.loaderURL}); _clip.onReceive = onReceive; _clip.onEvent = onEvent; _clip.onError = function ():void{ MochiServices.onError("IOError"); }; while (_queue.length > 0) { _mochiLocalConnection.send(_sendChannelName, "onReceive", _queue.shift()); }; }; } public static function triggerEvent(_arg1:String, _arg2:Object):void{ _dispatcher.triggerEvent(_arg1, _arg2); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.removeEventListener(_arg1, _arg2); } private static function listen():void{ _mochiLocalConnection.connect(_listenChannelName); _clip.handshake = function (_arg1:Object):void{ MochiServices.comChannelName = _arg1.newChannel; }; trace("Waiting for MochiAds services to connect..."); } public static function addEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.addEventListener(_arg1, _arg2); } private static function loadLCBridge(_arg1:Object):void{ var _local2:Loader; var _local3:String; var _local4:URLRequest; _local2 = new Loader(); _local3 = (_servURL + _mochiLC); _local4 = new URLRequest(_local3); _local2.contentLoaderInfo.addEventListener(Event.COMPLETE, detach); _local2.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, detach); _local2.contentLoaderInfo.addEventListener(Event.COMPLETE, loadLCBridgeComplete); _local2.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loadError); _local2.load(_local4); _arg1.addChild(_local2); } public static function set comChannelName(_arg1:String):void{ if (_arg1 != null){ if (_arg1.length > 3){ _sendChannelName = (_arg1 + "_fromgame"); initComChannels(); }; }; } private static function loadCommunicator(_arg1:String, _arg2:Object):MovieClip{ var _local3:String; var _local4:URLRequest; var _local5:URLVariables; if (_clip != null){ return (_clip); }; if (!MochiServices.isNetworkAvailable()){ return (null); }; if (urlOptions(_arg2).servURL){ _servURL = urlOptions(_arg2).servURL; }; _local3 = (_servURL + _services); if (urlOptions(_arg2).servicesURL){ _local3 = urlOptions(_arg2).servicesURL; }; _listenChannelName = (_listenChannelName + ((Math.floor(new Date().time) + "_") + Math.floor((Math.random() * 99999)))); MochiServices.allowDomains(_local3); _clip = new MovieClip(); loadLCBridge(_clip); _loader = new Loader(); _loader.contentLoaderInfo.addEventListener(Event.COMPLETE, detach); _loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, detach); _loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loadError); _local4 = new URLRequest(_local3); _local5 = new URLVariables(); _local5.listenLC = _listenChannelName; _local5.mochiad_options = _arg2.loaderInfo.parameters.mochiad_options; _local5.api_version = getVersion(); if (widget){ _local5.widget = true; }; _local4.data = _local5; _loader.load(_local4); _clip.addChild(_loader); _sendChannel = new LocalConnection(); _queue = []; _nextCallbackID = 0; _callbacks = {}; _timer = new Timer(10000, 1); _timer.addEventListener(TimerEvent.TIMER, connectWait); _timer.start(); return (_clip); } public static function get clip():Object{ return (_container); } public static function connect(_arg1:String, _arg2:Object, _arg3:Object=null):void{ var id = _arg1; var clip = _arg2; var onError = _arg3; warnID(id, false); if ((clip is DisplayObject)){ if (clip.stage == null){ trace("MochiServices connect requires the containing clip be attached to the stage"); }; if (((!(_connected)) && ((_clip == null)))){ trace("MochiServices Connecting..."); _connecting = true; init(id, clip); }; } else { trace("Error, MochiServices requires a Sprite, Movieclip or instance of the stage."); }; if (onError != null){ MochiServices.onError = onError; } else { if (MochiServices.onError == null){ MochiServices.onError = function (_arg1:String):void{ trace(_arg1); }; }; }; } public static function bringToTop(_arg1:Event=null):void{ var e = _arg1; if (((!((MochiServices.clip == null))) && (!((MochiServices.childClip == null))))){ try { if (MochiServices.clip.numChildren > 1){ MochiServices.clip.setChildIndex(MochiServices.childClip, (MochiServices.clip.numChildren - 1)); }; } catch(errorObject:Error) { trace("Warning: Depth sort error."); _container.removeEventListener(Event.ENTER_FRAME, MochiServices.bringToTop); }; }; } public static function connectWait(_arg1:TimerEvent):void{ if (!_connected){ _clip._mochiad_ctr_failed = true; trace("MochiServices could not load. (timeout)"); MochiServices.disconnect(); MochiServices.onError("IOError"); } else { _timer.stop(); _timer.removeEventListener(TimerEvent.TIMER, connectWait); _timer = null; }; } } }//package mochi.as3
Section 19
//MochiSocial (mochi.as3.MochiSocial) package mochi.as3 { public class MochiSocial { public static const LOGGED_IN:String = "LoggedIn"; public static const ACTION_CANCELED:String = "onCancel"; public static const PROPERTIES_SIZE:String = "PropertiesSize"; public static const IO_ERROR:String = "IOError"; public static const NO_USER:String = "NoUser"; public static const FRIEND_LIST:String = "FriendsList"; public static const PROFILE_DATA:String = "ProfileData"; public static const GAMEPLAY_DATA:String = "GameplayData"; public static const ACTION_COMPLETE:String = "onComplete"; public static const LOGIN_SHOW:String = "LoginShow"; public static const PROFILE_HIDE:String = "ProfileHide"; public static const USER_INFO:String = "UserInfo"; public static const PROPERTIES_SAVED:String = "PropertySaved"; public static const WIDGET_LOADED:String = "WidgetLoaded"; public static const ERROR:String = "Error"; public static const LOGGED_OUT:String = "LoggedOut"; public static const PROFILE_SHOW:String = "ProfileShow"; public static const LOGIN_HIDE:String = "LoginHide"; public static const LOGIN_SHOWN:String = "LoginShown"; public static var _user_info:Object = null; private static var _dispatcher:MochiEventDispatcher = new MochiEventDispatcher(); public static function requestFan(_arg1:Object=null):void{ MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("social_requestFan", _arg1); } public static function postToStream(_arg1:Object=null):void{ MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("social_postToStream", _arg1); } public static function getFriendsList(_arg1:Object=null):void{ MochiServices.send("social_getFriendsList", _arg1); } public static function requestLogin(_arg1:Object=null):void{ MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("social_requestLogin", _arg1); } public static function getVersion():String{ return (MochiServices.getVersion()); } public static function saveUserProperties(_arg1:Object):void{ MochiServices.send("social_saveUserProperties", _arg1); } public static function triggerEvent(_arg1:String, _arg2:Object):void{ _dispatcher.triggerEvent(_arg1, _arg2); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.removeEventListener(_arg1, _arg2); } public static function inviteFriends(_arg1:Object=null):void{ MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("social_inviteFriends", _arg1); } public static function get loggedIn():Boolean{ return (!((_user_info == null))); } public static function addEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.addEventListener(_arg1, _arg2); } public static function showLoginWidget(_arg1:Object=null):void{ MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("social_showLoginWidget", {options:_arg1}); } public static function getAPIURL():String{ if (!_user_info){ return (null); }; return (_user_info.api_url); } public static function hideLoginWidget():void{ MochiServices.send("social_hideLoginWidget"); } public static function getAPIToken():String{ if (!_user_info){ return (null); }; return (_user_info.api_token); } MochiSocial.addEventListener(MochiSocial.LOGGED_IN, function (_arg1:Object):void{ _user_info = _arg1; }); MochiSocial.addEventListener(MochiSocial.LOGGED_OUT, function (_arg1:Object):void{ _user_info = null; }); } }//package mochi.as3
Section 20
//MochiUserData (mochi.as3.MochiUserData) package mochi.as3 { import flash.events.*; import flash.utils.*; import flash.net.*; public class MochiUserData extends EventDispatcher { public var callback:Function;// = null public var error:Event;// = null public var key:String;// = null public var operation:String;// = null public var data;// = null public var _loader:URLLoader; public function MochiUserData(_arg1:String="", _arg2:Function=null){ key = null; data = null; error = null; operation = null; callback = null; super(); this.key = _arg1; this.callback = _arg2; } public function securityErrorHandler(_arg1:SecurityErrorEvent):void{ errorHandler(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, ("security error: " + _arg1.toString()))); } public function putEvent(_arg1):void{ request("put", serialize(_arg1)); } public function request(_arg1:String, _arg2:ByteArray):void{ var api_url:String; var api_token:String; var args:URLVariables; var req:URLRequest; var _operation = _arg1; var _data = _arg2; operation = _operation; api_url = MochiSocial.getAPIURL(); api_token = MochiSocial.getAPIToken(); if ((((api_url == null)) || ((api_token == null)))){ errorHandler(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, "not logged in")); return; }; _loader = new URLLoader(); args = new URLVariables(); args.op = _operation; args.key = key; req = new URLRequest((((MochiSocial.getAPIURL() + "/") + "MochiUserData?") + args.toString())); req.method = URLRequestMethod.POST; req.contentType = "application/x-mochi-userdata"; req.requestHeaders = [new URLRequestHeader("x-mochi-services-version", MochiServices.getVersion()), new URLRequestHeader("x-mochi-api-token", api_token)]; req.data = _data; _loader.dataFormat = URLLoaderDataFormat.BINARY; _loader.addEventListener(Event.COMPLETE, completeHandler); _loader.addEventListener(IOErrorEvent.IO_ERROR, errorHandler); _loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler); try { _loader.load(req); } catch(e:SecurityError) { errorHandler(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, ("security error: " + e.toString()))); }; } public function completeHandler(_arg1:Event):void{ var event = _arg1; try { if (_loader.data.length){ data = deserialize(_loader.data); } else { data = null; }; } catch(e:Error) { errorHandler(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, ("deserialize error: " + e.toString()))); return; }; if (callback != null){ performCallback(); } else { dispatchEvent(event); }; close(); } public function performCallback():void{ try { callback(this); } catch(e:Error) { trace(("[MochiUserData] exception during callback: " + e)); }; } public function serialize(_arg1):ByteArray{ var _local2:ByteArray; _local2 = new ByteArray(); _local2.objectEncoding = ObjectEncoding.AMF3; _local2.writeObject(_arg1); _local2.compress(); return (_local2); } public function errorHandler(_arg1:IOErrorEvent):void{ data = null; error = _arg1; if (callback != null){ performCallback(); } else { dispatchEvent(_arg1); }; close(); } public function getEvent():void{ request("get", serialize(null)); } override public function toString():String{ return ((((((((("[MochiUserData operation=" + operation) + " key=\"") + key) + "\" data=") + data) + " error=\"") + error) + "\"]")); } public function close():void{ if (_loader){ _loader.removeEventListener(Event.COMPLETE, completeHandler); _loader.removeEventListener(IOErrorEvent.IO_ERROR, errorHandler); _loader.removeEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler); _loader.close(); _loader = null; }; error = null; callback = null; } public function deserialize(_arg1:ByteArray){ _arg1.objectEncoding = ObjectEncoding.AMF3; _arg1.uncompress(); return (_arg1.readObject()); } public static function get(_arg1:String, _arg2:Function):void{ var _local3:MochiUserData; _local3 = new MochiUserData(_arg1, _arg2); _local3.getEvent(); } public static function put(_arg1:String, _arg2, _arg3:Function):void{ var _local4:MochiUserData; _local4 = new MochiUserData(_arg1, _arg3); _local4.putEvent(_arg2); } } }//package mochi.as3
Section 21
//Brand (spill.localisation.Brand) package spill.localisation { import flash.xml.*; public class Brand { public var domain:String; public var useGoogleAnalitics:Boolean;// = true public var emailPage:String; public var name:String; public var site_id:uint; public var isExternal:Boolean;// = false public var id:Number; public var hostingDomain:String;// = "" public var preferedLanguage:String;// = "" public var moreLink:String;// = "" public var hasSendToFriendLink:Boolean;// = true public var portalGroup:uint; public var emailLink:String;// = "game" private static const topLevelDoubles:String = ((((((((((((((("ac.cn,ac.jp,ac.uk,ad.jp,adm.br,adv.br,agr.br," + "ah.cn,am.br,arq.br,art.br,asn.au,ato.br,av.tr,bel.tr,bio.br,biz.tr,bj.cn,bmd.br,") + "cim.br,cng.br,cnt.br,co.at,co.jp,co.uk,com.au,com.br,com.cn,com.eg,com.hk,com.mx,") + "com.ru,com.tr,com.tw,conf.au,cq.cn,csiro.au,dr.tr,ecn.br,edu.au,edu.br,edu.tr,") + "emu.id.au,eng.br,esp.br,etc.br,eti.br,eun.eg,far.br,fj.cn,fm.br,fnd.br,fot.br,") + "fst.br,g12.br,gb.com,gb.net,gd.cn,gen.tr,ggf.br,gob.mx,gov.au,gov.br,gov.cn,") + "gov.hk,gov.tr,gr.jp,gs.cn,gx.cn,gz.cn,ha.cn,hb.cn,he.cn,hi.cn,hk.cn,hl.cn,hn.cn,") + "id.au,idv.tw,imb.br,ind.br,inf.br,info.au,info.tr,jl.cn,jor.br,js.cn,jx.cn,k12.tr,") + "lel.br,ln.cn,ltd.uk,mat.br,me.uk,med.br,mil.br,mil.tr,mo.cn,mus.br,name.tr,ne.jp,") + "net.au,net.br,net.cn,net.eg,net.hk,net.lu,net.mx,net.ru,net.tr,net.tw,net.uk,") + "nm.cn,no.com,nom.br,not.br,ntr.br,nx.cn,odo.br,oop.br,or.at,or.jp,org.au,org.br,") + "org.cn,org.hk,org.lu,org.ru,org.tr,org.tw,org.uk,plc.uk,pol.tr,pp.ru,ppg.br,pro.br,") + "psc.br,psi.br,qh.cn,qsl.br,rec.br,sc.cn,sd.cn,se.com,se.net,sh.cn,slg.br,sn.cn,") + "srv.br,sx.cn,tel.tr,tj.cn,tmp.br,trd.br,tur.br,tv.br,tw.cn,uk.com,uk.net,vet.br,") + "wattle.id.au,web.tr,xj.cn,xz.cn,yn.cn,zj.cn,zlg.br,co.nr,co.nz,com.fr,com.ph,com.ar,") + "com.id,com.in"); public function Brand(){ moreLink = ""; emailLink = "game"; useGoogleAnalitics = true; hasSendToFriendLink = true; preferedLanguage = ""; isExternal = false; hostingDomain = ""; super(); } public function exportXML():XML{ var _local1:XML; var _local2:XML; var _local3:XML; _local1 = <portal/> ; _local1.@id = site_id; _local1.@language = preferedLanguage; _local1.@channel = portalGroup; _local2 = <domain/> ; _local2.appendChild(new XMLNode(3, domain)); _local1.appendChild(_local2); if (moreLink){ _local3 = <more_games_path/> ; _local3.appendChild(new XMLNode(3, moreLink)); _local1.appendChild(_local3); }; _local2 = <game_path/> ; _local2.appendChild(new XMLNode(3, emailLink)); _local1.appendChild(_local2); if (!useGoogleAnalitics){ _local1.attributes.noGoogleAnalitics = true; }; if (!hasSendToFriendLink){ _local1.attributes.noSendToFriendLink = true; }; return (_local1); } private function get utm_source():String{ return (("utm_source=brandedgames_" + (isExternal) ? "external" : "internal")); } public function getMoreGamesLink(_arg1:String, _arg2:Boolean, _arg3:String="", _arg4:String=""):String{ var _local5:String; _local5 = ("http://" + domain); _local5 = (_local5 + ("/" + moreLink)); if (useGoogleAnalitics){ _local5 = (_local5 + ("?utm_medium=brandedgames_" + (_arg2) ? "external" : "internal")); _local5 = (_local5 + ("&utm_campaign=" + _arg1)); _arg3 = stripSubDomain(_arg3); if (_arg3 == "localhost"){ _arg3 = "offline_play"; }; _local5 = (_local5 + ("&utm_source=" + _arg3)); if (((!((_arg4 == ""))) && (!((_arg4 == null))))){ _local5 = (_local5 + ("&utm_content=" + _arg4)); }; }; return (_local5); } private function get utm_campaign():String{ if (isExternal){ return (("utm_campaign=" + hostingDomain)); }; return (""); } public function get backgroundColor():uint{ return (PortalGroup.backgroundColors[portalGroup]); } public function getPromotionLink(_arg1:String, _arg2:String, _arg3:Boolean, _arg4:String="", _arg5:String=""):String{ var _local6:String; _local6 = ("http://" + domain); _local6 = (_local6 + ((("/" + emailLink) + "/") + _arg2)); if (useGoogleAnalitics){ _local6 = (_local6 + ("?utm_medium=brandedgames_" + (_arg3) ? "external" : "internal")); _local6 = (_local6 + ("&utm_campaign=" + _arg1)); _arg4 = stripSubDomain(_arg4); trace(_arg4); if (_arg4 == "localhost"){ _arg4 = "offline_play"; }; _local6 = (_local6 + ("&utm_source=" + _arg4)); if (((!((_arg5 == ""))) && (!((_arg5 == null))))){ _local6 = (_local6 + ("&utm_content=" + _arg5)); }; }; return (_local6); } private function get utm_term():String{ return ("utm_term="); } public function importXML(_arg1:XMLNode):void{ } public function getSendToFriendLink(_arg1:String, _arg2:String, _arg3:Boolean, _arg4:String=""):String{ var _local5:String; if (!hasSendToFriendLink){ return (getMoreGamesLink(_arg1, _arg3)); }; _local5 = ("http://" + domain); _local5 = (_local5 + ((("/" + emailLink) + "/") + _arg2)); if (useGoogleAnalitics){ _local5 = (_local5 + ("?utm_medium=brandedgames_" + (_arg3) ? "external" : "internal")); _local5 = (_local5 + ("&utm_campaign=" + _arg1)); _arg4 = stripSubDomain(_arg4); if (_arg4 == "localhost"){ _arg4 = "offline_play"; }; _local5 = (_local5 + ("&utm_source=" + _arg4)); _local5 = (_local5 + "&utm_content=send_to_friend"); }; return (_local5); } public static function stripSubDomain(_arg1:String):String{ var _local2:Array; if (!_arg1){ return (""); }; _local2 = _arg1.split("."); if (_local2.length <= 2){ return (_arg1); }; _local2 = _local2.reverse(); if (topLevelDoubles.indexOf((((_local2[1] + ".") + _local2[0]) + ",")) > 0){ return (((((_local2[2] + ".") + _local2[1]) + ".") + _local2[0])); }; return (((_local2[1] + ".") + _local2[0])); } } }//package spill.localisation
Section 22
//BrandingLogo (spill.localisation.BrandingLogo) package spill.localisation { import flash.display.*; import flash.events.*; public class BrandingLogo extends MovieClip { public function BrandingLogo(){ addFrameScript(0, frame1); super(); stop(); mouseEnabled = false; mouseChildren = false; addEventListener(Event.ADDED_TO_STAGE, added, false, 0, true); addEventListener(Event.REMOVED_FROM_STAGE, removed, false, 0, true); if (stage){ added(); }; brandingChanged(); } private function added(_arg1:Event=null):void{ SpilGame.addEventListener("brandingChanged", brandingChanged, false, 0, true); brandingChanged(); } private function brandingChanged(_arg1:Event=null):void{ if (SpilGame.currentBranding){ gotoAndStop(SpilGame.currentBranding.domain); }; } function frame1(){ stop(); } private function removed(_arg1:Event):void{ SpilGame.removeEventListener("brandingChanged", brandingChanged); } } }//package spill.localisation
Section 23
//Brandings (spill.localisation.Brandings) package spill.localisation { public class Brandings { private static var brands_by_id:Object = new Object(); private static var brands_by_domain:Object = new Object(); public static function getBrandByID(_arg1:Number):Brand{ return (brands_by_id[_arg1]); } public static function getBrandsArray():Array{ var _local1:Array; var _local2:Brand; _local1 = new Array(); for each (_local2 in brands_by_domain) { _local1.push(_local2); }; return (_local1); } private static function addBrand(_arg1:Brand):Brand{ if (brands_by_domain[_arg1.domain]){ trace(("ERROR: Attempting to add duplicate brand by domain: " + _arg1.domain)); } else { brands_by_domain[_arg1.domain] = _arg1; }; if (brands_by_id[_arg1.site_id]){ trace(("ERROR: Attempting to add duplicate brand by id: " + _arg1.site_id)); } else { brands_by_id[_arg1.site_id] = _arg1; }; return (_arg1); } public static function initialize():void{ var _local1:Brand; _local1 = new Brand(); _local1.site_id = 79; _local1.domain = "www.agame.com"; _local1.preferedLanguage = "en_us"; _local1.portalGroup = PortalGroup.TEENS; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 88; _local1.domain = "www.gamesgames.com"; _local1.preferedLanguage = "en_us"; _local1.portalGroup = PortalGroup.FAMILY; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 90; _local1.domain = "www.girlsgogames.com"; _local1.preferedLanguage = "en_us"; _local1.portalGroup = PortalGroup.GIRL; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 45; _local1.domain = "www.a10.com"; _local1.preferedLanguage = "en_us"; _local1.portalGroup = PortalGroup.YOUNG_ADULTS; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 92; _local1.domain = "www.games.co.uk"; _local1.preferedLanguage = "en_uk"; _local1.portalGroup = PortalGroup.FAMILY; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 107; _local1.domain = "www.agame.co.uk"; _local1.preferedLanguage = "en_uk"; _local1.portalGroup = PortalGroup.TEENS; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 102; _local1.domain = "www.girlsgogames.co.uk"; _local1.preferedLanguage = "en_uk"; _local1.portalGroup = PortalGroup.GIRL; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 2; _local1.domain = "www.game.com.cn"; _local1.moreLink = "moregames/"; _local1.preferedLanguage = "cn"; _local1.portalGroup = PortalGroup.NONE; _local1.useGoogleAnalitics = false; _local1.hasSendToFriendLink = false; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 25; _local1.domain = "www.spel.nl"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "nl"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 1; _local1.domain = "www.spelletjes.nl"; _local1.emailLink = "spel"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "nl"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 93; _local1.domain = "www.girlsgogames.nl"; _local1.emailLink = "spel"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "nl"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 12; _local1.domain = "www.jeu.fr"; _local1.emailLink = "jeu"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "fr"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 95; _local1.domain = "www.girlsgogames.fr"; _local1.emailLink = "jeu"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "fr"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 11; _local1.domain = "www.jeux.fr"; _local1.emailLink = "jeu"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "fr"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 26; _local1.domain = "www.spielen.com"; _local1.emailLink = "spiel"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "de"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 94; _local1.domain = "www.girlsgogames.de"; _local1.emailLink = "spiel"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "de"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 5; _local1.domain = "www.jetztspielen.de"; _local1.emailLink = "spiel"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "de"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 109; _local1.domain = "www.minigry.pl"; _local1.emailLink = "gra"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "pl"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 16; _local1.domain = "www.gry.pl"; _local1.emailLink = "gra"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "pl"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 98; _local1.domain = "www.girlsgogames.pl"; _local1.emailLink = "gra"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "pl"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 108; _local1.domain = "www.spel.se"; _local1.emailLink = "spel_"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "se"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 100; _local1.domain = "www.girlsgogames.se"; _local1.emailLink = "spel_"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "se"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 44; _local1.domain = "www.spela.se"; _local1.emailLink = "spel_"; _local1.preferedLanguage = "se"; _local1.portalGroup = PortalGroup.FAMILY; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 106; _local1.domain = "www.giocaregratis.it"; _local1.emailLink = "gioco"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "it"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 15; _local1.domain = "www.gioco.it"; _local1.emailLink = "gioco"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "it"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 99; _local1.domain = "www.girlsgogames.it"; _local1.emailLink = "gioco"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "it"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 97; _local1.domain = "www.zapjuegos.com"; _local1.emailLink = "juego"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "es"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 86; _local1.domain = "www.juegos.com"; _local1.emailLink = "juego"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "es"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 96; _local1.domain = "www.juegosdechicas.com"; _local1.emailLink = "juego"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "es"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 122; _local1.domain = "www.girlsgogames.es"; _local1.emailLink = "juego"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "es"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 125; _local1.domain = "www.juegos.mx"; _local1.emailLink = "juego"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "es"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 126; _local1.domain = "www.juegosdechicas.mx"; _local1.emailLink = "juego"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "es"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 127; _local1.domain = "www.juegos.com.ar"; _local1.emailLink = "juego"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "es"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 128; _local1.domain = "www.juegosdechicas.com.ar"; _local1.emailLink = "juego"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "es"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 91; _local1.domain = "www.clickjogos.com"; _local1.emailLink = "jogo"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "br"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 101; _local1.domain = "www.girlsgogames.com.br"; _local1.emailLink = "jogo"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "br"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 50; _local1.domain = "www.ojogos.com.br"; _local1.emailLink = "jogo"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "br"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 55; _local1.domain = "www.games.co.id"; _local1.emailLink = "permainanme"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "id"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 105; _local1.domain = "www.flashgames.ru"; _local1.emailLink = "igra"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "ru"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 104; _local1.domain = "www.girlsgogames.ru"; _local1.emailLink = "igra"; _local1.portalGroup = PortalGroup.GIRL; _local1.preferedLanguage = "ru"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 103; _local1.domain = "www.ourgames.ru"; _local1.emailLink = "igra"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "ru"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 24; _local1.domain = "www.game.co.in"; _local1.emailLink = "game"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "in"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 87; _local1.domain = "www.ojogos.pt"; _local1.emailLink = "jogo"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "pt"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 120; _local1.domain = "www.egames.jp"; _local1.emailLink = "game"; _local1.portalGroup = PortalGroup.TEENS; _local1.preferedLanguage = "jp"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 121; _local1.domain = "www.dailygame.com"; _local1.emailLink = "/game/"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "en_us"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 123; _local1.domain = "www.zapapa.com"; _local1.emailLink = "game"; _local1.portalGroup = PortalGroup.ZAPAPA; _local1.preferedLanguage = "en_us"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 124; _local1.domain = "www.zapapa.nl"; _local1.emailLink = "game"; _local1.portalGroup = PortalGroup.HYVES; _local1.preferedLanguage = "nl"; addBrand(_local1); _local1 = new Brand(); _local1.site_id = 0; _local1.domain = "gamedev.dev.spilgames.com"; _local1.portalGroup = PortalGroup.FAMILY; _local1.preferedLanguage = "en_us"; addBrand(_local1); } public static function exportXML():XML{ var _local1:XML; var _local2:Brand; _local1 = <portals/> ; for each (_local2 in brands_by_domain) { _local1.appendChild(_local2.exportXML()); }; return (_local1); } public static function getBrandByDomain(_arg1:String):Brand{ return (brands_by_domain[_arg1]); } public static function hasDomain(_arg1:String):Boolean{ return (!((brands_by_domain[_arg1] == null))); } } }//package spill.localisation
Section 24
//Language (spill.localisation.Language) package spill.localisation { import flash.xml.*; public class Language { public var references:Array; public var name:String; public var embedInputFonts:Boolean;// = true public var forceFont:String;// = null public var id:uint; public var portal_groups:Array; public var textLanguage:String; public var bwcId:int; public var embedFonts:Boolean;// = true public var displayName:String;// = "" public var dname:String; public function Language(_arg1:String, _arg2:String=null){ embedFonts = true; embedInputFonts = true; forceFont = null; references = []; displayName = ""; super(); name = _arg1; dname = _arg2; portal_groups = new Array(); } public function exportXML():XMLNode{ var _local1:XMLNode; var _local2:XMLNode; var _local3:Array; var _local4:Array; var _local5:int; _local1 = new XMLNode(1, "language"); _local1.attributes.name = name; if (textLanguage != null){ _local1.attributes.textLanguage = textLanguage; }; if (references.length){ _local1.attributes.references = references.toString(); }; _local1.attributes.id = bwcId; _local2 = new XMLNode(1, "display_name"); _local2.firstChild = new XMLNode(3, displayName); _local1.appendChild(_local2); _local3 = []; _local4 = PortalGroup.channelNames; _local5 = 0; while (_local5 < _local4.length) { _local3.push(Brandings.getBrandByDomain(portal_groups[_local5]).site_id); _local5++; }; _local1.attributes.channels = _local3.join(","); return (_local1); } public function get p_teen():String{ return (portal_groups[PortalGroup.YOUNG_ADULTS]); } public function set p_hyves(_arg1:String):void{ portal_groups[PortalGroup.HYVES] = _arg1; } public function set p_teen(_arg1:String):void{ portal_groups[PortalGroup.YOUNG_ADULTS] = _arg1; } public function get p_tween():String{ return (portal_groups[PortalGroup.TEENS]); } public function get p_family():String{ return (portal_groups[PortalGroup.FAMILY]); } public function get p_girl():String{ trace("Language", portal_groups[PortalGroup.GIRL]); return (portal_groups[PortalGroup.GIRL]); } public function get p_hyves():String{ return (portal_groups[PortalGroup.HYVES]); } public function set p_girl(_arg1:String):void{ portal_groups[PortalGroup.GIRL] = _arg1; } public function set p_zapapa(_arg1:String):void{ portal_groups[PortalGroup.ZAPAPA] = _arg1; } public function get displayAcronim():String{ return ((dname) ? dname : name); } public function set p_family(_arg1:String):void{ portal_groups[PortalGroup.FAMILY] = _arg1; } public function set p_tween(_arg1:String):void{ portal_groups[PortalGroup.TEENS] = _arg1; } public function get p_zapapa():String{ return (portal_groups[PortalGroup.ZAPAPA]); } } }//package spill.localisation
Section 25
//Languages (spill.localisation.Languages) package spill.localisation { import flash.xml.*; public class Languages { private static var _init:Boolean = false; public static var languages:Object = new Object(); public static function exportXML():XMLNode{ var _local1:Array; var _local2:XMLNode; var _local3:Language; _local1 = getLanguagesArray(); _local2 = new XMLNode(1, "languages"); for each (_local3 in _local1) { _local2.appendChild(_local3.exportXML()); }; return (_local2); } private static function addReference(_arg1:Language, _arg2:String):void{ languages[_arg2] = _arg1; _arg1.references.push(_arg2); } public static function getLanguage(_arg1:String):Language{ return (languages[_arg1]); } public static function initialize():void{ var _local1:Language; if (_init){ return; }; _init = true; _local1 = new Language("nl"); _local1.displayName = "Nederlands"; _local1.p_family = "www.spelletjes.nl"; _local1.p_tween = "www.spel.nl"; _local1.p_girl = "www.girlsgogames.nl"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.p_hyves = "www.zapapa.nl"; _local1.bwcId = 3; addLanguage(_local1); _local1 = new Language("es"); _local1.displayName = "Español"; _local1.p_family = "www.juegos.com"; _local1.p_tween = "www.zapjuegos.com"; _local1.p_girl = "www.girlsgogames.es"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 9; addLanguage(_local1); _local1 = new Language("pl"); _local1.displayName = "Polski"; _local1.p_family = "www.gry.pl"; _local1.p_tween = "www.gry.pl"; _local1.p_girl = "www.girlsgogames.pl"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 6; addLanguage(_local1); _local1 = new Language("fr"); _local1.displayName = "Français"; _local1.p_family = "www.jeux.fr"; _local1.p_tween = "www.jeu.fr"; _local1.p_girl = "www.girlsgogames.fr"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 4; addLanguage(_local1); _local1 = new Language("en_us", "us"); _local1.displayName = "English"; _local1.p_family = "www.gamesgames.com"; _local1.p_tween = "www.agame.com"; _local1.p_girl = "www.girlsgogames.com"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 1; addLanguage(_local1); addReference(_local1, "en"); _local1 = new Language("id"); _local1.displayName = "Bahasa Ind."; _local1.p_family = "www.games.co.id"; _local1.p_tween = "www.games.co.id"; _local1.p_girl = "www.games.co.id"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 11; addLanguage(_local1); _local1 = new Language("ru"); _local1.displayName = "Русский"; _local1.p_family = "www.ourgames.ru"; _local1.p_tween = "www.flashgames.ru"; _local1.p_girl = "www.girlsgogames.ru"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 12; addLanguage(_local1); _local1 = new Language("se"); _local1.displayName = "Svenska"; _local1.p_family = "www.spela.se"; _local1.p_tween = "www.spel.se"; _local1.p_girl = "www.girlsgogames.se"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 7; addLanguage(_local1); addReference(_local1, "sv"); _local1 = new Language("it"); _local1.displayName = "Italiano"; _local1.p_family = "www.gioco.it"; _local1.p_tween = "www.gioco.it"; _local1.p_girl = "www.girlsgogames.it"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 8; addLanguage(_local1); _local1 = new Language("en_uk", "uk"); _local1.displayName = "English"; _local1.p_family = "www.games.co.uk"; _local1.p_tween = "www.agame.com"; _local1.p_girl = "www.girlsgogames.co.uk"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 13; addLanguage(_local1); _local1 = new Language("cn"); _local1.displayName = "中文"; _local1.p_family = "www.game.com.cn"; _local1.p_tween = "www.game.com.cn"; _local1.p_girl = "www.game.com.cn"; _local1.p_teen = "www.game.com.cn"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 2; _local1.embedInputFonts = false; addLanguage(_local1); addReference(_local1, "zh-CN"); addReference(_local1, "zh-TW"); _local1 = new Language("pt"); _local1.displayName = "Português"; _local1.p_family = "www.ojogos.pt"; _local1.p_tween = "www.ojogos.pt"; _local1.p_girl = "www.ojogos.pt"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 17; addLanguage(_local1); _local1 = new Language("in"); _local1.displayName = "English"; _local1.p_family = "www.game.co.in"; _local1.p_tween = "www.game.co.in"; _local1.p_girl = "www.game.co.in"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.textLanguage = "en_uk"; _local1.bwcId = 14; addLanguage(_local1); _local1 = new Language("de"); _local1.displayName = "Deutsch"; _local1.p_family = "www.jetztspielen.de"; _local1.p_tween = "www.spielen.com"; _local1.p_girl = "www.girlsgogames.de"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 5; addLanguage(_local1); _local1 = new Language("br"); _local1.displayName = "Português (BR)"; _local1.p_family = "www.ojogos.com.br"; _local1.p_tween = "www.clickjogos.com"; _local1.p_girl = "www.girlsgogames.com.br"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 10; addLanguage(_local1); _local1 = new Language("jp"); _local1.displayName = "日本語"; _local1.p_family = "www.egames.jp"; _local1.p_tween = "www.egames.jp"; _local1.p_girl = "www.egames.jp"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.embedInputFonts = false; _local1.bwcId = 19; addLanguage(_local1); addReference(_local1, "ja"); _local1 = new Language("ar"); _local1.displayName = "English"; _local1.p_family = "www.dailygame.com"; _local1.p_tween = "www.dailygame.com"; _local1.p_girl = "www.dailygame.com"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; _local1.bwcId = 20; addLanguage(_local1); addReference(_local1, "ar"); _local1 = new Language("es_mx", "mx"); _local1.displayName = "Español (mx)"; _local1.p_family = "www.juegos.mx"; _local1.p_tween = "www.juegos.mx"; _local1.p_girl = "www.juegosdechicas.mx"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; addLanguage(_local1); addReference(_local1, "mx"); _local1 = new Language("es_ar", "arg"); _local1.displayName = "Español (ar)"; _local1.p_family = "www.juegos.com.ar"; _local1.p_tween = "www.juegos.com.ar"; _local1.p_girl = "www.juegosdechicas.com.ar"; _local1.p_teen = "www.a10.com"; _local1.p_zapapa = "www.zapapa.com"; addLanguage(_local1); addReference(_local1, "arg"); } public static function getCurrentLanguage():void{ trace(("language = " + SpilGame.currentLanguage.name)); } public static function getLanguagesArray():Array{ var _local1:Array; var _local2:Object; var _local3:Language; _local1 = new Array(); _local2 = new Object(); for each (_local3 in languages) { if (!_local2[_local3.name]){ _local1.push(_local3); _local2[_local3.name] = true; }; }; return (_local1); } private static function addLanguage(_arg1:Language):void{ languages[_arg1.name] = _arg1; } public static function getLanguageByOldID(_arg1:int):Language{ var _local2:Language; for each (_local2 in languages) { if (_local2.bwcId == _arg1){ return (_local2); }; }; return (null); } } }//package spill.localisation
Section 26
//LanguageSelectBox (spill.localisation.LanguageSelectBox) package spill.localisation { import flash.display.*; import flash.text.*; import flash.events.*; public class LanguageSelectBox extends MovieClip { private var flag:MovieClip; private var mc:MovieClip; private var popup:MovieClip; private var languageName_text:TextField; public function LanguageSelectBox(){ trace("new langselecbox"); super(); if (numChildren > 0){ removeChildAt(0); }; addEventListener(Event.ADDED_TO_STAGE, added, false, 0, true); addEventListener(Event.REMOVED_FROM_STAGE, removed, false, 0, true); addEventListener(MouseEvent.MOUSE_OVER, mouseOver, false, 0, true); addEventListener(MouseEvent.MOUSE_OUT, mouseOut, false, 0, true); Languages.initialize(); popup = new LanguageSelectPopup_mc(); x = Math.round(x); y = Math.round(y); popup.y = (-(Math.floor(popup.height)) + 1); popup.visible = false; addChild(popup); mc = new LanguageSelectBox_mc(); addChild(mc); flag = mc.flag; languageName_text = mc.languageName_text; if (stage){ added(); }; init(); languageChanged(); } private function added(_arg1:Event=null):void{ trace("addedselebnox"); SpilGame.addEventListener("languageChanged", languageChanged, false, 0, true); } public function set popupLocation(_arg1:String):void{ trace(("popupLocation = " + _arg1)); if (_arg1 == "bottom"){ popup.y = Math.floor(mc.height); } else { popup.y = (-(Math.floor(mc.height)) + 1); }; } public function init():void{ var _local1:Array; var _local2:int; var _local3:MovieClip; var _local4:Language; trace("initselectbox"); _local1 = new Array(popup.l_br, popup.l_de, popup.l_en_us, popup.l_fr, popup.l_in, popup.l_jp, popup.l_pt, popup.l_ru, popup.l_ar, popup.l_cn, popup.l_en_uk, popup.l_es, popup.l_id, popup.l_it, popup.l_nl, popup.l_pl, popup.l_se, popup.l_es_mx, popup.l_es_ar); _local2 = 0; while (_local2 < _local1.length) { _local3 = MovieClip(_local1[_local2]); if (_local3){ _local3.addEventListener(MouseEvent.CLICK, itemClicked, true, 0, true); _local3.flag.gotoAndStop(_local3.name.substr(2)); _local3.flag.mouseEnabled = false; _local3.text.mouseEnabled = false; _local4 = Languages.getLanguage(_local3.name.substr(2)); if (_local4){ _local3.text.text = _local4.displayAcronim; } else { trace((("Error, '" + _local3.name.substr(2)) + "' language not found")); }; } else { trace((((("Error, btn number '" + _local2) + "' is not a MovieClip or there is no button '") + _local1[_local2]) + "'")); }; _local2++; }; } private function mouseOver(_arg1:MouseEvent):void{ popup.visible = true; } private function languageChanged(_arg1:Event=null):void{ if (SpilGame.currentLanguage){ if ((((SpilGame.portalGroup == PortalGroup.HYVES)) && ((SpilGame.currentLanguage.name == "nl")))){ this.visible = false; return; }; this.visible = true; flag.gotoAndStop(SpilGame.currentLanguage.name); languageName_text.text = SpilGame.currentLanguage.displayName; languageName_text.embedFonts = SpilGame.currentLanguage.embedInputFonts; }; } private function mouseOut(_arg1:MouseEvent):void{ popup.visible = false; } private function removed(_arg1:Event):void{ SpilGame.removeEventListener("languageChanged", languageChanged); } private function itemClicked(_arg1:MouseEvent):void{ SpilGame.changeLanguage(_arg1.currentTarget.name.substr(2)); popup.visible = false; } } }//package spill.localisation
Section 27
//LanguageSelectBox_mc (spill.localisation.LanguageSelectBox_mc) package spill.localisation { import flash.display.*; import flash.text.*; public dynamic class LanguageSelectBox_mc extends MovieClip { public var flag:MovieClip; public var languageName_text:TextField; } }//package spill.localisation
Section 28
//LanguageSelectPopup_mc (spill.localisation.LanguageSelectPopup_mc) package spill.localisation { import flash.display.*; public dynamic class LanguageSelectPopup_mc extends MovieClip { public var l_se:MovieClip; public var l_ar:MovieClip; public var l_br:MovieClip; public var l_in:MovieClip; public var l_cn:MovieClip; public var l_de:MovieClip; public var l_es_mx:MovieClip; public var l_es:MovieClip; public var l_en_uk:MovieClip; public var l_fr:MovieClip; public var l_en_us:MovieClip; public var l_pl:MovieClip; public var l_pt:MovieClip; public var l_nl:MovieClip; public var l_id:MovieClip; public var l_es_ar:MovieClip; public var l_it:MovieClip; public var l_jp:MovieClip; public var l_ru:MovieClip; } }//package spill.localisation
Section 29
//LocalizedTextField (spill.localisation.LocalizedTextField) package spill.localisation { import flash.events.*; public class LocalizedTextField extends TextFieldFit { private var regex:RegExp; private var originalText:String; public function LocalizedTextField(){ regex = /{([^{}]*)}/g; super(); addEventListener(Event.ADDED_TO_STAGE, added, false, 0, true); addEventListener(Event.REMOVED_FROM_STAGE, removed, false, 0, true); added(); } private function languageChanged(_arg1:Event):void{ text = originalText; updateProperties(); } override public function set text(_arg1:String):void{ originalText = _arg1; if ((_arg1 is String)){ super.text = _arg1.replace(regex, replaceFn); } else { super.text = ""; }; trace(super.text); } private function removed(_arg1:Event):void{ SpilGame.removeEventListener("languageChanged", languageChanged); } private function replaceFn():String{ var _local2:String; _local2 = SpilGame.getString(arguments[1]); if (((!(_local2)) || ((_local2 == "")))){ return ((("{" + arguments[1]) + "}")); }; return (_local2); } private function added(_arg1:Event=null):void{ SpilGame.addEventListener("languageChanged", languageChanged, false, 0, true); text = originalText; } } }//package spill.localisation
Section 30
//PortalGroup (spill.localisation.PortalGroup) package spill.localisation { import flash.xml.*; public class PortalGroup { public static const YOUNG_ADULTS:uint = 3; public static const FAMILY:uint = 0; public static const channelNames:Array = ["family", "tween", "girl", "teen", "zapapa", "hyves"]; public static const ZAPAPA:uint = 4; public static const HYVES:uint = 5; public static const TEENS:uint = 1; public static const GIRL:uint = 2; public static const backgroundColors:Array = [0xFFFFFF, 0xFFFFFF, 16742331, 0xFFFFFF, 0xFFFFFF, 0xFFFFFF]; public static const NONE:uint = 6; public static function getName(_arg1:int):String{ return (channelNames[_arg1]); } public static function exportXML():XMLNode{ var _local1:XMLNode; var _local2:int; var _local3:XMLNode; _local1 = new XMLNode(1, "channels"); _local2 = 0; while (_local2 < 5) { _local3 = new XMLNode(1, "channel"); _local3.attributes.name = channelNames[_local2]; _local3.attributes.id = _local2; _local1.appendChild(_local3); _local2++; }; return (_local1); } } }//package spill.localisation
Section 31
//spil_internal (spill.localisation.spil_internal) package spill.localisation { public namespace spil_internal = "spill.localisation"; }//package spill.localisation
Section 32
//SpilGame (spill.localisation.SpilGame) package spill.localisation { import flash.display.*; import flash.text.*; import flash.events.*; import flash.net.*; import flash.ui.*; import flash.system.*; import flash.external.*; public class SpilGame { private static const cookieName:String = "spilgames_language_v100"; private static const cookiePath:String = "/"; private static const cookieLanguageVar:String = "savedLang"; public static const LANGUAGE_CHANGED:String = "languageChanged"; public static const BRANDING_CHANGED:String = "brandingChanged"; private static var strings:Object = new Object(); public static var currentBranding:Brand; private static var contexMenuItem:ContextMenuItem; spil_internal static var gameName:String; spil_internal static var debugHostDomain:String = ""; private static var localDomains:Object = new Object(); spil_internal static var emailPage:String; private static var channelLock:Boolean = false; spil_internal static var debugEmbedDomain:String = ""; private static var eventDispatcher:EventDispatcher; private static var _init:Boolean = false; public static var currentLanguage:Language; spil_internal static var portalGroup:uint; private static var stage:Sprite; public static function getSpilCompanyLink():String{ var _local1:String; _local1 = "http://www.gameportal.net/"; _local1 = (_local1 + ("?utm_medium=brandedgames_" + (isExternal) ? "external" : "internal")); _local1 = (_local1 + ("&utm_campaign=" + gameName)); _local1 = (_local1 + ("&utm_source=" + Brand.stripSubDomain((embedDomain) ? embedDomain : hostingDomain))); _local1 = (_local1 + "&utm_content=Branding_Link"); return (_local1); } public static function getPromotionLink(_arg1:String="feature_promotion"):String{ var _local2:String; _local2 = (embedDomain) ? embedDomain : hostingDomain; return (currentBranding.getPromotionLink(gameName, emailPage, isExternal, _local2, _arg1)); } public static function traceAllBrands():void{ trace(outputAllBrands()); } public static function getString(_arg1:String):String{ var _local2:Object; _local2 = strings[_arg1]; if (_local2){ if (currentLanguage.textLanguage){ return (_local2[currentLanguage.textLanguage]); }; if (_local2[currentLanguage.name]){ return (_local2[currentLanguage.name]); }; return (_local2["en_us"]); //unresolved jump }; return (""); } public static function initialize(_arg1:String, _arg2:int, _arg3:String, _arg4:Sprite, _arg5:Boolean=false):void{ stage = _arg4; if (_init){ trace("ERROR: LocalisationManager already initialised"); return; }; _init = true; localDomains["localhost"] = true; localDomains["www8.agame.com"] = true; localDomains["gamedev.dev.spilgames.com"] = true; localDomains["stg.spel.nl"] = true; localDomains["stg.girlsgogames.nl"] = true; localDomains["stg.pl.spel.nl"] = true; localDomains["stg.pl.girlsgogames.nl"] = true; trace(localDomains["stg.girlsgogames.nl"]); Brandings.initialize(); Languages.initialize(); initContexMenu(_arg4); channelLock = _arg5; gameName = _arg1.replace(" ", "_"); portalGroup = _arg2; emailPage = _arg3; chooseLanguage(); chooseBranding(); if (portalGroup == PortalGroup.HYVES){ changeLanguage("nl"); }; } public static function get isExternal():Boolean{ return (((((!(Brandings.hasDomain(embedDomain))) && (!(localDomains[embedDomain])))) && (!(isStagingDomain)))); } private static function initContexMenu(_arg1:Sprite):void{ contexMenuItem = new ContextMenuItem(""); _arg1.contextMenu = new ContextMenu(); _arg1.contextMenu.customItems.push(contexMenuItem); contexMenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, contexMenuClicked); } private static function replaceFn():String{ var _local2:String; _local2 = SpilGame.getString(arguments[1]); if (((!(_local2)) || ((_local2 == "")))){ return ((("{" + arguments[1]) + "}")); }; return (_local2); } spil_internal static function get hostingDomain():String{ var _local1:LocalConnection; if (debugHostDomain != ""){ return (debugHostDomain); }; _local1 = new LocalConnection(); return (_local1.domain); } spil_internal static function chooseLanguage():void{ if (cookieLanguage != null){ currentLanguage = cookieLanguage; } else { if (isExternal){ currentLanguage = systemLanguage; } else { currentLanguage = portalLanguage; if (!currentLanguage){ currentLanguage = systemLanguage; }; }; }; if (!currentLanguage){ trace("Unable to determine language, using 'English US'"); currentLanguage = Languages.getLanguage("en_us"); }; TextFieldFit.embedFonts = currentLanguage.embedFonts; TextFieldFit.forceFont = currentLanguage.forceFont; dispatchEvent(new Event(LANGUAGE_CHANGED)); } private static function contexMenuClicked(_arg1:ContextMenuEvent):void{ navigateToURL(new URLRequest(getMoreGamesLink("Contex_Menu"))); } public static function initTextField(_arg1:TextField):void{ var _local2:TextFormat; trace(_arg1.text); _arg1.text = _arg1.text.replace(/{([^{}]*)}/g, replaceFn); trace(_arg1.text); _arg1.embedFonts = currentLanguage.embedFonts; if (currentLanguage.forceFont != ""){ _local2 = new TextFormat(); _local2.font = currentLanguage.forceFont; _arg1.setTextFormat(_local2); }; } public static function importXMLv2(_arg1:XML):void{ var _local2:XML; var _local3:Object; var _local4:XML; for each (_local2 in _arg1.children()) { _local3 = (strings[_local2.attribute("identifier")] = new Object()); for each (_local4 in _local2.children()) { if (_local4.children().length() > 0){ _local3[_local4.name()] = _local4.children()[0].toString(); } else { _local3[_local4.name()] = ""; }; }; }; } spil_internal static function changeLanguage(_arg1:String):void{ var _local2:Language; _local2 = Languages.getLanguage(_arg1); if (!_local2){ trace("ERROR: Supplied language string does not have a matching language"); } else { cookieLanguage = _local2; currentLanguage = _local2; }; TextFieldFit.embedFonts = currentLanguage.embedFonts; TextFieldFit.forceFont = currentLanguage.forceFont; chooseBranding(); dispatchEvent(new Event(LANGUAGE_CHANGED)); } public static function getSendToFriendLink():String{ return (currentBranding.getSendToFriendLink(gameName, emailPage, isExternal, embedDomain)); } spil_internal static function chooseBranding():void{ currentBranding = Brandings.getBrandByDomain(currentLanguage.portal_groups[portalGroup]); if (!(currentBranding is Brand)){ currentBranding = Brandings.getBrandByDomain("www.agame.com"); }; contexMenuItem.caption = ("More Games: " + currentBranding.domain); dispatchEvent(new Event(BRANDING_CHANGED)); } spil_internal static function get systemLanguage():Language{ return (Languages.getLanguage(Capabilities.language)); } spil_internal static function set cookieLanguage(_arg1:Language):void{ var _local2:SharedObject; _local2 = SharedObject.getLocal(cookieName, cookiePath); if (_arg1 == null){ _local2.data[cookieLanguageVar] = null; } else { _local2.data[cookieLanguageVar] = _arg1.name; }; _local2.flush(); } public static function importXML(_arg1:XML):void{ var _local2:XML; var _local3:Object; var _local4:XML; for each (_local2 in _arg1.children()) { _local3 = (strings[_local2.identifier] = new Object()); for each (_local4 in _local2.children()) { _local3[_local4.name()] = _local4.children()[0].toString(); }; }; } spil_internal static function dispatchEvent(_arg1:Event):void{ if (!eventDispatcher){ eventDispatcher = new EventDispatcher(); }; eventDispatcher.dispatchEvent(_arg1); } private static function getDomain(_arg1:String):String{ var _local2:String; var _local3:uint; if (_arg1.indexOf("file") == 0){ return ("offline_play"); }; _local2 = new String(); _local3 = 7; while (_local3 < _arg1.length) { if (_arg1.charAt(_local3) == "/"){ break; }; _local2 = (_local2 + _arg1.charAt(_local3)); _local3++; }; if (_local2 == "localhost"){ _local2 = "offline_play"; }; return (_local2); } public static function exportXML():XML{ var _local1:XML; _local1 = <spil_games/> ; _local1.appendChild(Brandings.exportXML()); _local1.appendChild(Languages.exportXML()); _local1.appendChild(PortalGroup.exportXML()); return (_local1); } public static function removeEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false):void{ if (!eventDispatcher){ eventDispatcher = new EventDispatcher(); }; eventDispatcher.removeEventListener(_arg1, _arg2, _arg3); } public static function outputAllBrands():String{ var _local1:Array; var _local2:String; var _local3:Brand; _local1 = Brandings.getBrandsArray(); _local2 = ""; for each (_local3 in _local1) { _local2 = (_local2 + (_local3.getSendToFriendLink(gameName, emailPage, isExternal, embedDomain) + "\n")); }; return (_local2); } public static function addEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false, _arg4:int=0, _arg5:Boolean=false):void{ if (!eventDispatcher){ eventDispatcher = new EventDispatcher(); }; eventDispatcher.addEventListener(_arg1, _arg2, _arg3, _arg4, _arg5); } public static function getMoreGamesLink(_arg1:String=""):String{ var _local2:String; _local2 = (embedDomain) ? embedDomain : hostingDomain; return (currentBranding.getMoreGamesLink(gameName, isExternal, _local2, _arg1)); } public static function get isStagingDomain():Boolean{ var _local1:String; _local1 = ("http://" + embedDomain); return ((_local1.indexOf("http://stg.") >= 0)); } spil_internal static function get cookieLanguage():Language{ var _local1:SharedObject; var _local2:String; _local1 = SharedObject.getLocal(cookieName, cookiePath); _local2 = String(_local1.data[cookieLanguageVar]); return (Languages.getLanguage(_local2)); } private static function get portalLanguage():Language{ var _local1:Brand; var _local2:String; var _local3:Language; if (isExternal){ return (null); }; if (!embedDomain){ return (null); }; _local1 = Brandings.getBrandByDomain(embedDomain); if (!_local1){ return (null); }; _local2 = _local1.preferedLanguage; if (!_local2){ return (null); }; _local3 = Languages.getLanguage(_local2); if (!_local3){ return (null); }; return (_local3); } spil_internal static function get embedDomain():String{ var loc:String; if (debugEmbedDomain != ""){ return (debugEmbedDomain); }; if (ExternalInterface.available){ try { loc = ExternalInterface.call("window.location.href.toString"); if (((!((loc == ""))) && (!((loc == null))))){ trace(("embed domain = " + getDomain(loc))); return (getDomain(loc)); }; } catch(e:SecurityError) { trace(("Security Error connecting to external interface, error = " + e)); } catch(e:Error) { trace(("Error connecting to external interface, error = " + e)); }; }; return (null); } } }//package spill.localisation
Section 33
//SpilGamesLink (spill.localisation.SpilGamesLink) package spill.localisation { import flash.display.*; import flash.events.*; import flash.net.*; public class SpilGamesLink extends SimpleButton { public function SpilGamesLink(){ addEventListener(MouseEvent.CLICK, buttonClicked); } private function buttonClicked(_arg1:MouseEvent):void{ navigateToURL(new URLRequest(SpilGame.getSpilCompanyLink()), "_blank"); } } }//package spill.localisation
Section 34
//TextFieldFit (spill.localisation.TextFieldFit) package spill.localisation { import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.filters.*; public class TextFieldFit extends MovieClip { protected var _text:String;// = "default" protected var _textSize:Number;// = 12 protected var _embedFonts:Boolean;// = true protected var _glowColor:uint;// = 0 private var h:Number; protected var _antiAliasType:String;// = "advanced" private var w:Number; protected var _useGlowFilter:Boolean;// = false protected var _hAlign:String;// = "left" protected var _textColor:uint;// = 0 protected var _glowStrength:Number;// = 5 protected var _glowBlur:Number;// = 3 private var field:TextField; protected var _gridFitType:String;// = "pixel" protected var _glowQuality:Number;// = 1 private var debugBounding:Sprite; protected var _disableWordwrap:Boolean;// = false protected var _multiline:Boolean;// = false protected var _font:String;// = "" protected var _underline:Boolean;// = false protected var _vAlign:String;// = "top" protected var _italic:Boolean;// = false protected var _bold:Boolean;// = false private var sizeChanged:Boolean;// = true private var embeddedFonts:Array; protected var _selectable:Boolean;// = false private var format:TextFormat; private var valid:Boolean;// = true private static const gutter:Number = 2; spil_internal static var embedFonts:Boolean = true; spil_internal static var forceAAType:String = null; spil_internal static var forceFont:String = null; public static var alwaysCheckWidth:Boolean = false; public function TextFieldFit(){ var _local1:Boolean; var _local2:Number; var _local3:Number; sizeChanged = true; valid = true; _text = "default"; _textColor = 0; _textSize = 12; _multiline = false; _disableWordwrap = false; _hAlign = "left"; _vAlign = "top"; _bold = false; _underline = false; _italic = false; _selectable = false; _font = ""; _embedFonts = true; _antiAliasType = "advanced"; _gridFitType = "pixel"; _useGlowFilter = false; _glowBlur = 3; _glowColor = 0; _glowStrength = 5; _glowQuality = 1; super(); _local1 = ((!((parent == null))) && ((getQualifiedClassName(parent) == "fl.livepreview::LivePreviewParent"))); _local2 = width; _local3 = height; if (numChildren > 0){ removeChildAt(0); }; if (!field){ field = new TextField(); addChild(field); }; field.border = false; field.background = false; field.type = TextFieldType.DYNAMIC; mouseEnabled = false; mouseChildren = false; format = new TextFormat(); embeddedFonts = Font.enumerateFonts(false); setSize(_local2, _local3); validate(); if (stage){ addEventListener(Event.RENDER, init); stage.invalidate(); }; init(); } private function resizeText(_arg1:Boolean=false):void{ if (!doesTextFit()){ format.size = Object((Number(format.size) - 1)); if (format.size <= 3){ trace("WARNING: Text resised to 3px, either an error occured or the text just wont fit"); return; }; field.setTextFormat(format); resizeText(true); } else { if (_arg1 == false){ while (doesTextFit()) { if (format.size <= textSize){ format.size = Object((Number(format.size) + 1)); field.setTextFormat(format); if (!doesTextFit()){ format.size = Object((Number(format.size) - 1)); field.setTextFormat(format); break; }; } else { break; }; }; }; }; } public function get italic():Boolean{ return (_italic); } public function get textColor():uint{ return (_textColor); } public function get vAlign():String{ return (_vAlign); } public function get useGlowFilter():Boolean{ return (_useGlowFilter); } public function get selectable():Boolean{ return (_selectable); } public function set italic(_arg1:Boolean):void{ _italic = _arg1; invalidate(); } public function set text(_arg1:String):void{ _text = _arg1; invalidate(); } public function set vAlign(_arg1:String):void{ _vAlign = _arg1; invalidate(); } public function get font():String{ return (_font); } public function set textColor(_arg1:uint):void{ _textColor = _arg1; invalidate(); } public function get antiAliasType():String{ return (_antiAliasType); } public function get bold():Boolean{ return (_bold); } public function set useGlowFilter(_arg1:Boolean):void{ _useGlowFilter = _arg1; invalidate(); } public function set font(_arg1:String):void{ _font = _arg1; invalidate(); } public function set selectable(_arg1:Boolean):void{ _selectable = _arg1; invalidate(); } public function get multiline():Boolean{ return (_multiline); } public function set disableWordwrap(_arg1:Boolean):void{ _disableWordwrap = _arg1; invalidate(); } public function get glowQuality():Number{ return (_glowQuality); } public function get embedFonts():Boolean{ return (_embedFonts); } public function get gridFitType():String{ return (_gridFitType); } public function get underline():Boolean{ return (_underline); } public function get textSize():Number{ return (_textSize); } public function set antiAliasType(_arg1:String):void{ _antiAliasType = _arg1; invalidate(); } protected function updateProperties():void{ var _local1:Boolean; var _local2:Font; field.text = _text; field.multiline = ((((_text.indexOf(" ") < 0)) && ((_text.length < 14)))) ? false : _multiline; field.wordWrap = ((field.multiline) && (!(_disableWordwrap))); field.selectable = _selectable; field.antiAliasType = (forceAAType) ? forceAAType : _antiAliasType; field.gridFitType = _gridFitType; embeddedFonts = Font.enumerateFonts(false); if (((((_embedFonts) && (!((_font == ""))))) && (TextFieldFit.embedFonts))){ _local1 = false; for each (_local2 in embeddedFonts) { if (_font == _local2.fontName){ _local1 = true; break; }; }; field.embedFonts = _local1; if (!_local1){ trace(((("WARNING: Embedded font '" + _font) + "' not found, disabling embedding of fonts, text = ") + _text)); } else { trace((("Found Embedded font '" + _font) + "' using font")); }; } else { field.embedFonts = false; }; if (TextFieldFit.forceFont){ format.font = TextFieldFit.forceFont; } else { format.font = _font; }; if (sizeChanged){ format.size = _textSize; }; format.color = _textColor; format.align = _hAlign; format.bold = _bold; format.italic = _italic; format.underline = _underline; format.leftMargin = 0; format.rightMargin = 0; field.setTextFormat(format); if (_useGlowFilter){ filters = [new GlowFilter(_glowColor, 1, _glowBlur, _glowBlur, _glowStrength, _glowQuality)]; } else { filters = []; }; } private function doesTextFit():Boolean{ if (((((field.textHeight + (gutter * 2)) > h)) || (((((field.textWidth + (gutter * 2)) > w)) && (((!(field.multiline)) || (alwaysCheckWidth))))))){ return (false); }; return (true); } public function get glowStrength():Number{ return (_glowStrength); } public function set hAlign(_arg1:String):void{ _hAlign = _arg1; invalidate(); } private function init(_arg1:Event=null):void{ removeEventListener(Event.RENDER, init); updateProperties(); layoutText(); } public function set bold(_arg1:Boolean):void{ _bold = _arg1; invalidate(); } private function validate(_arg1:Event=null):void{ updateProperties(); layoutText(); removeEventListener(Event.ENTER_FRAME, validate); valid = true; } public function get text():String{ return (_text); } public function set glowBlur(_arg1:Number):void{ _glowBlur = _arg1; invalidate(); } private function invalidate():void{ if (valid){ addEventListener(Event.ENTER_FRAME, validate); if (stage){ stage.invalidate(); }; valid = false; }; } public function set embedFonts(_arg1:Boolean):void{ _embedFonts = _arg1; invalidate(); } public function set multiline(_arg1:Boolean):void{ _multiline = _arg1; invalidate(); } public function get disableWordwrap():Boolean{ return (_disableWordwrap); } public function set glowQuality(_arg1:Number):void{ _glowQuality = _arg1; invalidate(); } private function layoutText():void{ resizeText(); field.height = (field.textHeight + (gutter * 2)); if (vAlign == "top"){ field.y = 0; } else { if (vAlign == "middle"){ field.y = ((h - field.height) / 2); } else { if (vAlign == "bottom"){ field.y = (h - field.height); }; }; }; } public function get hAlign():String{ return (_hAlign); } public function setSize(_arg1:Number, _arg2:Number):void{ w = _arg1; h = _arg2; scaleX = (scaleY = 1); field.width = w; field.height = h; invalidate(); } public function set gridFitType(_arg1:String):void{ _gridFitType = _arg1; invalidate(); } public function set underline(_arg1:Boolean):void{ _underline = _arg1; invalidate(); } public function get glowBlur():Number{ return (_glowBlur); } public function set textSize(_arg1:Number):void{ _textSize = _arg1; sizeChanged = true; invalidate(); } public function set glowColor(_arg1:uint):void{ _glowColor = _arg1; invalidate(); } public function get textField():TextField{ return (field); } public function get glowColor():uint{ return (_glowColor); } public function set glowStrength(_arg1:Number):void{ _glowStrength = _arg1; invalidate(); } } }//package spill.localisation
Section 35
//1_son_boing_325 (StarSplash_OML_fla.1_son_boing_325) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_boing_325 extends MovieClip { public function 1_son_boing_325(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 36
//1_son_boost_324 (StarSplash_OML_fla.1_son_boost_324) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_boost_324 extends MovieClip { public function 1_son_boost_324(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 37
//1_son_etoile_323 (StarSplash_OML_fla.1_son_etoile_323) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_etoile_323 extends MovieClip { public function 1_son_etoile_323(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 38
//1_son_gameOver_334 (StarSplash_OML_fla.1_son_gameOver_334) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_gameOver_334 extends MovieClip { public function 1_son_gameOver_334(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 39
//1_son_needPractice_333 (StarSplash_OML_fla.1_son_needPractice_333) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_needPractice_333 extends MovieClip { public function 1_son_needPractice_333(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 40
//1_son_passed_330 (StarSplash_OML_fla.1_son_passed_330) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_passed_330 extends MovieClip { public function 1_son_passed_330(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 41
//1_son_perfect_331 (StarSplash_OML_fla.1_son_perfect_331) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_perfect_331 extends MovieClip { public function 1_son_perfect_331(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 42
//1_son_sonar_326 (StarSplash_OML_fla.1_son_sonar_326) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_sonar_326 extends MovieClip { public function 1_son_sonar_326(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 43
//1_son_splash_328 (StarSplash_OML_fla.1_son_splash_328) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_splash_328 extends MovieClip { public function 1_son_splash_328(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4); } function frame3(){ gotoAndStop(1); } function frame1(){ stop(); } function frame4(){ gotoAndStop(1); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 44
//1_son_splashOut_329 (StarSplash_OML_fla.1_son_splashOut_329) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_splashOut_329 extends MovieClip { public function 1_son_splashOut_329(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 45
//1_son_triple_327 (StarSplash_OML_fla.1_son_triple_327) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_triple_327 extends MovieClip { public function 1_son_triple_327(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 46
//1_son_wellDone_332 (StarSplash_OML_fla.1_son_wellDone_332) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_wellDone_332 extends MovieClip { public function 1_son_wellDone_332(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 47
//1_son_zonePassed_335 (StarSplash_OML_fla.1_son_zonePassed_335) package StarSplash_OML_fla { import flash.display.*; public dynamic class 1_son_zonePassed_335 extends MovieClip { public function 1_son_zonePassed_335(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 48
//1_tableau_x1_156 (StarSplash_OML_fla.1_tableau_x1_156) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau_x1_156 extends MovieClip { public var spawn:uint; public function 1_tableau_x1_156(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneX", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("zigzag1", 700, 3); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 6){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 7){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 49
//1_tableau_x2_157 (StarSplash_OML_fla.1_tableau_x2_157) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau_x2_157 extends MovieClip { public var spawn:uint; public function 1_tableau_x2_157(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("zigzag1", 700, 4); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("zigzag1", 700, 4); MovieClip(parent).spawnForme("espace", 200, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 200, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("ligneX", 700, 330); MovieClip(parent).spawnForme("espace", 200, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("zigzag1", 700, 3); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 8){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 9){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 50
//1_tableau_x3_158 (StarSplash_OML_fla.1_tableau_x3_158) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau_x3_158 extends MovieClip { public var spawn:uint; public function 1_tableau_x3_158(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("ligneX", 700, 330); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("zigzag2", 700, 5); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("diM2", 700, 230); MovieClip(parent).spawnForme("ligneX", (MovieClip(parent).newHx + 100), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 6){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 7){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 51
//1_tableau_x3b_159 (StarSplash_OML_fla.1_tableau_x3b_159) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau_x3b_159 extends MovieClip { public var spawn:uint; public function 1_tableau_x3b_159(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneX", 700, 280); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("zigzag1", 700, 5); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 25), (MovieClip(parent).newHy + 65)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 8){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 9){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 52
//1_tableau_x4b_160 (StarSplash_OML_fla.1_tableau_x4b_160) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau_x4b_160 extends MovieClip { public var spawn:uint; public function 1_tableau_x4b_160(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("sautM45", 700, 230); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("zigzag1", 700, 6); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("diM2", 700, 230); MovieClip(parent).spawnForme("ligneX", (MovieClip(parent).newHx + 50), MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 25), (MovieClip(parent).newHy + 65)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("sautM45", 700, 230); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 300, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 9){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 10){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 53
//1_tableau1_136 (StarSplash_OML_fla.1_tableau1_136) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau1_136 extends MovieClip { public var spawn:uint; public function 1_tableau1_136(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneXM1", 700, 280); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("ligneXM1", 700, 280); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 6){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 7){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 54
//1_tableau10_145 (StarSplash_OML_fla.1_tableau10_145) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau10_145 extends MovieClip { public var spawn:uint; public function 1_tableau10_145(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("eTrans", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("eTrans", 700, 130); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("eTrans", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("eTrans", 700, 80); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 65)); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("eTrans", 700, -20); MovieClip(parent).spawnForme("eTrans", 800, 330); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 9){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 10){ MovieClip(parent).spawnForme("eTrans", 700, -20); MovieClip(parent).spawnForme("eTrans", 800, 330); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 11){ MovieClip(parent).spawnForme("eTrans", 1200, 130); MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 12){ MovieClip(parent).spawnForme("eTrans", 700, -20); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 13){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 14){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 55
//1_tableau11_146 (StarSplash_OML_fla.1_tableau11_146) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau11_146 extends MovieClip { public var spawn:uint; public function 1_tableau11_146(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("diM3", 700, 230); MovieClip(parent).spawnForme("ligneXM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("diM3", 700, 230); MovieClip(parent).spawnForme("ligneXM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnage("meduse", (MovieClip(parent).newHx + 50), 220); MovieClip(parent).spawnForme("medM", (MovieClip(parent).newHx + 50), 180); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("ligneX", 700, 180); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 5){ MovieClip(parent).spawnage("meduse", 700, 220); MovieClip(parent).spawnForme("medMM10", 700, 180); MovieClip(parent).spawnForme("sautM5", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("eTrans", 700, 80); MovieClip(parent).spawnForme("eTrans", 800, 80); MovieClip(parent).spawnForme("eTrans", 900, 80); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 7){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("eTrans", 1150, -90); MovieClip(parent).spawnForme("eTrans", 1250, -90); MovieClip(parent).spawnForme("eTrans", 1350, -90); MovieClip(parent).spawnForme("sautM5", 700, 80); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, 80); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 65)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 9){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 10){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 11){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 56
//1_tableau12_147 (StarSplash_OML_fla.1_tableau12_147) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau12_147 extends MovieClip { public var spawn:uint; public function 1_tableau12_147(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneXM1", 700, 280); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", (MovieClip(parent).newHx + 50), MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("eTrans", 1250, 180); MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("eTrans", 1050, 40); MovieClip(parent).spawnForme("eTrans", 1150, 40); MovieClip(parent).spawnForme("eTrans", 1250, 40); MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, 230); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("sautM45", 700, 230); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 5, 330); } else { if (spawn == 6){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 7){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("ligneXM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("ligneXM1", 700, 380); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 9){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 10){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 57
//1_tableau13_148 (StarSplash_OML_fla.1_tableau13_148) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau13_148 extends MovieClip { public var spawn:uint; public function 1_tableau13_148(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneX", 700, 280); MovieClip(parent).spawnForme("espace", 150, 330); }; if (spawn == 2){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 3){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 4){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 350, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("ligneX", 700, 280); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 350, 330); } else { if (spawn == 7){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 5, 330); } else { if (spawn == 8){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 5, 330); } else { if (spawn == 9){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 10){ MovieClip(parent).spawnForme("eTrans", 700, -220); MovieClip(parent).spawnForme("eTrans", 800, -220); MovieClip(parent).spawnForme("eTrans", 900, -220); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 11){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 12){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 58
//1_tableau14_149 (StarSplash_OML_fla.1_tableau14_149) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau14_149 extends MovieClip { public var spawn:uint; public function 1_tableau14_149(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("diM3", 700, 230); MovieClip(parent).spawnForme("ligneX", (MovieClip(parent).newHx + 50), MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 150, 330); }; if (spawn == 2){ MovieClip(parent).spawnForme("eTrans", 700, -170); MovieClip(parent).spawnForme("eTrans", 800, -170); MovieClip(parent).spawnForme("eTrans", 900, -170); MovieClip(parent).spawnForme("zigzag2", 700, 4); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("eTrans", 1300, 130); MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 350, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneXM1", (MovieClip(parent).newHx - 50), MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 5){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medMM10", 750, 180); MovieClip(parent).spawnForme("sautM5", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("eTrans", 700, -470); MovieClip(parent).spawnForme("eTrans", 800, -470); MovieClip(parent).spawnForme("eTrans", 900, -470); MovieClip(parent).spawnForme("eTrans", 700, 130); MovieClip(parent).spawnForme("eTrans", 800, 130); MovieClip(parent).spawnForme("eTrans", 900, 130); MovieClip(parent).spawnForme("zigzag2", 700, 4); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("sautM45", 700, 230); MovieClip(parent).spawnForme("feuille", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("feuille", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 9){ MovieClip(parent).spawnForme("eTrans", 700, -70); MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 10){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medMM10", 750, 180); MovieClip(parent).spawnForme("diM3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("roundDive", (MovieClip(parent).newHx + 50), MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 11){ MovieClip(parent).spawnForme("eTrans", 700, 130); MovieClip(parent).spawnForme("eTrans", 800, 130); MovieClip(parent).spawnForme("eTrans", 900, 130); MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 12){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 13){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 59
//1_tableau15_150 (StarSplash_OML_fla.1_tableau15_150) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau15_150 extends MovieClip { public var spawn:uint; public function 1_tableau15_150(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("eTrans", 700, 330); MovieClip(parent).spawnForme("eTrans", 800, 330); MovieClip(parent).spawnForme("eTrans", 900, 330); MovieClip(parent).spawnForme("espace", 150, 330); }; if (spawn == 2){ MovieClip(parent).spawnForme("eTrans", 1100, 80); MovieClip(parent).spawnForme("eTrans", 1200, 80); MovieClip(parent).spawnForme("eTrans", 1300, 80); MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 300, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("eTrans", 700, 330); MovieClip(parent).spawnForme("eTrans", 800, 330); MovieClip(parent).spawnForme("eTrans", 900, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("eTrans", 700, -20); MovieClip(parent).spawnForme("eTrans", 800, -20); MovieClip(parent).spawnForme("eTrans", 900, -20); MovieClip(parent).spawnForme("espace", 1, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("eTrans", 700, 330); MovieClip(parent).spawnForme("eTrans", 800, 330); MovieClip(parent).spawnForme("eTrans", 900, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 7){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("eTrans", (MovieClip(parent).newHx + 100), -270); MovieClip(parent).spawnForme("eTrans", (MovieClip(parent).newHx + 100), -270); MovieClip(parent).spawnForme("eTrans", (MovieClip(parent).newHx + 100), -270); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 8){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 9){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 60
//1_tableau16_151 (StarSplash_OML_fla.1_tableau16_151) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau16_151 extends MovieClip { public var spawn:uint; public function 1_tableau16_151(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("zigzag1", 700, 4); MovieClip(parent).spawnForme("espace", 150, 330); }; if (spawn == 2){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("zigzag2", 700, 4); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 6){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("eTrans", 750, -20); MovieClip(parent).spawnForme("eTrans", 850, -20); MovieClip(parent).spawnForme("eTrans", 950, -20); MovieClip(parent).spawnForme("ligneX", 700, 180); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("ligneX", 700, 280); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 9){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, 230); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 10){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 11){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 12){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 61
//1_tableau17_152 (StarSplash_OML_fla.1_tableau17_152) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau17_152 extends MovieClip { public var spawn:uint; public function 1_tableau17_152(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ var _local1:int; spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("diM3", 700, 230); MovieClip(parent).spawnForme("ligneX", (MovieClip(parent).newHx + 50), MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 150, 330); }; if (spawn == 2){ MovieClip(parent).spawnForme("eTrans", 700, -170); MovieClip(parent).spawnForme("eTrans", 800, -170); MovieClip(parent).spawnForme("eTrans", 900, -170); MovieClip(parent).spawnForme("zigzag2", 700, 4); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("eTrans", 1750, -470); MovieClip(parent).spawnForme("eTrans", 1850, -470); MovieClip(parent).spawnForme("eTrans", 1950, -470); MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("feuille", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 4){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medMM10", 750, 180); _local1 = MovieClip(parent).newHy; MovieClip(parent).spawnForme("sautM5", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, _local1); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("eTrans", 700, 130); MovieClip(parent).spawnForme("eTrans", 800, 130); MovieClip(parent).spawnForme("eTrans", 900, 130); MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("sautM45", 700, 230); MovieClip(parent).spawnForme("feuille", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 8){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 9){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 62
//1_tableau18_153 (StarSplash_OML_fla.1_tableau18_153) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau18_153 extends MovieClip { public var spawn:uint; public function 1_tableau18_153(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("eTrans", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); }; if (spawn == 2){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("eTrans", 700, 80); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("eTrans", 700, -220); MovieClip(parent).spawnForme("ligneX", 700, 130); MovieClip(parent).spawnForme("espace", 5, 330); } else { if (spawn == 7){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("ligneXM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("eTrans", 700, -220); MovieClip(parent).spawnForme("eTrans", 800, -220); MovieClip(parent).spawnForme("eTrans", 900, -220); MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 9){ MovieClip(parent).spawnForme("diM3", 700, 230); MovieClip(parent).spawnForme("ligneXM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 10){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 11){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 12){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 63
//1_tableau19_154 (StarSplash_OML_fla.1_tableau19_154) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau19_154 extends MovieClip { public var spawn:uint; public function 1_tableau19_154(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("eTrans", 700, 330); MovieClip(parent).spawnForme("eTrans", 800, 330); MovieClip(parent).spawnForme("eTrans", 900, 330); MovieClip(parent).spawnForme("espace", 150, 330); }; if (spawn == 2){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, 230); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("eTrans", 800, 30); MovieClip(parent).spawnForme("eTrans", 900, 30); MovieClip(parent).spawnForme("eTrans", 1000, 30); MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 7){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 8){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 9){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 10){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 64
//1_tableau2_137 (StarSplash_OML_fla.1_tableau2_137) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau2_137 extends MovieClip { public var spawn:uint; public function 1_tableau2_137(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneX", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("ligneXM1", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("ligneXM1", 700, 280); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 8){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 9){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 65
//1_tableau20_155 (StarSplash_OML_fla.1_tableau20_155) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau20_155 extends MovieClip { public var spawn:uint; public function 1_tableau20_155(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ var _local1:int; spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneX", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); }; if (spawn == 2){ MovieClip(parent).spawnForme("eTrans", 1500, -20); MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 350, 330); } else { if (spawn == 3){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("ligneXM1", MovieClip(parent).newHx, MovieClip(parent).newHy); _local1 = MovieClip(parent).newHy; MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, _local1); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("sautM45", 700, 230); MovieClip(parent).spawnForme("feuille", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 75, 330); } else { if (spawn == 6){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 125, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("saut", 700, 130); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("eTrans", 700, -20); MovieClip(parent).spawnForme("eTrans", 800, -20); MovieClip(parent).spawnForme("eTrans", 900, -20); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 9){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 10){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 66
//1_tableau3_143 (StarSplash_OML_fla.1_tableau3_143) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau3_143 extends MovieClip { public var spawn:uint; public function 1_tableau3_143(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("eTrans", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("eTrans", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("eTrans", 700, 80); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("eTrans", 700, 130); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 9){ MovieClip(parent).spawnForme("eTrans", 700, 80); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 10){ MovieClip(parent).spawnForme("eTrans", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 11){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 12){ MovieClip(parent).spawnForme("eTrans", 700, 130); MovieClip(parent).spawnForme("eTrans", 800, 130); MovieClip(parent).spawnForme("eTrans", 900, 130); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 13){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 14){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 67
//1_tableau4_138 (StarSplash_OML_fla.1_tableau4_138) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau4_138 extends MovieClip { public var spawn:uint; public function 1_tableau4_138(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneXM1", 700, 280); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 25), (MovieClip(parent).newHy + 65)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 25), (MovieClip(parent).newHy + 65)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 7){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 8){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 68
//1_tableau5_139 (StarSplash_OML_fla.1_tableau5_139) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau5_139 extends MovieClip { public var spawn:uint; public function 1_tableau5_139(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneXM1", 700, 280); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("sautM45", 700, 230); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("ligneX", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("sautM45", 700, 230); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 7){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 8){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 69
//1_tableau6_141 (StarSplash_OML_fla.1_tableau6_141) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau6_141 extends MovieClip { public var spawn:uint; public function 1_tableau6_141(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneX", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("ligneX", 700, 280); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 250, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("ligneX", 700, 330); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 5, 330); } else { if (spawn == 7){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 8){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 9){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 10){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 70
//1_tableau7_142 (StarSplash_OML_fla.1_tableau7_142) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau7_142 extends MovieClip { public var spawn:uint; public function 1_tableau7_142(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("ligneX", 700, 280); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("zigzag2", 700, 5); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("sautM45", 700, 230); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("zigzag1", 700, 6); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 25), (MovieClip(parent).newHy + 65)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("ligneXM1", 700, 380); MovieClip(parent).spawnForme("espace", 300, 330); } else { if (spawn == 9){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 10){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 11){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 12){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 71
//1_tableau8_140 (StarSplash_OML_fla.1_tableau8_140) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau8_140 extends MovieClip { public var spawn:uint; public function 1_tableau8_140(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("espace", 300, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("zigzag1", 700, 4); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 5, 330); } else { if (spawn == 5){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("ligneXM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 350, 330); } else { if (spawn == 6){ MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnForme("ligneXM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 8){ MovieClip(parent).spawnForme("sautM45", 700, 230); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 9){ MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 10){ MovieClip(parent).spawnForme("medM", 750, 180); MovieClip(parent).spawnage("meduse", 750, 220); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 11){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 12){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 72
//1_tableau9_144 (StarSplash_OML_fla.1_tableau9_144) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class 1_tableau9_144 extends MovieClip { public var spawn:uint; public function 1_tableau9_144(){ addFrameScript(0, frame1, 1, frame2, 29, frame30); } public function nextSpawn():void{ spawn = (spawn + 1); if (spawn == 1){ MovieClip(parent).spawnForme("zigzag1", 700, 3); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 2){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 3){ MovieClip(parent).spawnForme("saut", 700, 230); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 4){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM1", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", MovieClip(parent).newHx, (MovieClip(parent).newHy + 65)); MovieClip(parent).spawnForme("espace", 100, 330); } else { if (spawn == 5){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 150, 330); } else { if (spawn == 6){ MovieClip(parent).spawnForme("sautM5", 700, 230); MovieClip(parent).spawnForme("saut3", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("sautM145", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneX", MovieClip(parent).newHx, MovieClip(parent).newHy); MovieClip(parent).spawnForme("ligneY", (MovieClip(parent).newHx + 50), (MovieClip(parent).newHy + 50)); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 7){ MovieClip(parent).spawnForme("ligneX", 700, 380); MovieClip(parent).spawnForme("espace", 50, 330); } else { if (spawn == 8){ MovieClip(parent).spawnage("bouée", 750, 260); MovieClip(parent).spawnForme("espace", 675, 330); } else { if (spawn == 9){ MovieClip(parent).finTableau(); trace(this.currentFrame); stop(); }; }; }; }; }; }; }; }; }; } function frame1(){ stop(); } function frame2(){ if (this.currentFrame == 2){ spawn = 0; }; } function frame30(){ nextSpawn(); } } }//package StarSplash_OML_fla
Section 73
//bg_clip_105 (StarSplash_OML_fla.bg_clip_105) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class bg_clip_105 extends MovieClip { public var bg3:MovieClip; public var bg2:MovieClip; public var bg1:MovieClip; public function bg_clip_105(){ addFrameScript(0, frame1, 2, frame3, 4, frame5); } function frame3(){ stop(); MovieClip(parent).distanceBg1 = 0; MovieClip(parent).distanceBg2 = 0; MovieClip(parent).distanceBg3 = 0; } function frame1(){ stop(); MovieClip(parent).distanceBg1 = 0; MovieClip(parent).distanceBg2 = 0; MovieClip(parent).distanceBg3 = 0; } function frame5(){ stop(); MovieClip(parent).distanceBg1 = 0; MovieClip(parent).distanceBg2 = 0; MovieClip(parent).distanceBg3 = 0; } } }//package StarSplash_OML_fla
Section 74
//bg_nuages_lv1_22 (StarSplash_OML_fla.bg_nuages_lv1_22) package StarSplash_OML_fla { import flash.display.*; public dynamic class bg_nuages_lv1_22 extends MovieClip { public var i:uint; public var bg2:MovieClip; public var bg1:MovieClip; public function bg_nuages_lv1_22(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ i = 0; gotoAndPlay(1); } function frame1(){ stop(); i = Math.ceil((Math.random() * 2)); gotoAndStop(i); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 75
//bg_nuages_lv2_112 (StarSplash_OML_fla.bg_nuages_lv2_112) package StarSplash_OML_fla { import flash.display.*; public dynamic class bg_nuages_lv2_112 extends MovieClip { public var i:uint; public var bg3:MovieClip; public var bg2:MovieClip; public var bg1:MovieClip; public function bg_nuages_lv2_112(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4); } function frame3(){ stop(); } function frame1(){ stop(); i = Math.ceil((Math.random() * 3)); gotoAndStop(i); } function frame4(){ i = 0; gotoAndPlay(1); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 76
//bg_nuages_lv2a_c_113 (StarSplash_OML_fla.bg_nuages_lv2a_c_113) package StarSplash_OML_fla { import flash.display.*; public dynamic class bg_nuages_lv2a_c_113 extends MovieClip { public var bg1b:MovieClip; public var bg1a:MovieClip; } }//package StarSplash_OML_fla
Section 77
//bg_nuages_lv2c_c_117 (StarSplash_OML_fla.bg_nuages_lv2c_c_117) package StarSplash_OML_fla { import flash.display.*; public dynamic class bg_nuages_lv2c_c_117 extends MovieClip { public var bg3a:MovieClip; public var bg3b:MovieClip; } }//package StarSplash_OML_fla
Section 78
//bg2_lv1_106 (StarSplash_OML_fla.bg2_lv1_106) package StarSplash_OML_fla { import flash.display.*; public dynamic class bg2_lv1_106 extends MovieClip { public var i:uint; public var bg2:MovieClip; public var bg1:MovieClip; public function bg2_lv1_106(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ i = 0; gotoAndPlay(1); } function frame1(){ stop(); i = Math.ceil((Math.random() * 2)); gotoAndStop(i); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 79
//bg2_lv2_118 (StarSplash_OML_fla.bg2_lv2_118) package StarSplash_OML_fla { import flash.display.*; public dynamic class bg2_lv2_118 extends MovieClip { public var i:uint; public var bg2:MovieClip; public var bg1:MovieClip; public function bg2_lv2_118(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ i = 0; gotoAndPlay(1); } function frame1(){ stop(); i = Math.ceil((Math.random() * 2)); gotoAndStop(i); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 80
//bg2_lv3_127 (StarSplash_OML_fla.bg2_lv3_127) package StarSplash_OML_fla { import flash.display.*; public dynamic class bg2_lv3_127 extends MovieClip { public var i:uint; public var bg2:MovieClip; public var bg1:MovieClip; public function bg2_lv3_127(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ i = 0; gotoAndPlay(1); } function frame1(){ stop(); i = Math.ceil((Math.random() * 2)); gotoAndStop(i); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 81
//bg3_lv1_109 (StarSplash_OML_fla.bg3_lv1_109) package StarSplash_OML_fla { import flash.display.*; public dynamic class bg3_lv1_109 extends MovieClip { public var i:uint; public var bg2:MovieClip; public var bg1:MovieClip; public function bg3_lv1_109(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 54, frame55); } function frame3(){ i = 0; play(); } function frame1(){ stop(); i = Math.ceil((Math.random() * 2)); gotoAndStop(i); } function frame2(){ stop(); } function frame55(){ gotoAndPlay(1); } } }//package StarSplash_OML_fla
Section 82
//bg3_lv2_123 (StarSplash_OML_fla.bg3_lv2_123) package StarSplash_OML_fla { import flash.display.*; public dynamic class bg3_lv2_123 extends MovieClip { public var i:uint; public var bg3:MovieClip; public var bg2:MovieClip; public var bg1:MovieClip; public function bg3_lv2_123(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 55, frame56); } function frame3(){ stop(); } function frame1(){ stop(); i = Math.ceil((Math.random() * 3)); gotoAndStop(i); } function frame4(){ i = 0; play(); } function frame2(){ stop(); } function frame56(){ gotoAndPlay(1); } } }//package StarSplash_OML_fla
Section 83
//bg3_lv3_130 (StarSplash_OML_fla.bg3_lv3_130) package StarSplash_OML_fla { import flash.display.*; public dynamic class bg3_lv3_130 extends MovieClip { public var i:uint; public var bg3:MovieClip; public var bg4:MovieClip; public var bg2:MovieClip; public var bg1:MovieClip; public function bg3_lv3_130(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 55, frame56); } function frame3(){ stop(); } function frame1(){ stop(); i = Math.ceil((Math.random() * 4)); gotoAndStop(i); } function frame4(){ stop(); } function frame5(){ i = 0; play(); } function frame2(){ stop(); } function frame56(){ gotoAndPlay(1); } } }//package StarSplash_OML_fla
Section 84
//bouee_corde_315 (StarSplash_OML_fla.bouee_corde_315) package StarSplash_OML_fla { import flash.display.*; public dynamic class bouee_corde_315 extends MovieClip { public var coquillages:MovieClip; } }//package StarSplash_OML_fla
Section 85
//bouee_drapeau_318 (StarSplash_OML_fla.bouee_drapeau_318) package StarSplash_OML_fla { import flash.display.*; public dynamic class bouee_drapeau_318 extends MovieClip { public var g:MovieClip; } }//package StarSplash_OML_fla
Section 86
//bouee_drapeau_level_319 (StarSplash_OML_fla.bouee_drapeau_level_319) package StarSplash_OML_fla { import flash.display.*; import flash.text.*; public dynamic class bouee_drapeau_level_319 extends MovieClip { public var lv:TextField; } }//package StarSplash_OML_fla
Section 87
//bouee_g_314 (StarSplash_OML_fla.bouee_g_314) package StarSplash_OML_fla { import flash.display.*; public dynamic class bouee_g_314 extends MovieClip { public var corde:MovieClip; public var tete:MovieClip; } }//package StarSplash_OML_fla
Section 88
//bouee_tete_317 (StarSplash_OML_fla.bouee_tete_317) package StarSplash_OML_fla { import flash.display.*; import flash.text.*; public dynamic class bouee_tete_317 extends MovieClip { public var drapeau:MovieClip; public var passe:TextField; } }//package StarSplash_OML_fla
Section 89
//btn_music_61 (StarSplash_OML_fla.btn_music_61) package StarSplash_OML_fla { import flash.display.*; public dynamic class btn_music_61 extends MovieClip { public var texte:MovieClip; public var hit:MovieClip; public function btn_music_61(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ this.texte.visible = false; } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; this.texte.visible = false; } function frame2(){ this.texte.visible = true; } } }//package StarSplash_OML_fla
Section 90
//btn_music_texte_62 (StarSplash_OML_fla.btn_music_texte_62) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class btn_music_texte_62 extends MovieClip { public var __id1_:LocalizedTextField; public function btn_music_texte_62(){ __setProp___id1__btn_music_texte_Layer1_1(); } function __setProp___id1__btn_music_texte_Layer1_1(){ try { __id1_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id1_.text = "{MuteMusic}"; __id1_.textColor = 0xFFFFFF; __id1_.textSize = 8; __id1_.bold = false; __id1_.disableWordwrap = false; __id1_.embedFonts = true; __id1_.font = "Arial"; __id1_.hAlign = "center"; __id1_.multiline = false; __id1_.vAlign = "middle"; __id1_.antiAliasType = "advanced"; __id1_.glowBlur = 3; __id1_.glowColor = 0; __id1_.useGlowFilter = false; __id1_.glowQuality = 1; __id1_.glowStrength = 5; __id1_.gridFitType = "pixel"; __id1_.italic = false; __id1_.selectable = false; __id1_.underline = false; try { __id1_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 91
//btn_sons_66 (StarSplash_OML_fla.btn_sons_66) package StarSplash_OML_fla { import flash.display.*; public dynamic class btn_sons_66 extends MovieClip { public var texte:MovieClip; public var hit:MovieClip; public function btn_sons_66(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ this.texte.visible = false; } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; this.texte.visible = false; } function frame2(){ this.texte.visible = true; } } }//package StarSplash_OML_fla
Section 92
//btn_sons_texte_67 (StarSplash_OML_fla.btn_sons_texte_67) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class btn_sons_texte_67 extends MovieClip { public var t1:LocalizedTextField; public function btn_sons_texte_67(){ __setProp_t1_btn_sons_texte_Layer1_1(); } function __setProp_t1_btn_sons_texte_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{MuteSounds}"; t1.textColor = 0xFFFFFF; t1.textSize = 8; t1.bold = false; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Arial"; t1.hAlign = "center"; t1.multiline = false; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 93
//bulle_296 (StarSplash_OML_fla.bulle_296) package StarSplash_OML_fla { import flash.display.*; public dynamic class bulle_296 extends MovieClip { public function bulle_296(){ addFrameScript(20, frame21); } function frame21(){ stop(); } } }//package StarSplash_OML_fla
Section 94
//bulle_c_295 (StarSplash_OML_fla.bulle_c_295) package StarSplash_OML_fla { import flash.display.*; public dynamic class bulle_c_295 extends MovieClip { public var b2:MovieClip; public var b4:MovieClip; public var b5:MovieClip; public var b6:MovieClip; public var b7:MovieClip; public var b1:MovieClip; public var b3:MovieClip; public function bulle_c_295(){ addFrameScript(19, frame20); } function frame20(){ stop(); } } }//package StarSplash_OML_fla
Section 95
//ciel_104 (StarSplash_OML_fla.ciel_104) package StarSplash_OML_fla { import flash.display.*; public dynamic class ciel_104 extends MovieClip { public function ciel_104(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 96
//ciel_fin_89 (StarSplash_OML_fla.ciel_fin_89) package StarSplash_OML_fla { import flash.display.*; public dynamic class ciel_fin_89 extends MovieClip { public function ciel_fin_89(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 97
//congratulations_clip_97 (StarSplash_OML_fla.congratulations_clip_97) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class congratulations_clip_97 extends MovieClip { public function congratulations_clip_97(){ addFrameScript(0, frame1, 159, frame160); } function frame160(){ stop(); MovieClip(parent.parent).fondu.nextPlace = "result"; MovieClip(parent.parent).fondu.nextScene1 = "Menu"; MovieClip(parent.parent).fondu.gotoAndPlay("fadeOut"); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 98
//congratulations_texte_98 (StarSplash_OML_fla.congratulations_texte_98) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class congratulations_texte_98 extends MovieClip { public function congratulations_texte_98(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12); } function frame10(){ stop(); } function frame12(){ stop(); } function frame3(){ stop(); } function frame6(){ stop(); } function frame7(){ stop(); } function frame1(){ stop(); if ((((MovieClip(parent.parent.parent).quelleLangue() == "pt")) || ((MovieClip(parent.parent.parent).quelleLangue() == "br")))){ this.gotoAndStop("pt"); } else { if ((((MovieClip(parent.parent.parent).quelleLangue() == "es_mx")) || ((MovieClip(parent.parent.parent).quelleLangue() == "es_ar")))){ this.gotoAndStop("es2"); } else { if ((((((((((((MovieClip(parent.parent.parent).quelleLangue() == "en_us")) || ((MovieClip(parent.parent.parent).quelleLangue() == "en_uk")))) || ((MovieClip(parent.parent.parent).quelleLangue() == "ar")))) || ((MovieClip(parent.parent.parent).quelleLangue() == "in")))) || ((MovieClip(parent.parent.parent).quelleLangue() == "jp")))) || ((MovieClip(parent.parent.parent).quelleLangue() == "cn")))){ this.gotoAndStop("en"); } else { this.gotoAndStop(MovieClip(parent.parent.parent).quelleLangue()); }; }; }; } function frame4(){ stop(); } function frame5(){ stop(); } function frame9(){ stop(); } function frame8(){ stop(); } function frame2(){ stop(); } function frame11(){ stop(); } } }//package StarSplash_OML_fla
Section 99
//congratulations_texte_completed_99 (StarSplash_OML_fla.congratulations_texte_completed_99) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class congratulations_texte_completed_99 extends MovieClip { public function congratulations_texte_completed_99(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12); } function frame10(){ stop(); } function frame12(){ stop(); } function frame3(){ stop(); } function frame6(){ stop(); } function frame7(){ stop(); } function frame1(){ stop(); if ((((MovieClip(parent.parent.parent).quelleLangue() == "pt")) || ((MovieClip(parent.parent.parent).quelleLangue() == "br")))){ this.gotoAndStop("pt"); } else { if ((((MovieClip(parent.parent.parent).quelleLangue() == "es_mx")) || ((MovieClip(parent.parent.parent).quelleLangue() == "es_ar")))){ this.gotoAndStop("es2"); } else { if ((((((((((((MovieClip(parent.parent.parent).quelleLangue() == "en_us")) || ((MovieClip(parent.parent.parent).quelleLangue() == "en_uk")))) || ((MovieClip(parent.parent.parent).quelleLangue() == "ar")))) || ((MovieClip(parent.parent.parent).quelleLangue() == "in")))) || ((MovieClip(parent.parent.parent).quelleLangue() == "jp")))) || ((MovieClip(parent.parent.parent).quelleLangue() == "cn")))){ this.gotoAndStop("en"); } else { this.gotoAndStop(MovieClip(parent.parent.parent).quelleLangue()); }; }; }; } function frame4(){ stop(); } function frame5(){ stop(); } function frame9(){ stop(); } function frame8(){ stop(); } function frame2(){ stop(); } function frame11(){ stop(); } } }//package StarSplash_OML_fla
Section 100
//copyright_43 (StarSplash_OML_fla.copyright_43) package StarSplash_OML_fla { import flash.display.*; public dynamic class copyright_43 extends MovieClip { public var hit:MovieClip; public function copyright_43(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 101
//dauphin_28 (StarSplash_OML_fla.dauphin_28) package StarSplash_OML_fla { import flash.display.*; public dynamic class dauphin_28 extends MovieClip { public var etat:String; public var saute:MovieClip; public var nage:MovieClip; public function dauphin_28(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); etat = "nage"; } function frame2(){ stop(); etat = "saute"; } } }//package StarSplash_OML_fla
Section 102
//dauphin_nage_29 (StarSplash_OML_fla.dauphin_nage_29) package StarSplash_OML_fla { import flash.display.*; public dynamic class dauphin_nage_29 extends MovieClip { public var hit:MovieClip; } }//package StarSplash_OML_fla
Section 103
//dauphin_saute_31 (StarSplash_OML_fla.dauphin_saute_31) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class dauphin_saute_31 extends MovieClip { public var noEntFrame:Boolean; public var frBoost:uint; public var hit:MovieClip; public var hit2:MovieClip; public function dauphin_saute_31(){ addFrameScript(0, frame1, 19, frame20, 24, frame25, 43, frame44, 49, frame50, 54, frame55, 57, frame58, 58, frame59, 64, frame65, 123, frame124, 129, frame130, 133, frame134, 153, frame154, 166, frame167); } function frame65(){ stop(); } function frame154(){ stop(); } function frame167(){ stop(); } function frame1(){ noEntFrame = false; frBoost = 4; MovieClip(parent.parent).createSplash("tiSplash"); MovieClip(parent.parent).mouvementSaut(); } function frame25(){ MovieClip(parent.parent).mouvementSaut(); } public function entFrame(_arg1:Event):void{ var _local2:uint; var _local3:Boolean; _local3 = false; if (MovieClip(parent.parent).plongeFini == true){ _local2 = 20; } else { _local2 = 40; }; if (noEntFrame == false){ if (((!((MovieClip(parent).y == MovieClip(parent.parent).eau))) && (((MovieClip(parent).y + _local2) < MovieClip(parent.parent).eau)))){ MovieClip(parent).y = (MovieClip(parent).y + _local2); } else { MovieClip(parent.parent).Splash(); removeEventListener(Event.ENTER_FRAME, entFrame); }; }; } function frame20(){ stop(); } function frame124(){ stop(); } function frame44(){ stop(); } function frame130(){ MovieClip(parent.parent).Tombe(true); } function frame134(){ stop(); } function frame55(){ MovieClip(parent.parent).Tombe(false); } function frame50(){ frBoost = 2; MovieClip(parent.parent).Boost(); } function frame58(){ frBoost = 3; } function frame59(){ frBoost = 4; } } }//package StarSplash_OML_fla
Section 104
//eau_alpha_135 (StarSplash_OML_fla.eau_alpha_135) package StarSplash_OML_fla { import flash.display.*; public dynamic class eau_alpha_135 extends MovieClip { public function eau_alpha_135(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 105
//eau_bg_25 (StarSplash_OML_fla.eau_bg_25) package StarSplash_OML_fla { import flash.display.*; public dynamic class eau_bg_25 extends MovieClip { public var masque1:MovieClip; public var frameName:String; public function eau_bg_25(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ frameName = "nuit"; stop(); } function frame1(){ frameName = "tropical"; stop(); } function frame2(){ frameName = "port"; stop(); } } }//package StarSplash_OML_fla
Section 106
//etoile_clip_93 (StarSplash_OML_fla.etoile_clip_93) package StarSplash_OML_fla { import flash.display.*; public dynamic class etoile_clip_93 extends MovieClip { public function etoile_clip_93(){ addFrameScript(10, frame11); } function frame11(){ stop(); } } }//package StarSplash_OML_fla
Section 107
//feux_c_216 (StarSplash_OML_fla.feux_c_216) package StarSplash_OML_fla { import flash.display.*; public dynamic class feux_c_216 extends MovieClip { public var f1:MovieClip; public function feux_c_216(){ addFrameScript(1, frame2, 8, frame9, 20, frame21, 38, frame39, 46, frame47, 55, frame56, 64, frame65, 100, frame101); } function frame65(){ } function frame9(){ } function frame21(){ } function frame2(){ } function frame47(){ } function frame39(){ } function frame101(){ stop(); } function frame56(){ } } }//package StarSplash_OML_fla
Section 108
//feux_g_217 (StarSplash_OML_fla.feux_g_217) package StarSplash_OML_fla { import flash.display.*; public dynamic class feux_g_217 extends MovieClip { public function feux_g_217(){ addFrameScript(34, frame35); } function frame35(){ stop(); } } }//package StarSplash_OML_fla
Section 109
//flag_icon_341 (StarSplash_OML_fla.flag_icon_341) package StarSplash_OML_fla { import flash.display.*; public dynamic class flag_icon_341 extends MovieClip { public function flag_icon_341(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 110
//fleche_DOWN_249 (StarSplash_OML_fla.fleche_DOWN_249) package StarSplash_OML_fla { import flash.display.*; public dynamic class fleche_DOWN_249 extends MovieClip { public function fleche_DOWN_249(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 111
//fleche_DOWN2_254 (StarSplash_OML_fla.fleche_DOWN2_254) package StarSplash_OML_fla { import flash.display.*; public dynamic class fleche_DOWN2_254 extends MovieClip { public function fleche_DOWN2_254(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 112
//fleche_LEFT_RIGHT_250 (StarSplash_OML_fla.fleche_LEFT_RIGHT_250) package StarSplash_OML_fla { import flash.display.*; public dynamic class fleche_LEFT_RIGHT_250 extends MovieClip { public function fleche_LEFT_RIGHT_250(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 113
//fleche_LEFT_RIGHT2_255 (StarSplash_OML_fla.fleche_LEFT_RIGHT2_255) package StarSplash_OML_fla { import flash.display.*; public dynamic class fleche_LEFT_RIGHT2_255 extends MovieClip { public function fleche_LEFT_RIGHT2_255(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 114
//fleche_SPACE_275 (StarSplash_OML_fla.fleche_SPACE_275) package StarSplash_OML_fla { import flash.display.*; public dynamic class fleche_SPACE_275 extends MovieClip { public function fleche_SPACE_275(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 115
//fleche_SPACE2_278 (StarSplash_OML_fla.fleche_SPACE2_278) package StarSplash_OML_fla { import flash.display.*; public dynamic class fleche_SPACE2_278 extends MovieClip { public function fleche_SPACE2_278(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 116
//fleche_UP_247 (StarSplash_OML_fla.fleche_UP_247) package StarSplash_OML_fla { import flash.display.*; public dynamic class fleche_UP_247 extends MovieClip { public function fleche_UP_247(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 117
//fleche_UP2_253 (StarSplash_OML_fla.fleche_UP2_253) package StarSplash_OML_fla { import flash.display.*; public dynamic class fleche_UP2_253 extends MovieClip { public function fleche_UP2_253(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 118
//fondu_fadeIn_68 (StarSplash_OML_fla.fondu_fadeIn_68) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class fondu_fadeIn_68 extends MovieClip { public var nextPlace:String; public var nextScene1:String; public function fondu_fadeIn_68(){ addFrameScript(0, frame1, 1, frame2, 9, frame10, 13, frame14, 14, frame15, 23, frame24); } function frame10(){ MovieClip(root).frameName = null; } function frame14(){ stop(); MovieClip(root).gotoAndPlay(nextPlace, nextScene1); } function frame15(){ if (MovieClip(root).frameName == "menu"){ MovieClip(root).musicF("in", 9, "Menu"); } else { if (MovieClip(root).frameName == "jeu"){ MovieClip(root).musicF("in", 9, "lvl1"); }; }; } function frame1(){ stop(); nextPlace = null; nextScene1 = null; } function frame24(){ gotoAndStop(1); } function frame2(){ if (nextPlace == "jeu"){ MovieClip(root).musicF("out", 12, "end"); }; } } }//package StarSplash_OML_fla
Section 119
//fondu_fadeOut_231 (StarSplash_OML_fla.fondu_fadeOut_231) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class fondu_fadeOut_231 extends MovieClip { public function fondu_fadeOut_231(){ addFrameScript(0, frame1, 8, frame9); } function frame1(){ MovieClip(root).musicF("out", 8, "end"); } function frame9(){ stop(); } } }//package StarSplash_OML_fla
Section 120
//hitBox_30 (StarSplash_OML_fla.hitBox_30) package StarSplash_OML_fla { import flash.display.*; public dynamic class hitBox_30 extends MovieClip { public function hitBox_30(){ addFrameScript(0, frame1); } function frame1(){ this.visible = false; } } }//package StarSplash_OML_fla
Section 121
//l_br_339 (StarSplash_OML_fla.l_br_339) package StarSplash_OML_fla { import flash.display.*; import flash.text.*; public dynamic class l_br_339 extends MovieClip { public var text:TextField; public var flag:MovieClip; } }//package StarSplash_OML_fla
Section 122
//ligne_eau_41 (StarSplash_OML_fla.ligne_eau_41) package StarSplash_OML_fla { import flash.display.*; public dynamic class ligne_eau_41 extends MovieClip { public function ligne_eau_41(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 123
//ligne_eau_c_40 (StarSplash_OML_fla.ligne_eau_c_40) package StarSplash_OML_fla { import flash.display.*; public dynamic class ligne_eau_c_40 extends MovieClip { public var c1:MovieClip; } }//package StarSplash_OML_fla
Section 124
//lv1_103 (StarSplash_OML_fla.lv1_103) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import com.greensock.*; import flash.utils.*; import com.greensock.easing.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class lv1_103 extends MovieClip { public var tableau6:MovieClip; public var myTween5:TweenLite; public var passeItems3:uint; public var limDroite:uint; public var myTween2:TweenLite; public var myTween4:TweenLite; public var itemsCollectAll:uint; public var dauphinBoost:Boolean; public var myTween3:TweenLite; public var passeItems5:uint; public var passeItems7:uint; public var myTween8:TweenLite; public var right:Boolean; public var passeItems1:uint; public var passeItems2:uint; public var tableau10:MovieClip; public var tableau11:MovieClip; public var tableau12:MovieClip; public var tableau13:MovieClip; public var tableau14:MovieClip; public var tableau15:MovieClip; public var tableau16:MovieClip; public var tableau17:MovieClip; public var tableau18:MovieClip; public var passeItems6:uint; public var jump:Boolean; public var tableau19:MovieClip; public var passeItems4:uint; public var myTween:TweenLite; public var bg:MovieClip; public var tableau21:MovieClip; public var tableau20:MovieClip; public var distanceBg3:Number; public var distanceBg2:Number; public var passeItems8:uint; public var passeItems9:uint; public var distanceBg1:Number; public var peutSonar:Boolean; public var i:Number; public var initItemSpd:Number; public var longTableau:uint; public var sonarName; public var plongeFini:Boolean; public var nombreSauts:uint; public var splash:Array; public var tableau10x:MovieClip; public var cntIt:uint; public var pourcent:uint; public var posY:Number; public var up:Boolean; public var tableau3x:MovieClip; public var down:Boolean; public var peutPlonger:Boolean; public var dauphin:MovieClip; public var splashFini:Boolean; public var passeItems10:uint; public var passeItems11:uint; public var passeItems12:uint; public var myTween2b:TweenLite; public var newHx:int; public var compteEtoiles:uint; public var lignes:MovieClip; public var passeItems18:uint; public var passeItems19:uint; public var passeItems14:uint; public var controles:Boolean; public var passeItems13:uint; public var passeItems17:uint; public var newHy:int; public var passeItems20:uint; public var eau_bg:MovieClip; public var pratique:Boolean; public var passeItems16:uint; public var passeItems15:uint; public var limVerticale:uint; public var tableau6x:MovieClip; public var space:Boolean; public var chiffreStart:int; public var passeItems21:uint; public var totalItems:uint; public var totalItemsAll:uint; public var keyArray:Array; public var tiSplash:Array; public var dauphinPos:Point; public var dauphinTombe:Boolean; public var tableau9x:MovieClip; public var eau:uint; public var masque2:MovieClip; public var itemsCollect:uint; public var SPD:uint; public var hit; public var chiffre:String; public var ciel:MovieClip; public var maxSauts:uint; public var boost:Boolean; public var vitesseBg2:Number; public var vitesseBg3:Number; public var vitesseBg1:Number; public var passeItems:uint; public var zone:String; public var fini:Boolean; public var itemSpd:Number; public var ligne_eau:MovieClip; public var tableau1:MovieClip; public var tableau2:MovieClip; public var tableau3:MovieClip; public var tableau4:MovieClip; public var tableau5:MovieClip; public var tableau7:MovieClip; public var tableau8:MovieClip; public var tableau9:MovieClip; public var myTween7:TweenLite; public var eau_over:MovieClip; public var myTween6:TweenLite; public function lv1_103(){ addFrameScript(0, frame1); } public function deleteSplash(_arg1:String):void{ if (_arg1 == "grosSplash"){ this.splash[0].removeEventListener(Event.ENTER_FRAME, this.splash[0].entFrame); this.removeChild(this.splash[0]); this.splash[0] = null; splash.splice(0, 1); } else { if (_arg1 == "tiSplash"){ this.tiSplash[0].removeEventListener(Event.ENTER_FRAME, this.tiSplash[0].entFrame); this.removeChild(this.tiSplash[0]); this.tiSplash[0] = null; tiSplash.splice(0, 1); }; }; } public function scrolling(){ if (dauphinBoost == false){ if (dauphinTombe == false){ posY = (limVerticale - this.dauphinPos.y); Math.floor((posY = (posY / 7.5))); } else { if (dauphinTombe == true){ if (this.dauphinPos.y < 40){ posY = (posY + 2); } else { if (this.dauphinPos.y > 200){ posY = (posY - 8); } else { posY = (posY - 3); if (posY < -30){ posY = -30; }; }; }; }; }; this.y = (this.y + posY); }; if (this.y > 800){ this.y = 800; } else { if (this.y < 0){ this.y = 0; }; }; } public function updateMed():void{ if ((this.dauphin.x - (SPD + 2)) > 20){ this.dauphin.x = (this.dauphin.x - (SPD + 2)); } else { this.dauphin.x = 20; }; } function frame1(){ stop(); OverwriteManager.init(2); vitesseBg1 = 2.3; distanceBg1 = 0; vitesseBg2 = 3; distanceBg2 = 0; vitesseBg3 = 3.5; distanceBg3 = 0; SPD = 6; jump = false; keyArray = new Array(); eau = 267; limDroite = 600; fini = true; up = false; right = false; down = false; space = false; boost = true; peutSonar = true; sonarName = null; peutPlonger = true; plongeFini = true; nombreSauts = 0; maxSauts = 3; splashFini = true; splash = new Array(); tiSplash = new Array(); cntIt = 0; initItemSpd = 8; itemSpd = initItemSpd; limVerticale = 200; dauphinPos = new Point(this.dauphin.x, this.dauphin.y); dauphinTombe = false; dauphinBoost = false; newHx = 0; newHy = 0; totalItemsAll = 1977; itemsCollectAll = 0; totalItems = 0; itemsCollect = 0; passeItems = 0; passeItems1 = 15; passeItems2 = 25; passeItems3 = 30; passeItems4 = 30; passeItems5 = 40; passeItems6 = 45; passeItems7 = 50; passeItems8 = 55; passeItems9 = 60; passeItems10 = 70; passeItems11 = 70; passeItems12 = 75; passeItems13 = 75; passeItems14 = 75; passeItems15 = 80; passeItems16 = 85; passeItems17 = 90; passeItems18 = 90; passeItems19 = 100; passeItems20 = 110; passeItems21 = 160; pourcent = 0; chiffreStart = 0; chiffre = null; longTableau = 0; MyGlobal.score = 0; MyGlobal.vague = 0; MovieClip(parent).menuJeu.score.text = "0.00"; MovieClip(parent).menuJeu.itemsC.text = 0; zone = "tropical"; i = 0; while (i < 222) { keyArray.push([i, false]); i++; }; stage.addEventListener(KeyboardEvent.KEY_DOWN, checkKeysDown); stage.addEventListener(KeyboardEvent.KEY_UP, checkKeysUp); this.addEventListener(Event.ENTER_FRAME, entFrame); } public function rndHundredth(_arg1){ var _local2:Number; _local2 = _arg1; _local2 = (_local2 * 100); _local2 = Math.round(_local2); _local2 = (_local2 / 100); return (_local2); } public function createSplash(_arg1:String):void{ var _local2:Splash1; var _local3:TiSplash1; if (_arg1 == "grosSplash"){ _local2 = new Splash1(); addChild(_local2); splash.push(_local2); _local2.x = (this.dauphin.x + 30); _local2.y = 222; if (MovieClip(parent).frameName != null){ MovieClip(root).sonsF("splash", true); }; } else { if (_arg1 == "tiSplash"){ _local3 = new TiSplash1(); addChild(_local3); tiSplash.push(_local3); _local3.x = this.dauphin.x; _local3.y = 222; MovieClip(root).sonsF("splashOut", false); }; }; } public function updateBoost():void{ if (this.dauphin.x >= limDroite){ this.dauphin.x = limDroite; myTween2.kill(); }; } public function Bloop():void{ myTween5 = new TweenLite(this.dauphin, 5, {y:"-20", ease:Quad.easeOut, useFrames:true, onComplete:splashComplete}); this.dauphin.gotoAndStop("nage"); } public function deleteSpawn(_arg1:String, _arg2:uint):void{ var _local3:*; var _local4:Number; var _local5:String; var _local6:uint; var _local7:String; if (_arg2 > 0){ MovieClip(root).sonsF("etoile", false); }; itemsCollect = (itemsCollect + _arg2); MovieClip(parent).menuJeu.itemsC.text = itemsCollect; if (pratique == false){ itemsCollectAll = (itemsCollectAll + _arg2); if (_arg2 != 0){ _local4 = ((itemsCollectAll / totalItemsAll) * 100); MyGlobal.score = rndHundredth(_local4); _local5 = String(MyGlobal.score); _local6 = _local5.indexOf("."); _local7 = _local5.substring((_local6 + 1), _local5.length); if (_local7.length == 0){ _local5 = (_local5 + ".00"); } else { if (_local7.length == 1){ _local5 = (_local5 + "0"); }; }; MovieClip(parent).menuJeu.score.text = _local5; }; }; _local3 = this.getChildByName(_arg1); _local3.removeEventListener(Event.ENTER_FRAME, _local3.entFrame); this.removeChild(_local3); _local3 = null; } public function Splash():void{ var _local1:*; var _local2:uint; if (plongeFini == true){ _local2 = 5; _local1 = "25"; this.dauphin.y = eau; } else { _local2 = 10; _local1 = 390; }; createSplash("grosSplash"); fini = true; nombreSauts = 0; if (plongeFini == false){ this.dauphin.saute.gotoAndPlay("splash2"); } else { if (this.dauphin.saute.frBoost < 4){ this.dauphin.saute.gotoAndPlay((this.dauphin.saute.frBoost + "b")); } else { if (plongeFini == true){ this.dauphin.saute.gotoAndPlay("splash"); }; }; }; myTween4 = new TweenLite(this.dauphin, _local2, {y:_local1, ease:Quad.easeOut, useFrames:true, onComplete:Bloop}); splashFini = false; plongeFini = true; peutPlonger = true; dauphinTombe = false; } public function completeFunction():void{ myTween.reverse(); if (this.dauphin.y < 0){ dauphinTombe = true; }; } public function meduseSaut():void{ nombreSauts = 0; peutPlonger = true; boost = true; dauphinTombe = false; dauphinBoost = false; if (plongeFini == false){ plongeFini = true; }; myTween7 = new TweenLite(this.dauphin, 30, {y:-260, useFrames:true, onComplete:meduseSautComplete, overwrite:true}); } public function finTableau():void{ trace(((("Tableau " + MyGlobal.vague) + ": total d'étoile = ") + compteEtoiles)); pourcent = Math.ceil(((itemsCollect * 100) / totalItems)); if (itemsCollect == totalItems){ MovieClip(parent).menuJeu.presTableau.verdict = "perfect"; } else { if (itemsCollect >= passeItems){ MovieClip(parent).menuJeu.presTableau.verdict = "passed"; } else { MovieClip(parent).menuJeu.presTableau.verdict = "failed"; }; }; MovieClip(parent).menuJeu.presTableau.nextPlace = "result"; MovieClip(parent).menuJeu.presTableau.gotoAndPlay("noir_in"); } public function checkKeysUp(_arg1:KeyboardEvent):void{ keyArray[_arg1.keyCode][1] = false; } public function initVit():void{ myTween2b.kill(); this.itemSpd = this.initItemSpd; } public function Tombe(_arg1:Boolean):void{ var _local2:uint; if (_arg1 == false){ _local2 = 10; } else { if (_arg1 == true){ _local2 = 5; }; }; myTween3 = new TweenLite(this.dauphin, _local2, {y:"160", ease:Quad.easeIn, useFrames:true, onUpdate:updateTombe, onComplete:reverseFunction}); if (this.dauphin.y < 0){ dauphinTombe = true; }; dauphinBoost = false; posY = 0; } public function splashComplete():void{ splashFini = true; } public function mouvementSaut():void{ nombreSauts = (nombreSauts + 1); fini = false; dauphinTombe = false; dauphinBoost = false; plongeFini = true; myTween = new TweenLite(this.dauphin, 10, {y:"-160", useFrames:true, onComplete:completeFunction, onReverseComplete:reverseFunction}); } public function reverseFunction():void{ this.dauphin.saute.noEntFrame = false; this.dauphin.saute.addEventListener(Event.ENTER_FRAME, this.dauphin.saute.entFrame); } public function isKeyDown(_arg1){ return (keyArray[_arg1][1]); } public function entFrame(_arg1:Event):void{ if (MovieClip(root).frameName != "jeu"){ stage.removeEventListener(KeyboardEvent.KEY_DOWN, checkKeysDown); stage.removeEventListener(KeyboardEvent.KEY_UP, checkKeysUp); this.removeEventListener(Event.ENTER_FRAME, entFrame); if (this.dauphin.saute != null){ this.dauphin.saute.addEventListener(Event.ENTER_FRAME, this.dauphin.saute.entFrame); }; }; hit = this.dauphin[this.dauphin.etat].hit; dauphinPos = new Point(this.dauphin.x, this.dauphin.y); dauphinPos = localToGlobal(dauphinPos); if (this.dauphinPos.y < limVerticale){ scrolling(); } else { if ((((this.dauphinPos.y > limVerticale)) && (!((this.y == 0))))){ scrolling(); }; }; if (controles == true){ if ((((isKeyDown(39) == true)) || ((isKeyDown(68) == true)))){ if ((this.dauphin.x + SPD) < limDroite){ this.dauphin.x = (this.dauphin.x + SPD); } else { this.dauphin.x = limDroite; }; } else { if ((((isKeyDown(37) == true)) || ((isKeyDown(65) == true)))){ if ((this.dauphin.x - SPD) > 20){ this.dauphin.x = (this.dauphin.x - SPD); } else { this.dauphin.x = 20; }; }; }; }; if (this.dauphin.etat == "nage"){ up = true; if ((((((isKeyDown(40) == true)) || ((isKeyDown(83) == true)))) && ((controles == true)))){ if (splashFini == false){ myTween5.kill(); splashFini = true; }; if ((this.dauphin.y + SPD) < 385){ this.dauphin.y = (this.dauphin.y + SPD); this.dauphin.nage.rotation = 10; } else { this.dauphin.y = 385; }; } else { if ((((((isKeyDown(38)) || (isKeyDown(87))) == true)) && ((controles == true)))){ if (splashFini == false){ myTween5.kill(); splashFini = true; }; if ((this.dauphin.y - SPD) > eau){ this.dauphin.y = (this.dauphin.y - SPD); this.dauphin.nage.rotation = -10; } else { this.dauphin.y = eau; jump = true; }; } else { if (this.dauphin.nage.rotation > 0){ this.dauphin.nage.rotation = (this.dauphin.nage.rotation - 2); } else { if (this.dauphin.nage.rotation < 0){ this.dauphin.nage.rotation = (this.dauphin.nage.rotation + 2); } else { this.dauphin.nage.rotation = 0; }; }; }; }; if ((((((jump == true)) && ((((isKeyDown(38) == true)) || ((isKeyDown(87) == true)))))) && ((controles == true)))){ this.dauphin.gotoAndStop("saute"); jump = false; boost = true; }; if ((((((((isKeyDown(39) == false)) && ((isKeyDown(68) == false)))) || ((controles == false)))) && (((this.dauphin.x - 2) > 20)))){ this.dauphin.x = (this.dauphin.x - 2); }; }; if ((((isKeyDown(38) == false)) && ((isKeyDown(87) == false)))){ up = false; }; if ((((isKeyDown(39) == false)) && ((isKeyDown(68) == false)))){ right = false; }; if ((((isKeyDown(40) == false)) && ((isKeyDown(83) == false)))){ down = false; }; if ((((isKeyDown(32) == false)) && (isKeyDown(13)))){ space = false; }; if (plongeFini == false){ if ((this.dauphin.x - (itemSpd * (1 / 3))) > 20){ this.dauphin.x = (this.dauphin.x - (itemSpd * (1 / 3))); } else { this.dauphin.x = 20; }; }; if (((!((this.zone == "nuit"))) && ((this.bg.bg1.i > 0)))){ this.bg.bg1.x = (this.bg.bg1.x - vitesseBg1); distanceBg1 = (distanceBg1 + vitesseBg1); if (distanceBg1 >= (680 + this.bg.bg1[("bg" + this.bg.bg1.i)].width)){ this.bg.bg1.x = (this.bg.bg1.x + distanceBg1); distanceBg1 = 0; this.bg.bg1.gotoAndPlay("fin"); }; }; if (this.bg.bg2.i > 0){ this.bg.bg2.x = (this.bg.bg2.x - vitesseBg2); distanceBg2 = (distanceBg2 + vitesseBg2); if (distanceBg2 >= (680 + this.bg.bg2[("bg" + this.bg.bg2.i)].width)){ this.bg.bg2.x = (this.bg.bg2.x + distanceBg2); distanceBg2 = 0; this.bg.bg2.gotoAndPlay("fin"); }; }; if (this.bg.bg3.i > 0){ this.bg.bg3.x = (this.bg.bg3.x - vitesseBg3); distanceBg3 = (distanceBg3 + vitesseBg3); if (distanceBg3 >= (680 + this.bg.bg3[("bg" + this.bg.bg3.i)].width)){ this.bg.bg3.x = (this.bg.bg3.x + distanceBg3); distanceBg3 = 0; this.bg.bg3.gotoAndPlay("fin"); }; }; } public function chVague():void{ compteEtoiles = 0; MyGlobal.vague = (MyGlobal.vague + 1); passeItems = this[("passeItems" + MyGlobal.vague)]; itemsCollect = 0; pourcent = 0; MovieClip(parent).menuJeu.itemsC.text = 0; MovieClip(parent).menuJeu.progression.gotoAndStop(1); if (MyGlobal.vague == 1){ totalItems = 25; longTableau = 290; }; if (MyGlobal.vague == 2){ totalItems = 45; longTableau = 448; }; if (MyGlobal.vague == 3){ totalItems = 50; longTableau = 480; }; if (MyGlobal.vague == 4){ totalItems = 50; longTableau = 400; }; if (MyGlobal.vague == 5){ totalItems = 65; longTableau = 544; }; if (MyGlobal.vague == 6){ totalItems = 67; longTableau = 509; }; if (MyGlobal.vague == 7){ totalItems = 75; longTableau = 650; }; if (MyGlobal.vague == 8){ totalItems = 75; longTableau = 561; }; if (MyGlobal.vague == 9){ totalItems = 80; longTableau = 705; }; if (MyGlobal.vague == 10){ totalItems = 100; longTableau = 754; }; if (MyGlobal.vague == 11){ totalItems = 95; longTableau = 703; }; if (MyGlobal.vague == 12){ totalItems = 102; longTableau = 587; }; if (MyGlobal.vague == 13){ totalItems = 105; longTableau = 661; }; if (MyGlobal.vague == 14){ totalItems = 105; longTableau = 540; }; if (MyGlobal.vague == 15){ totalItems = 100; longTableau = 646; }; if (MyGlobal.vague == 16){ totalItems = 109; longTableau = 609; }; if (MyGlobal.vague == 17){ totalItems = 119; longTableau = 735; }; if (MyGlobal.vague == 18){ totalItems = 110; longTableau = 736; }; if (MyGlobal.vague == 19){ totalItems = 140; longTableau = 691; }; if (MyGlobal.vague == 20){ totalItems = 150; longTableau = 724; }; if (MyGlobal.vague == 21){ totalItems = 210; longTableau = 1068; }; this[("tableau" + MyGlobal.vague)].gotoAndPlay(2); } public function preMeduseSaut():void{ this.dauphin.saute.noEntFrame = true; this.dauphin.saute.removeEventListener(Event.ENTER_FRAME, this.dauphin.saute.entFrame); if (myTween3 != null){ myTween3.kill(); }; dauphinTombe = false; dauphinBoost = false; if (plongeFini == false){ plongeFini = true; }; myTween8 = new TweenLite(this.dauphin, 10, {y:240, useFrames:true, onComplete:meduseSaut, overwrite:true, ease:Quad.easeOut, onUpdate:updateMed}); this.dauphin.saute.gotoAndPlay("meduseSaut"); } public function spawnForme(_arg1:String, _arg2:int, _arg3:int):void{ if (_arg1 == "saut"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 160), _arg3); newHx = (_arg2 + 160); newHy = _arg3; } else { if (_arg1 == "sautM1"){ spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 160), _arg3); newHx = (_arg2 + 160); newHy = _arg3; } else { if (_arg1 == "sautM5"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); newHx = (_arg2 + 135); newHy = (_arg3 - 65); } else { if (_arg1 == "sautM45"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); newHx = (_arg2 + 135); newHy = (_arg3 - 110); } else { if (_arg1 == "sautM145"){ spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); newHx = (_arg2 + 135); newHy = (_arg3 - 110); } else { if (_arg1 == "saut3"){ spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); newHx = (_arg2 + 135); newHy = (_arg3 - 65); } else { if (_arg1 == "diM3"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 30), (_arg3 - 50)); spawnage("etoileB", (_arg2 + 60), (_arg3 - 100)); spawnage("etoileB", (_arg2 + 90), (_arg3 - 150)); spawnage("etoileB", (_arg2 + 120), (_arg3 - 200)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 250)); spawnage("etoileB", (_arg2 + 180), (_arg3 - 300)); spawnage("etoileB", (_arg2 + 210), (_arg3 - 350)); spawnage("etoileB", (_arg2 + 240), (_arg3 - 400)); spawnage("etoileB", (_arg2 + 270), (_arg3 - 450)); newHx = (_arg2 + 270); newHy = (_arg3 - 450); } else { if (_arg1 == "diM2"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 30), (_arg3 - 50)); spawnage("etoileB", (_arg2 + 60), (_arg3 - 100)); spawnage("etoileB", (_arg2 + 90), (_arg3 - 150)); spawnage("etoileB", (_arg2 + 120), (_arg3 - 200)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 250)); newHx = (_arg2 + 150); newHy = (_arg3 - 250); } else { if (_arg1 == "medM"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 5), (_arg3 - 90)); spawnage("etoileB", (_arg2 + 15), (_arg3 - 170)); spawnage("etoileB", (_arg2 + 30), (_arg3 - 240)); spawnage("etoileB", (_arg2 + 50), (_arg3 - 300)); spawnage("etoileB", (_arg2 + 75), (_arg3 - 350)); spawnage("etoileB", (_arg2 + 110), (_arg3 - 390)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 420)); spawnage("etoileB", (_arg2 + 200), (_arg3 - 440)); spawnage("etoileB", (_arg2 + 270), (_arg3 - 450)); newHx = (_arg2 + 270); newHy = (_arg3 - 450); } else { if (_arg1 == "medMM10"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 5), (_arg3 - 90)); spawnage("etoileB", (_arg2 + 15), (_arg3 - 170)); spawnage("etoileB", (_arg2 + 30), (_arg3 - 240)); spawnage("etoileB", (_arg2 + 50), (_arg3 - 300)); spawnage("etoileB", (_arg2 + 75), (_arg3 - 350)); spawnage("etoileB", (_arg2 + 110), (_arg3 - 390)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 420)); spawnage("etoileB", (_arg2 + 200), (_arg3 - 440)); newHx = (_arg2 + 270); newHy = (_arg3 - 450); } else { if (_arg1 == "ligneX"){ spawnage("etoileB", (_arg2 + 0), _arg3); spawnage("etoileB", (_arg2 + 50), _arg3); spawnage("etoileB", (_arg2 + 100), _arg3); spawnage("etoileB", (_arg2 + 150), _arg3); spawnage("etoileB", (_arg2 + 200), _arg3); spawnage("etoileB", (_arg2 + 250), _arg3); newHx = (_arg2 + 250); newHy = _arg3; } else { if (_arg1 == "ligneXM1"){ spawnage("etoileB", (_arg2 + 50), _arg3); spawnage("etoileB", (_arg2 + 100), _arg3); spawnage("etoileB", (_arg2 + 150), _arg3); spawnage("etoileB", (_arg2 + 200), _arg3); spawnage("etoileB", (_arg2 + 250), _arg3); newHx = (_arg2 + 250); newHy = _arg3; } else { if (_arg1 == "ligneY"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", _arg2, (_arg3 + 50)); spawnage("etoileB", _arg2, (_arg3 + 100)); spawnage("etoileB", _arg2, (_arg3 + 150)); spawnage("etoileB", _arg2, (_arg3 + 200)); newHx = _arg2; newHy = (_arg3 + 200); } else { if (_arg1 == "zigzag1"){ spawnage("etoileB", _arg2, 280); spawnage("etoileB", (_arg2 + 100), 380); spawnage("etoileB", (_arg2 + 200), 280); newHx = (_arg2 + 200); newHy = 280; if (_arg3 >= 4){ spawnage("etoileB", (_arg2 + 300), 380); newHx = (_arg2 + 300); newHy = 380; }; if (_arg3 >= 5){ spawnage("etoileB", (_arg2 + 400), 280); newHx = (_arg2 + 400); newHy = 280; }; if (_arg3 >= 6){ spawnage("etoileB", (_arg2 + 500), 380); newHx = (_arg2 + 500); newHy = 380; }; } else { if (_arg1 == "zigzag2"){ spawnage("etoileB", _arg2, 380); spawnage("etoileB", (_arg2 + 100), 280); spawnage("etoileB", (_arg2 + 200), 380); newHx = (_arg2 + 200); newHy = 380; if (_arg3 >= 4){ spawnage("etoileB", (_arg2 + 300), 280); newHx = (_arg2 + 300); newHy = 280; }; if (_arg3 >= 5){ spawnage("etoileB", (_arg2 + 400), 380); newHx = (_arg2 + 400); newHy = 380; }; if (_arg3 >= 6){ spawnage("etoileB", (_arg2 + 500), 280); newHx = (_arg2 + 500); newHy = 280; }; } else { if (_arg1 == "feuille"){ spawnage("etoileB", (_arg2 + 0), _arg3); spawnage("etoileB", (_arg2 + 50), (_arg3 - 5)); spawnage("etoileB", (_arg2 + 100), (_arg3 - 15)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 30)); spawnage("etoileB", (_arg2 + 200), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 250), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 300), (_arg3 - 160)); newHx = (_arg2 + 300); newHy = (_arg3 - 160); } else { if (_arg1 == "roundDive"){ spawnage("etoileB", (_arg2 + 0), _arg3); spawnage("etoileB", (_arg2 + 40), (_arg3 + 15)); spawnage("etoileB", (_arg2 + 90), (_arg3 + 30)); spawnage("etoileB", (_arg2 + 130), (_arg3 + 65)); spawnage("etoileB", (_arg2 + 160), (_arg3 + 110)); spawnage("etoileB", (_arg2 + 175), (_arg3 + 160)); newHx = (_arg2 + 300); newHy = (_arg3 + 160); } else { if (_arg1 == "eTrans"){ spawnage("etoileT", (_arg2 + 0), _arg3); newHx = _arg2; newHy = _arg3; } else { if (_arg1 == "espace"){ spawnage("espace", (newHx + _arg2), 230); }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; } public function Boost():void{ this.dauphin.saute.noEntFrame = true; dauphinTombe = false; if (this.dauphin.y < 0){ dauphinBoost = true; }; plongeFini = true; myTween2 = new TweenLite(this.dauphin, 12, {x:"225", ease:Cubic.easeOut, useFrames:true, onUpdate:updateBoost, overwrite:true}); } public function meduseSautComplete():void{ Tombe(false); } public function chZone():void{ if (eau_bg.frameName != zone){ MovieClip(parent).menuJeu.progression.fond.gotoAndStop(zone); ciel.gotoAndStop(zone); eau_bg.gotoAndStop(zone); eau_over.gotoAndStop(zone); ligne_eau.c1.gotoAndStop(zone); eau_bg.masque1.gotoAndPlay(1); masque2.gotoAndPlay(1); ligne_eau.gotoAndPlay(1); bg.gotoAndStop(zone); if (zone == "nuit"){ dauphin.transform.colorTransform = new ColorTransform(0.7, 0.55, 0.7, 1, 0, 0, 0, 0); }; }; } public function updateTombe():void{ if (plongeFini == true){ if (!((!((this.dauphin.y == eau))) && (((this.dauphin.y + 20) < eau)))){ Splash(); myTween3.kill(); }; }; } public function spawnage(_arg1:String, _arg2:int, _arg3:int):void{ var _local4:*; var _local5:*; var _local6:*; var _local7:*; var _local8:int; _local8 = 0; if (_arg1 == "etoileB"){ compteEtoiles = (compteEtoiles + 1); cntIt = (cntIt + 1); _local4 = new EtoileJaune(); _local4.name = ("et_" + cntIt); } else { if (_arg1 == "etoileT"){ compteEtoiles = (compteEtoiles + 4); _local8 = 1; cntIt = (cntIt + 4); _local4 = new EtoileTrans(); _local4.name = ("et_" + (cntIt - 3)); _local5 = new EtoileTrans2(); _local5.name = ("et_" + (cntIt - 2)); _local5.pos = 1; _local5.x = (_arg2 + 33); _local5.y = _arg3; _local6 = new EtoileTrans2(); _local6.name = ("et_" + (cntIt - 1)); _local6.pos = 27; _local6.x = (_arg2 + 33); _local6.y = _arg3; _local7 = new EtoileTrans2(); _local7.name = ("et_" + cntIt); _local7.pos = 54; _local7.x = (_arg2 + 33); _local7.y = _arg3; } else { if (_arg1 == "espace"){ cntIt = (cntIt + 1); _local4 = new Espace(); _local4.name = ("esp_" + cntIt); } else { if (_arg1 == "meduse"){ cntIt = (cntIt + 1); _local4 = new Meduse(); _local4.name = ("med_" + cntIt); } else { if (_arg1 == "sonar"){ _local4 = new Sonar(); _local4.name = "sonar1"; } else { if (_arg1 == "bouée"){ _local4 = new Bouée(); _local4.name = "bouée1"; newHx = 700; newHy = 230; }; }; }; }; }; }; _local4.x = _arg2; _local4.y = _arg3; addChildAt(_local4, (this.getChildIndex(dauphin) + _local8)); if (_local5 != null){ addChildAt(_local5, (this.getChildIndex(dauphin) + _local8)); }; if (_local6 != null){ addChildAt(_local6, (this.getChildIndex(dauphin) + _local8)); }; if (_local7 != null){ addChildAt(_local7, (this.getChildIndex(dauphin) + _local8)); }; } public function checkKeysDown(_arg1:KeyboardEvent):void{ keyArray[_arg1.keyCode][1] = true; if (controles == true){ if (((isKeyDown(38)) || (isKeyDown(87)))){ if ((((((((this.dauphin.etat == "saute")) && ((fini == false)))) && ((up == false)))) && ((nombreSauts < maxSauts)))){ this.dauphin.saute.gotoAndPlay("saute2"); up = true; MovieClip(root).sonsF("triple", false); }; }; if (((isKeyDown(39)) || (isKeyDown(68)))){ if ((((((((((this.dauphin.etat == "saute")) && ((fini == false)))) && ((right == false)))) && ((boost == true)))) && (((this.dauphin.y + 30) < eau)))){ this.dauphin.saute.gotoAndPlay("boost"); boost = false; MovieClip(root).sonsF("boost", false); }; right = true; }; if (((isKeyDown(40)) || (isKeyDown(83)))){ if ((((((((((this.dauphin.etat == "saute")) && ((fini == false)))) && ((down == false)))) && ((peutPlonger == true)))) && (((this.dauphin.y + 40) < eau)))){ this.dauphin.saute.gotoAndPlay("plonge"); peutPlonger = false; plongeFini = false; MovieClip(root).sonsF("boost", false); }; down = true; }; if (((isKeyDown(32)) || (isKeyDown(13)))){ if (peutSonar == true){ spawnage("sonar", (this.dauphin.x + 50), this.dauphin.y); peutSonar = false; MovieClip(root).sonsF("sonar", false); }; }; }; } } }//package StarSplash_OML_fla
Section 125
//MainTimeline (StarSplash_OML_fla.MainTimeline) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import spill.localisation.*; import mochi.as3.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class MainTimeline extends MovieClip { public var musique:String; public var sceneMenu:MovieClip; public var fondu:MovieClip; public var urlStart:Number; public var percent:Number; public var xmlData:XML; public var fadeFois; public var i:int; public var fadeFrames:uint; public var preloader:MovieClip; public var volumeValue:Number; public var musicMC:musicMC_clip; public var fadeFini:Boolean; public var leMenu:ContextMenu; public var snails:MovieClip; public var mFade:String; public var Star:Boolean; public var sonMC:sonMC_clip; public var LastDot:Number; public var menuJeu:MovieClip; public var domain:String; public var maxVol:Number; public var Hyves:Boolean; public var qualitee:MovieClip; public var mus_c:MovieClip; public var urlEnd:Number; public var pfixEnd:Number; public var son_c:MovieClip; public var Notice:MovieClip; public var sons:String; public var co_uk:Number; public var snailsLogo:Boolean; public var menuItem1:ContextMenuItem; public var local:Boolean; public var fade_i:Number; public var url:String; public var lv:MovieClip; public var point:String; public var frameName:String; public var fontList:Array; public var Menu_c:MovieClip; public var localMode:String; public var devTexte:String; public var com_cn:Number; public var defaultItems:ContextMenuBuiltInItems; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 8, frame9, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 19, frame20, 21, frame22, 29, frame30, 39, frame40, 50, frame51, 51, frame52); } public function preload(_arg1:Event):void{ var _local2:uint; _local2 = 1; while (_local2 < 9) { this.preloader.BAR.bx[("b" + _local2)].gotoAndPlay((this.preloader.BAR.bx[("b" + _local2)].currentFrame + 1)); if (this.preloader.BAR.bx[("b" + _local2)].currentFrame == this.preloader.BAR.bx[("b" + _local2)].totalFrames){ this.preloader.BAR.bx[("b" + _local2)].gotoAndPlay(1); }; _local2++; }; percent = Math.floor(((this.loaderInfo.bytesLoaded * 100) / this.loaderInfo.bytesTotal)); if (percent > (this.preloader.BAR.currentFrame + 2)){ this.preloader.BAR.play(); } else { this.preloader.BAR.gotoAndStop(percent); }; if ((((percent >= 100)) && ((Star == false)))){ this.preloader.BAR.removeEventListener(Event.ENTER_FRAME, preload); this.play(); } else { if ((((percent >= 100)) && ((Star == true)))){ this.preloader.BAR.removeEventListener(Event.ENTER_FRAME, preload); this.preloader.gotoAndPlay("fini"); }; }; } public function handle_btnMoreGames(_arg1:String):void{ navigateToURL(new URLRequest(SpilGame.getMoreGamesLink(_arg1)), "_blank"); } function frame14(){ if (local == true){ this.Notice.visible = false; } else { urlStart = (url.indexOf("://") + 3); urlEnd = url.indexOf("/", urlStart); domain = url.substring(urlStart, urlEnd); LastDot = (domain.lastIndexOf(".") - 1); pfixEnd = (domain.lastIndexOf(".", LastDot) + 1); domain = domain.substring(pfixEnd, domain.length); if ((((domain == "snailsanimation.com")) || ((domain == "onemorelevel.com")))){ this.Notice.visible = false; this.play(); } else { stop(); this.Notice.visible = true; }; }; } function frame16(){ stop(); } function frame15(){ musique = "on"; sons = "on"; maxVol = 0.6; volumeValue = 0; fadeFois = 0; fadeFini = false; sonMC = new sonMC_clip(); this.addChild(sonMC); musicMC = new musicMC_clip(); this.addChild(musicMC); stage.addEventListener(KeyboardEvent.KEY_DOWN, checkQuality); } function frame2(){ stop(); this.preloader.BAR.addEventListener(Event.ENTER_FRAME, preload); } function frame1(){ xmlData = <LocalisedText><textItem identifier="PlayBtnMenu"><en_us>Play</en_us><en_uk>Play</en_uk><nl>Spelen</nl><fr>Jouer</fr><de>Spielen</de><es>Jugar</es><br>Jogar</br><pt>Jogar</pt><it>Gioca</it><se>Spela</se><pl>Graj</pl><ru>Играть</ru><id>Mainkan</id><ar>Play</ar><jp>Play</jp><cn>Play</cn><es_mx>Jugar</es_mx><es_ar>Jugar</es_ar></textItem><textItem identifier="MoreGamesBtnMenu"><en_us>More Games</en_us><en_uk>More Games</en_uk><nl>Meer spelletjes</nl><fr>Plus de jeux</fr><de>Mehr Spiele</de><es>Más juegos</es><br>Mais jogos</br><pt>Mais jogos</pt><it>Più giochi</it><se>Fler spel</se><pl>Wiecej gier</pl><ru>Другие игры</ru><id>Game Lainnya</id><ar>More Games</ar><jp>More Games</jp><cn>More Games</cn><es_mx>Más juegos</es_mx><es_ar>Más juegos</es_ar></textItem><textItem identifier="CreditsBtnMenu"><en_us>Credits</en_us><en_uk>Credits</en_uk><nl>De makers</nl><fr>Crédits</fr><de>Credits</de><es>Créditos</es><br>Créditos</br><pt>Créditos</pt><it>Riconoscimenti</it><se>Tacklista</se><pl>Autorzy</pl><ru>Авторы</ru><id>Kredit</id><ar>Credits</ar><jp>Credits</jp><cn>Credits</cn><es_mx>Créditos</es_mx><es_ar>Créditos</es_ar></textItem><textItem identifier="DevCredits"><en_us>Developer:</en_us><en_uk>Developer:</en_uk><nl>Ontwikkelaar:</nl><fr>Développeur :</fr><de>Entwickler:</de><es>Desarrollador:</es><br>Desenvolvedor:</br><pt>Programador:</pt><it>Sviluppatore </it><se>Utvecklare:</se><pl>Developer:</pl><ru>Разработчик:</ru><id>Pengembang:</id><ar>Developer:</ar><jp>Developer:</jp><cn>Developer:</cn><es_mx>Desarrollador:</es_mx><es_ar>Desarrollador:</es_ar></textItem><textItem identifier="SponsorCredits"><en_us>Sponsor:</en_us><en_uk>Sponsor:</en_uk><nl>Sponsor:</nl><fr>Sponsor :</fr><de>Sponsor:</de><es>Patrocinador:</es><br>Patrocinador:</br><pt>Patrocinador:</pt><it>Sponsor:</it><se>Sponsor:</se><pl>Sponsor:</pl><ru>Спонсор:</ru><id>Sponsor:</id><ar>Sponsor:</ar><jp>Sponsor:</jp><cn>Sponsor:</cn><es_mx>Patrocinador:</es_mx><es_ar>Auspiciante:</es_ar></textItem><textItem identifier="MusicCredits"><en_us>Music:</en_us><en_uk>Music:</en_uk><nl>Muziek:</nl><fr>Musique :</fr><de>Musik:</de><es>Música:</es><br>Música:</br><pt>Música:</pt><it>Musica:</it><se>Musik:</se><pl>Muzyka:</pl><ru>Музыка:</ru><id>Musik:</id><ar>Music:</ar><jp>Music:</jp><cn>Music:</cn><es_mx>Música:</es_mx><es_ar>Música:</es_ar></textItem><textItem identifier="SoundsCredits"><en_us>Sound FX:</en_us><en_uk>Sound FX:</en_uk><nl>Geluid:</nl><fr>Effets sonores :</fr><de>Soundeffekte:</de><es>Efectos sonido:</es><br>Efeitos sonoros:</br><pt>Efeitos sonoros:</pt><it>Effetti audio:</it><se>Ljudeffekter:</se><pl>Dzwieki FX:</pl><ru>Звук:</ru><id>Efek Suara:</id><ar>Sound FX:</ar><jp>Sound FX:</jp><cn>Sound FX:</cn><es_mx>Efectos de sonido:</es_mx><es_ar>Efectos de sonido:</es_ar></textItem><textItem identifier="BackBtnCredits"><en_us>Back</en_us><en_uk>Back</en_uk><nl>Terug</nl><fr>Retour</fr><de>Zurück</de><es>Atrás</es><br>Voltar</br><pt>Voltar</pt><it>Indietro</it><se>Tillbaka</se><pl>Powrót</pl><ru>Назад</ru><id>Kembali</id><ar>Back</ar><jp>Back</jp><cn>Back</cn><es_mx>Atrás</es_mx><es_ar>Atrás</es_ar></textItem><textItem identifier="LvPres"><en_us>Level [x]</en_us><en_uk>Level [x]</en_uk><nl>Level [x]</nl><fr>Niveau [x]</fr><de>Level [x]</de><es>Nivel [x]</es><br>Fase [x]</br><pt>Nível [x]</pt><it>Livello [x]</it><se>Nivå [x]</se><pl>Poziom [x]</pl><ru>Уровень [x]</ru><id>Level [x]</id><ar>Level [x]</ar><jp>Level [x]</jp><cn>Level [x]</cn><es_mx>Nivel [x]</es_mx><es_ar>Nivel [x]</es_ar></textItem><textItem identifier="StarsPres"><en_us>Collect [x] stars</en_us><en_uk>Collect [x] stars</en_uk><nl>Verzamel [x] sterren</nl><fr>Collecte [x] étoiles</fr><de>Sammle [x] Sterne</de><es>Recoge [x] estrellas</es><br>Pegue [x] estrelas</br><pt>Apanha [x] estrelas</pt><it>Prendi [x] stelle</it><se>Samla [x] stjärnor</se><pl>Zbierz [x] gwiazdek</pl><ru>Собери [x] звезд</ru><id>Kumpulkan [x] bintang</id><ar>Collect [x] stars</ar><jp>Collect [x] stars</jp><cn>Collect [x] stars</cn><es_mx>Recoge [x] estrellas</es_mx><es_ar>Juntá [x] estrellas</es_ar></textItem><textItem identifier="MovesPres"><en_us>Acrobatics</en_us><en_uk>Acrobatics</en_uk><nl>Acrobatiek</nl><fr>Acrobaties</fr><de>Akrobatik</de><es>Movimientos</es><br>Truques</br><pt>Truques</pt><it>Acrobazie</it><se>Akrobatik</se><pl>Akrobacje</pl><ru>Акробатика</ru><id>Akrobatik</id><ar>Acrobatics</ar><jp>Acrobatics</jp><cn>Acrobatics</cn><es_mx>Acrobacias</es_mx><es_ar>Acrobacias</es_ar></textItem><textItem identifier="WaterPres"><en_us>In the water:</en_us><en_uk>In the water:</en_uk><nl>Waterstunts:</nl><fr>Dans l&apos;eau :</fr><de>Wasserkunststücke:</de><es>Acrobacias acuáticas:</es><br>Acrobacias aquáticas:</br><pt>Acrobacias na água:</pt><it>Acrobazie in acqua:</it><se>Vattentrick:</se><pl>Triki w wodzie:</pl><ru>Трюки в воде:</ru><id>Pertunjukan air:</id><ar>In the water:</ar><jp>In the water:</jp><cn>In the water:</cn><es_mx>Proezas acuáticas:</es_mx><es_ar>Acrobacias acuáticas:</es_ar></textItem><textItem identifier="Air1Pres"><en_us>In the air, after a jump:</en_us><en_uk>In the air, after a jump:</en_uk><nl>Luchtstunts:</nl><fr>Dans les airs, après un saut:</fr><de>Luftkunststücke:</de><es>Acrobacias aéreas:</es><br>Acrobacias aéreas:</br><pt>Acrobacias no ar:</pt><it>Acrobazie in aria:</it><se>Lufttrick:</se><pl>Triki w powietrzu:</pl><ru>Трюки в воздухе:</ru><id>Pertunjukan udara:</id><ar>In the air, after a jump:</ar><jp>In the air, after a jump:</jp><cn>In the air, after a jump:</cn><es_mx>Proezas aéreas:</es_mx><es_ar>Acrobacias aéreas:</es_ar></textItem><textItem identifier="Air2Pres"><en_us>In the air, after a jump (more):</en_us><en_uk>In the air, after a jump (more):</en_uk><nl>Luchtstunts:</nl><fr>Dans les airs, après un saut: (suite):</fr><de>Luftkunststücke:</de><es>Acrobacias aéreas:</es><br>Acrobacias aéreas:</br><pt>Acrobacias no ar:</pt><it>Acrobazie in aria:</it><se>Lufttrick:</se><pl>Triki w powietrzu:</pl><ru>Трюки в воздухе:</ru><id>Pertunjukan udara:</id><ar>In the air, after a jump (more):</ar><jp>In the air, after a jump (more):</jp><cn>In the air, after a jump (more):</cn><es_mx>Proezas aéreas:</es_mx><es_ar>Acrobacias aéreas:</es_ar></textItem><textItem identifier="AnyPres"><en_us>In any situation:</en_us><en_uk>In any situation:</en_uk><nl>Stunts:</nl><fr>En tout temps :</fr><de>Kunststücke:</de><es>Acrobacias:</es><br>Acrobacias:</br><pt>Acrobacias:</pt><it>Acrobazie:</it><se>Trick:</se><pl>Triki:</pl><ru>Трюки:</ru><id>Pertunjukan:</id><ar>In any situation:</ar><jp>In any situation:</jp><cn>In any situation:</cn><es_mx>Proezas:</es_mx><es_ar>Movimientos:</es_ar></textItem><textItem identifier="Move1Pres"><en_us>Swim</en_us><en_uk>Swim</en_uk><nl>Zwemmen</nl><fr>Nager</fr><de>Schwimmen</de><es>Nadar</es><br>Nadar</br><pt>Nadar</pt><it>Nuota</it><se>Simma</se><pl>Pływanie</pl><ru>Плыть</ru><id>Berenang</id><ar>Swim</ar><jp>Swim</jp><cn>Swim</cn><es_mx>Nadar</es_mx><es_ar>Nadar</es_ar></textItem><textItem identifier="Move2Pres"><en_us>Double Jump</en_us><en_uk>Double Jump</en_uk><nl>Dubbele sprong</nl><fr>Double saut</fr><de>Doppelsprung</de><es>Salto doble</es><br>Pulo Duplo</br><pt>Duplo Salto</pt><it>Doppio salto</it><se>Dubbelhopp</se><pl>Podwójny skok</pl><ru>Двойной прыжок</ru><id>Lompat Ganda</id><ar>Double Jump</ar><jp>Double Jump</jp><cn>Double Jump</cn><es_mx>Doble salto</es_mx><es_ar>Salto doble</es_ar></textItem><textItem identifier="Move3Pres"><en_us>Dash</en_us><en_uk>Dash</en_uk><nl>Sprint</nl><fr>Impulsion</fr><de>Blitzsprung</de><es>Sprint</es><br>Impulso</br><pt>Sprint</pt><it>Sprint</it><se>Rusa</se><pl>Zryw w przód</pl><ru>Рывок</ru><id>Menerjang</id><ar>Dash</ar><jp>Dash</jp><cn>Dash</cn><es_mx>Arremeter</es_mx><es_ar>Embestida</es_ar></textItem><textItem identifier="Move4Pres"><en_us>Dive</en_us><en_uk>Dive</en_uk><nl>Duik</nl><fr>Plongeon</fr><de>Tauchen</de><es>Buceo</es><br>Mergulho</br><pt>Mergulho</pt><it>Tuffo</it><se>Dyka</se><pl>Nurkowanie</pl><ru>Нырок</ru><id>Menyelam</id><ar>Dive</ar><jp>Dive</jp><cn>Dive</cn><es_mx>Sumergirse</es_mx><es_ar>Bucear</es_ar></textItem><textItem identifier="Move5Pres"><en_us>Triple Jump</en_us><en_uk>Triple Jump</en_uk><nl>Driedubbele sprong</nl><fr>Triple saut</fr><de>Dreifachsprung</de><es>Salto triple</es><br>Pulo Triplo</br><pt>Triplo Salto</pt><it>Triplo salto</it><se>Trippelhopp</se><pl>Potrójny skok</pl><ru>Тройной прыжок</ru><id>Lompat Lipat Tiga</id><ar>Triple Jump</ar><jp>Triple Jump</jp><cn>Triple Jump</cn><es_mx>Triple salto</es_mx><es_ar>Salto triple</es_ar></textItem><textItem identifier="Move6Pres"><en_us>Dead Leaf</en_us><en_uk>Dead Leaf</en_uk><nl>Zweefvlucht</nl><fr>Feuille morte</fr><de>Gleiten</de><es>Planeo</es><br>Planeio</br><pt>Planar</pt><it>Planata</it><se>Glidhopp</se><pl>Slizg</pl><ru>Парение</ru><id>Melayang</id><ar>Dead Leaf</ar><jp>Dead leaf</jp><cn>Dead Leaf</cn><es_mx>Planear</es_mx><es_ar>Planear</es_ar></textItem><textItem identifier="Move7Pres"><en_us>Rounded Dive</en_us><en_uk>Rounded Dive</en_uk><nl>Aflopende duik</nl><fr>Plongeon arrondi</fr><de>Rundsprung</de><es>Buceo en círculo</es><br>Cambalhota</br><pt>Mortal</pt><it>Tuffo arrotondato</it><se>Dyka i båge</se><pl>Nurkowanie po okregu</pl><ru>Плавный нырок</ru><id>Putaran Menyelam</id><ar>Rounded Dive</ar><jp>Rounded Dive</jp><cn>Rounded Dive</cn><es_mx>Inmersión curva</es_mx><es_ar>Inmersión curva</es_ar></textItem><textItem identifier="Move8Pres"><en_us>Sonar</en_us><en_uk>Sonar</en_uk><nl>Sonar</nl><fr>Sonar</fr><de>Sonar</de><es>Sónar</es><br>Sonar</br><pt>Sonar</pt><it>Onda sonora</it><se>Ekolod</se><pl>Sonar</pl><ru>Сонар</ru><id>Sonar</id><ar>Sonar</ar><jp>Sonar</jp><cn>Sonar</cn><es_mx>Sónar</es_mx><es_ar>Sonar</es_ar></textItem><textItem identifier="Move1Desc"><en_us>Use the arrow keys to swim. If you swim to the surface, you&apos;ll automatically jump.</en_us><en_uk>Use the arrow keys to swim. If you swim to the surface, you will automatically jump.</en_uk><nl>Gebruik de pijltjestoetsen om te zwemmen. Als je naar boven zwemt, spring je vanzelf.</nl><fr>Utilise les flèches directionnelles pour nager. Si tu montes à la surface, tu sauteras automatiquement.</fr><de>Benutze die Pfeiltasten zum Schwimmen. Wenn du an die Oberfläche schwimmst, springst du automatisch.</de><es>Utiliza las teclas de flecha para nadar. Si nadas hacia la superficie, saltarás automáticamente.</es><br>Use as teclas de direção para nadar. Quando você toca na superfície, saltará automaticamente.</br><pt>Usa as setas para nadar. Se chegares à superfície, saltarás automaticamente.</pt><it>Usa i tasti freccia per nuotare. Se nuoti in superficie salterai automaticamente.</it><se>Simma med hjälp av piltangenterna. Om du simmar till ytan hoppar du automatiskt.</se><pl>Użyj klawiszy strzałek, aby pływać. Jeśli płyniesz w kierunku powierzchni, automatycznie wykonasz skok.</pl><ru>Плыви, используя стрелки. Подплыв к поверхности, ты автоматически прыгнешь.</ru><id>Gunakan tombol-tombol bertanda panah untuk berenang. Jika kamu berenang ke permukaan, kamu akan secara otomatis melompat.</id><ar>Use the arrow keys to swim. If you swim to the surface, you&apos;ll automatically jump.</ar><jp>Use the arrow keys to swim. If you swim to the surface, you&apos;ll automatically jump.</jp><cn>Use the arrow keys to swim. If you swim to the surface, you&apos;ll automatically jump.</cn><es_mx>Usa las teclas direccionales para nadar. Si nadas en la superficie, saltarás automáticamente.</es_mx><es_ar>Usá las teclas de flecha para nadar. Si nadas hasta la superficie, vas a saltar automáticamente.</es_ar></textItem><textItem identifier="Move2Desc"><en_us>Press Up while in the air for a double jump.</en_us><en_uk>Press Up when airborne for a double jump.</en_uk><nl>Druk in de lucht op het pijltje omhoog voor een dubbele sprong.</nl><fr>Appuie sur la flèche du haut une fois en l&apos;air pour faire un double saut.</fr><de>Drücke die Pfeiltaste nach oben für einen Doppelsprung.</de><es>Pulsa Arriba estando en el aire para dar un salto doble.</es><br>Pressione para cima para realizar um pulo duplo.</br><pt>Prime Cima no ar para executares um duplo salto.</pt><it>Premi Su mentre sei in aria per fare un doppio salto.</it><se>Tryck pil upp i luften för dubbelhopp.</se><pl>Naciśnij strzałkę w górę, kiedy będziesz w powietrzu, aby wykonać podwójny skok.</pl><ru>Находясь в воздухе, нажми стрелку вверх для двойного прыжка.</ru><id>Tekan Atas ketika di udara untuk melompat ganda.</id><ar>Press Up while in the air for a double jump.</ar><jp>Press Up while in the air for a double jump.</jp><cn>Press Up while in the air for a double jump.</cn><es_mx>Pulsa la tecla hacia arriba cuando estés en el aire para un salto doble.</es_mx><es_ar>Presioná Arriba en el aire para hacer un salto doble.</es_ar></textItem><textItem identifier="Move3Desc"><en_us>Press Right for a quick dash forward. </en_us><en_uk>Press Right for a quick dash forward. </en_uk><nl>Druk op het pijltje naar rechts voor een sprint.</nl><fr>Appuie sur la flèche de droite pour t&apos;élancer rapidement en avant.</fr><de>Drücke die rechte Pfeiltaste für einen schnellen Blitzsprung nach vorn.</de><es>Pulsa Derecha para hacer un sprint rápido hacia adelante.</es><br>Pressione para direita para um impulso rápido. </br><pt>Prime Direita para um sprint rápido para a frente. </pt><it>Premi Destra per fare uno sprint veloce in avanti.</it><se>Tryck pil höger för att rusa framåt.</se><pl>Naciśnij strzałkę w prawo, aby wykonać szybki zryw w przód.</pl><ru>Нажми стрелку вправо для быстрого рывка вперед.</ru><id>Tekan Kanan untuk maju menerjang dengan cepat.</id><ar>Press Right for a quick dash forward. </ar><jp>Press Right for a quick dash forward. </jp><cn>Press Right for a quick dash forward. </cn><es_mx>Pulsa la tecla hacia la derecha para arremeter rápidamente.</es_mx><es_ar>Presioná Derecha para hacer un embestida rápida hacia delante.</es_ar></textItem><textItem identifier="Move4Desc"><en_us>Press Down for a vertical plunge into the water.</en_us><en_uk>Press Down for a vertical plunge into the water.</en_uk><nl>Druk op het pijltje omlaag voor een verticale duik in het water.</nl><fr>Appuie sur la flèche du bas pour faire un plongeon à la verticale.</fr><de>Drücke die Pfeiltaste nach unten, um senkrecht ins Wasser einzutauchen.</de><es>Pulsa Abajo para zambullirte en vertical en el agua.</es><br>Pressione para baixo para um mergulho vertical.</br><pt>Prime Baixo para um mergulho na vertical.</pt><it>Premi Giù per fare un tuffo verticale in acqua.</it><se>Tryck pil ned för ett lodrätt dyk ner i vattnet.</se><pl>Naciśnij strzałkę w dół, aby wykonać pionowy skok do wody.</pl><ru>Нажми стрелку вниз для вертикального нырка в воду.</ru><id>Tekan Bawah untuk sebuah terjun vertikal ke dalam air.</id><ar>Press Down for a vertical plunge into the water.</ar><jp>Press Down for a vertical plunge into the water.</jp><cn>Press Down for a vertical plunge into the water.</cn><es_mx>Pulsa la tecla hacia abajo para lograr sumergirte verticalmente.</es_mx><es_ar>Presioná abajo para una sumergida vertical en el agua.</es_ar></textItem><textItem identifier="Move5Desc"><en_us>Press Up twice while in the air for a triple jump.</en_us><en_uk>Press Up twice when airborne for a triple jump.</en_uk><nl>Druk in de lucht 2x op het pijltje omhoog voor een driedubbele sprong.</nl><fr>Une fois en l&apos;air, appuie deux fois sur la flèche du haut pour un triple saut.</fr><de>Drücke zweimal die Pfeiltaste nach oben für einen Dreifachsprung.</de><es>Pulsa Arriba dos veces estando en el aire para dar un salto triple.</es><br>Pressione para cima duas vezes para realizar um pulo triplo.</br><pt>Prime Cima duas vezes no ar para executares um triplo salto.</pt><it>Premi due volte il tasto Su mentre sei in aria per fare un triplo salto.</it><se>Tryck pil upp två gånger i luften för ett trippelhopp.</se><pl>Naciśnij strzałkę w górę dwukrotnie, kiedy będziesz w powietrzu, aby wykonać potrójny skok.</pl><ru>Находясь в воздухе, нажми стрелку вверх дважды для тройного прыжка.</ru><id>Tekan Atas dua kali ketika di udara untuk sebuah lompat lipat tiga.</id><ar>Press Up twice while in the air for a triple jump.</ar><jp>Press Up twice while in the air for a triple jump.</jp><cn>Press Up twice while in the air for a triple jump.</cn><es_mx>Pulsa dos veces la tecla hacia arriba cuando estés en el aire para un triple salto.</es_mx><es_ar>Presioná Arriba dos veces en el aire para hacer un triple salto.</es_ar></textItem><textItem identifier="Move6Desc"><en_us>Press Right and then Up to glide.</en_us><en_uk>Press Right and then Up to glide.</en_uk><nl>Druk op het pijltje naar rechts en dan op omhoog voor een zweefvlucht.</nl><fr>Appuie sur la flèche de droite puis sur celle du haut pour réaliser ce saut.</fr><de>Drücke erst die rechte Pfeiltaste, dann die Pfeiltaste nach oben zum Gleiten.</de><es>Pulsa Derecha y Arriba para hacer un planeo.</es><br>Pressione para direita e depois para cima para realizar um planeio.</br><pt>Prime Direita e depois Cima para planares.</pt><it>Premi i tasti freccia Destra e poi Su per planare.</it><se>Tryck pil höger och sedan upp för att glidhoppa.</se><pl>Naciśnij strzałkę w prawo, a następnie strzałkę w górę, aby wykonać ślizg.</pl><ru>Нажми стрелку вправо, а затем вверх, чтобы выполнить парение.</ru><id>Tekan Kanan dan kemudian Atas untuk melayang.</id><ar>Press Right and then Up to glide.</ar><jp>Press Right and then Up to glide.</jp><cn>Press Right and then Up to glide.</cn><es_mx>Pulsa la tecla hacia la derecha y después hacia arriba para planear.</es_mx><es_ar>Presioná derecha y luego Arriba para planear.</es_ar></textItem><textItem identifier="Move7Desc"><en_us>Press Right and then Down for a rounded dive.</en_us><en_uk>Press Right and then Down for a rounded dive.</en_uk><nl>Druk op het pijltje naar rechts en dan op omlaag voor een aflopende duik.</nl><fr>Appuie sur la flèche de droite puis sur celle du bas pour faire une plongée arrondie.</fr><de>Drücke erst die rechte Pfeiltaste, dann die Pfeiltaste nach unten für einen Rundsprung.</de><es>Pulsa Derecha y Abajo para hacer un buceo en círculo.</es><br>Pressione para direita e depois para baixo para realizar uma cambalhota.</br><pt>Prime Direita e depois Baixo para executares um mortal.</pt><it>Premi i tasti freccia Destra e poi Giù per fare un tuffo arrotondato.</it><se>Tryck pil höger och sedan ned för att dyka i en båge. </se><pl>Naciśnij strzałkę w prawo, a następnie strzałkę w dół, aby wykonać nurkowanie po okręgu.</pl><ru>Нажми стрелку вправо, а затем вниз, чтобы выполнить плавный нырок.</ru><id>Tekan Kanan dan kemudian Bawah untuk sebuah putaran menyelam.</id><ar>Press Right and then Down for a rounded dive.</ar><jp>Press Right and then Down for a rounded dive.</jp><cn>Press Right and then Down for a rounded dive.</cn><es_mx>Pulsa la tecla hacia la derecha y después hacia abajo para dar una curva sumergirte.</es_mx><es_ar>Presioná derecha y luego abajo para una inmersión curva.</es_ar></textItem><textItem identifier="Move8Desc"><en_us>Press Space to shoot a sonar wave. Use it to catch special stars!</en_us><en_uk>Press Space to shoot a sonar wave. Use it to catch special stars!</en_uk><nl>Druk op de spatiebalk voor een sonargolf. Gebruik deze stunt om sterren te verzamelen!</nl><fr>Appuie sur Espace pour lancer une onde sonar. Utilise la pour collecter des étoiles spéciales!</fr><de>Drücke die Leertaste, um Schallwellen zu erzeugen. Benutze dieses Kunststück zum Sammeln von Sternen!</de><es>Pulsa Espacio para usar el sónar. Así podrás recoger estrellas.</es><br>Pressione Espaço para enviar uma onda de sonar. Use este truque para pegar as estrelas!</br><pt>Prime Espaço para enviares uma onda de sonar. Usa esta acrobacia para apanhares estrelas!</pt><it>Premi Spazio per un&apos;onda sonora. Usa quest&apos;acrobazia per prendere stelle!</it><se>Tryck mellanslag för en ekolodsvåg. Använd den för att samla stjärnor!</se><pl>Naciśnij spację, aby użyć fali sonaru. Wykorzystaj ten trik, aby zbierać gwiazdki!</pl><ru>Нажимай пробел, чтобы использовать ультразвук. Это поможет собирать звезды!</ru><id>Tekan Spasi untuk gelombang sonar. Gunakan untuk menangkap bintang khusus!</id><ar>Press Space to shoot a sonar wave. Use it to catch special stars!</ar><jp>Press Space to shoot a sonar wave. Use it to catch special stars!</jp><cn>Press Space to shoot a sonar wave. Use it to catch special stars!</cn><es_mx>Pulsa la barra espaciadora para enviar una onda sonora. ¡Usa esta proeza para recoger estrellas!</es_mx><es_ar>Presioná Espacio para una onda de sonar. ¡Usala para juntar estrellas!</es_ar></textItem><textItem identifier="PracticeBtn"><en_us>Practice</en_us><en_uk>Practice</en_uk><nl>Oefenen</nl><fr>Entraînement</fr><de>Üben</de><es>Practicar</es><br>Treinamento</br><pt>Treinar</pt><it>Fai pratica</it><se>Öva</se><pl>Trening</pl><ru>Тренировка</ru><id>Latihan</id><ar>Practice</ar><jp>Practice</jp><cn>Practice</cn><es_mx>Practicar</es_mx><es_ar>Practicar</es_ar></textItem><textItem identifier="ReadyBtn"><en_us>Ready!</en_us><en_uk>Ready!</en_uk><nl>Klaar!</nl><fr>Prêt !</fr><de>Fertig!</de><es>¡Listo!</es><br>Preparado!</br><pt>A postos!</pt><it>Pronti!</it><se>Redo!</se><pl>Gotów!</pl><ru>Начнем!</ru><id>Siap!</id><ar>Ready!</ar><jp>Ready!</jp><cn>Ready!</cn><es_mx>¡Listo!</es_mx><es_ar>¡Listo!</es_ar></textItem><textItem identifier="LvResult1"><en_us>Level [x] – result</en_us><en_uk>Level [x] – result</en_uk><nl>Level [x]</nl><fr>Niveau [x] - résultat</fr><de>Level [x]</de><es>Nivel [x]</es><br>Fase [x]</br><pt>Nível [x]</pt><it>Livello [x]</it><se>Nivå [x]</se><pl>Poziom [x]</pl><ru>Уровень [x]</ru><id>Level [x]</id><ar>Level [x] – result</ar><jp>Level [x] – result</jp><cn>Level [x] – result</cn><es_mx>Nivel [x]</es_mx><es_ar>Nivel [x]</es_ar></textItem><textItem identifier="LvResult2"><en_us>Level [x] - practice</en_us><en_uk>Level [x] - practice</en_uk><nl>Oefenlevel [x]</nl><fr>Entraînement du niveau [x]</fr><de>Level [x] üben</de><es>Nivel de práctica [x]</es><br>Você treinou a fase [X]</br><pt>Treinaste no nível [X]</pt><it>Livello di pratica [x]</it><se>Övningsnivå [x]</se><pl>Trening poziomu [x]</pl><ru>Уровень [x] – тренировка</ru><id>Latihan Level [x]</id><ar>Level [x] - practice</ar><jp>Level [x] - practice</jp><cn>Level [x] - practice</cn><es_mx>Nivel de práctica [x]</es_mx><es_ar>Nivel de práctica [x]</es_ar></textItem><textItem identifier="StarsResult"><en_us>Stars</en_us><en_uk>Stars</en_uk><nl>Sterren</nl><fr>Étoiles </fr><de>Sterne</de><es>Estrellas</es><br>Estrelas</br><pt>Estrelas</pt><it>Stelle</it><se>Stjärnor</se><pl>Gwiazdki</pl><ru>Звезд</ru><id>Bintang</id><ar>Stars</ar><jp>Stars</jp><cn>Stars</cn><es_mx>Estrellas</es_mx><es_ar>Estrellas</es_ar></textItem><textItem identifier="NeededResult"><en_us>Target</en_us><en_uk>Target</en_uk><nl>Doel</nl><fr>Cible</fr><de>Ziel</de><es>Objetivo</es><br>Meta</br><pt>Objectivo</pt><it>Obiettivo</it><se>Mål</se><pl>Cel</pl><ru>Цель</ru><id>Sasaran</id><ar>Target</ar><jp>Target</jp><cn>Target</cn><es_mx>Objetivo</es_mx><es_ar>Objetivo</es_ar></textItem><textItem identifier="CollectedResult"><en_us>Collected</en_us><en_uk>Collected</en_uk><nl>Verzameld</nl><fr>Collecté</fr><de>Gesammelt</de><es>Recogidas</es><br>Coletadas</br><pt>Apanhadas</pt><it>Prese</it><se>Samlade</se><pl>Zebrano</pl><ru>Собрано</ru><id>Terkumpul</id><ar>Collected</ar><jp>Collected</jp><cn>Collected</cn><es_mx>Recogidas</es_mx><es_ar>Recogidas</es_ar></textItem><textItem identifier="Passed"><en_us>SUCCESS!</en_us><en_uk>SUCCESS!</en_uk><nl>FANTASTISCH!</nl><fr>SUCCÈS!</fr><de>ERFOLG!</de><es>¡SUPERADO!</es><br>SUCESSO!</br><pt>SUCESSO!</pt><it>SUCCESSO!</it><se>JÄTTEBRA!</se><pl>SUKCES!</pl><ru>ХОРОШО!</ru><id>SUKSES!</id><ar>SUCCESS!</ar><jp>SUCCESS!</jp><cn>SUCCESS!</cn><es_mx>¡BRAVO!</es_mx><es_ar>¡ÉXITO!</es_ar></textItem><textItem identifier="Perfect"><en_us>PERFECT!</en_us><en_uk>PERFECT!</en_uk><nl>PERFECT!</nl><fr>PARFAIT!</fr><de>PERFEKT!</de><es>¡PERFECTO!</es><br>PERFEITO!</br><pt>PERFEITO!</pt><it>PERFETTO!</it><se>PERFEKT!</se><pl>DOSKONALE!</pl><ru>СУПЕР!</ru><id>SEMPURNA!</id><ar>PERFECT!</ar><jp>PERFECT!</jp><cn>PERFECT!</cn><es_mx>¡PERFECTO!</es_mx><es_ar>¡PERFECTO!</es_ar></textItem><textItem identifier="WellDone"><en_us>Well done!</en_us><en_uk>Well done!</en_uk><nl>Goed gedaan!</nl><fr>Bien joué!</fr><de>Gut gemacht!</de><es>¡Muy bien!</es><br>Muito bem!</br><pt>Muito bem!</pt><it>Ben fatto!</it><se>Bra gjort!</se><pl>Swietnie!</pl><ru>Неплохо!</ru><id>Bagus!</id><ar>Well done!</ar><jp>Well done!</jp><cn>Well done!</cn><es_mx>¡Bien hecho!</es_mx><es_ar>¡Bien hecho!</es_ar></textItem><textItem identifier="NeedPractice"><en_us>Practice some more…</en_us><en_uk>Practice a little more…</en_uk><nl>Nog even oefenen...</nl><fr>Entraîne-toi encore…</fr><de>Übe noch etwas mehr…</de><es>Practica algo más…</es><br>Treine um pouco mais...</br><pt>Treina mais um pouco…</pt><it>Fai un po&apos; più di pratica...</it><se>Öva lite mer ...</se><pl>Jeszcze troche pocwicz...</pl><ru>Потренируйся еще...</ru><id>Latihan lagi…</id><ar>Practice some more…</ar><jp>Practice some more…</jp><cn>Practice some more…</cn><es_mx>Necesitas más práctica...</es_mx><es_ar>Practicá un poco más…</es_ar></textItem><textItem identifier="GameOver"><en_us>Game Over</en_us><en_uk>Game Over</en_uk><nl>Game over</nl><fr>Partie terminée</fr><de>Game over</de><es>Fin del juego</es><br>Acabou</br><pt>Acabou</pt><it>Gioco finito</it><se>Game over</se><pl>Koniec gry</pl><ru>Конец игры</ru><id>Game Tamat</id><ar>Game Over</ar><jp>Game Over</jp><cn>Game Over</cn><es_mx>Fin del juego</es_mx><es_ar>Fin del juego</es_ar></textItem><textItem identifier="EndGameBtn"><en_us>Quit</en_us><en_uk>Quit</en_uk><nl>Stoppen</nl><fr>Quitter</fr><de>Verlassen</de><es>Salir</es><br>Sair</br><pt>Sair</pt><it>Esci</it><se>Avsluta</se><pl>Zakoncz</pl><ru>Выход</ru><id>Berhenti</id><ar>Quit</ar><jp>Quit</jp><cn>Quit</cn><es_mx>Salir</es_mx><es_ar>Salir</es_ar></textItem><textItem identifier="EndGameDesc"><en_us>Submit your score/Go to the menu</en_us><en_uk>Submit your score/Go to the menu</en_uk><nl>Verzend je score en ga terug naar het menu.</nl><fr>Envoyer le score/Retourner au Menu.</fr><de>Trage deine Punkte ein und kehre zum Menü zurück.</de><es>Envía tu puntuación y vuelve al menú.</es><br>Envie sua pontuação e retorne para o menu.</br><pt>Envia a tua pontuação e volta para o menu.</pt><it>Invia il tuo punteggio e torna al menu.</it><se>Skicka din poäng och återvänd till menyn.</se><pl>Zapisz swój wynik i wróć do menu.</pl><ru>Сохранить счет и вернуться в меню.</ru><id>Kirim skormu dan kembali ke Menu.</id><ar>Submit your score/Go to the menu</ar><jp>Submit your score/Go to the menu</jp><cn>Submit your score/Go to the menu</cn><es_mx>Enviar tu puntaje y regresar al menú.</es_mx><es_ar>Envía tu puntaje y volvé al menú.</es_ar></textItem><textItem identifier="ContinueBtn"><en_us>Try Again</en_us><en_uk>Try Again</en_uk><nl>Opnieuw proberen</nl><fr>Réessayer</fr><de>Nochmal versuchen</de><es>Volver a intentarlo</es><br>Tente de novo</br><pt>Tenta outra vez</pt><it>Riprova</it><se>Försök igen</se><pl>Spróbuj ponownie</pl><ru>Еще раз</ru><id>Coba Lagi</id><ar>Try Again</ar><jp>Try Again</jp><cn>Try Again</cn><es_mx>Vuelve a intentarlo</es_mx><es_ar>Volvé a intentarlo</es_ar></textItem><textItem identifier="ContinueDesc"><en_us>This will reset your score.</en_us><en_uk>This will reset your score.</en_uk><nl>Hiermee wordt je score opnieuw ingesteld.</nl><fr>Cela remettra ton score à zéro.</fr><de>Hierdurch werden deine Punkte zurückgesetzt.</de><es>Tu puntuación se restablecerá.</es><br>Isso vai zerar sua pontuação.</br><pt>Isto vai reiniciar a tua pontuação.</pt><it>Questo azzererà il tuo punteggio.</it><se>Detta nollställer din poäng.</se><pl>To spowoduje zresetowanie twojego wyniku.</pl><ru>Твой результат будет стерт.</ru><id>Ini akan mereset skormu.</id><ar>This will reset your score.</ar><jp>This will reset your score.</jp><cn>This will reset your score.</cn><es_mx>Esto restablecerá tu puntaje.</es_mx><es_ar>Restablecerá tu puntaje.</es_ar></textItem><textItem identifier="EasyPassed"><en_us>Novice levels complete!</en_us><en_uk>Novice levels complete!</en_uk><nl>Beginnerslevels uitgespeeld!</nl><fr>Niveaux débutants réussis !</fr><de>Anfänger-Level beendet!</de><es>¡Niveles de principiante finalizados!</es><br>Fases de Iniciante concluídas!</br><pt>Níveis de principiante terminados!</pt><it>Livelli apprendista completi!</it><se>Nybörjarnivåer klarade!</se><pl>Ukonczono poziomy dla poczatkujacych!</pl><ru>Уровни для новичков пройдены!</ru><id>Level pemula selesai!</id><ar>Novice levels complete!</ar><jp>Novice levels complete!</jp><cn>Novice levels complete!</cn><es_mx>¡Niveles de novato completados!</es_mx><es_ar>¡Niveles de novato completados!</es_ar></textItem><textItem identifier="MediumPassed"><en_us>Intermediate levels complete!</en_us><en_uk>Intermediate levels complete!</en_uk><nl>Levels voor gevorderden voltooid!</nl><fr>Niveaux intermédiaires réussis !</fr><de>Fortgeschrittenen-Level beendet!</de><es>¡Niveles intermedios finalizados!</es><br>Fases de Intermédio concluídas!</br><pt>Níveis intermédios terminados!</pt><it>Livelli intermedi completi!</it><se>Medelsvåra nivåer klarade!</se><pl>Ukonczono poziomy dla sredniozaawansowanych!</pl><ru>Средние уровни пройдены!</ru><id>Level menengah selesai!</id><ar>Intermediate levels complete!</ar><jp>Intermediate levels complete!</jp><cn>Intermediate levels complete!</cn><es_mx>¡Niveles intermedios completados!</es_mx><es_ar>¡Niveles intermedios completados!</es_ar></textItem><textItem identifier="AdvancedPassed"><en_us>Advanced levels complete!</en_us><en_uk>Advanced levels complete!</en_uk><nl>Expertlevels voltooid!</nl><fr>Niveaux avancés réussis !</fr><de>Profi-Level beendet!</de><es>¡Niveles avanzados finalizados!</es><br>Fases de Avançado concluídas!</br><pt>Níveis avançados terminados!</pt><it>Livelli avanzati completi!</it><se>Avancerade nivåer klarade!</se><pl>Ukonczono poziomy dla zaawansowanych!</pl><ru>Сложные уровни пройдены!</ru><id>Level lanjut selesai!</id><ar>Advanced levels complete!</ar><jp>Advanced levels complete!</jp><cn>Advanced levels complete!</cn><es_mx>¡Niveles avanzados completados!</es_mx><es_ar>¡Niveles avanzados completados!</es_ar></textItem><textItem identifier="Congrats"><en_us>Congratulations!</en_us><en_uk>Congratulations!</en_uk><nl>Gefeliciteerd!</nl><fr>Félicitations !</fr><de>Glückwunsch!</de><es>¡Enhorabuena!</es><br>Parabéns!</br><pt>Parabéns!</pt><it>Complimenti!</it><se>Gratulerar!</se><pl>Gratulacje!</pl><ru>Поздравляем!</ru><id>Selamat!</id><ar>Congratulations!</ar><jp>Congratulations!</jp><cn>Congratulations!</cn><es_mx>¡Felicitaciones!</es_mx><es_ar>¡Felicitaciones!</es_ar></textItem><textItem identifier="GameCompleted"><en_us>Game complete!</en_us><en_uk>Game complete!</en_uk><nl>Spel uitgespeeld!</nl><fr>Jeu réussi !</fr><de>Spiel beendet!</de><es>¡Juego finalizado!</es><br>Você chegou ao final do jogo!</br><pt>Terminaste o jogo!</pt><it>Gioco completo!</it><se>Spelet klarat!</se><pl>Gra ukonczona!</pl><ru>Игра пройдена!</ru><id>Game selasai!</id><ar>Game complete!</ar><jp>Game complete!</jp><cn>Game complete!</cn><es_mx>¡Juego completado!</es_mx><es_ar>Nivel completado</es_ar></textItem><textItem identifier="FinalScore"><en_us>Final score</en_us><en_uk>Final score</en_uk><nl>Score</nl><fr>Score final</fr><de>Punkte</de><es>Puntuación</es><br>Pontuação</br><pt>Pontuação</pt><it>Punteggio</it><se>Poäng</se><pl>Wynik</pl><ru>Счет</ru><id>Skor</id><ar>Final score</ar><jp>Final score</jp><cn>Final score</cn><es_mx>Puntaje</es_mx><es_ar>Puntaje</es_ar></textItem><textItem identifier="FinalSubmit"><en_us>Submit</en_us><en_uk>Submit</en_uk><nl>Verzenden</nl><fr>Envoyer</fr><de>Eintragen</de><es>Enviar</es><br>Enviar</br><pt>Enviar</pt><it>Invia</it><se>Skicka</se><pl>Zapisz</pl><ru>Сохранить</ru><id>Kirim</id><ar>Submit</ar><jp>Submit</jp><cn>Submit</cn><es_mx>Enviar</es_mx><es_ar>Enviar</es_ar></textItem><textItem identifier="FinalPlayMore"><en_us>Play more skill games.</en_us><en_uk>Play more skill games.</en_uk><nl>Speel meer behendigheidsspelletjes.</nl><fr>Joue à plus de jeux d&apos;adresse.</fr><de>Spiele mehr Geschicklichkeitsspiele.</de><es>Jugar a más juegos de habilidad.</es><br>Jogue mais jogos de perícia.</br><pt>Joga mais jogos de habilidade.</pt><it>Prova altri giochi di abilità.</it><se>Spela fler skicklighetsspel.</se><pl>Zagraj w więcej gier zręcznościowych.</pl><ru>Другие игры на ловкость</ru><id>Mainkan game keahlian lainnya.</id><ar>Play more skill games.</ar><jp>Play more skill games.</jp><cn>Play more skill games.</cn><es_mx>Juega más juegos de habilidad.</es_mx><es_ar>Jugar más juegos de habilidad.</es_ar></textItem><textItem identifier="FinalMenu"><en_us>Menu</en_us><en_uk>Menu</en_uk><nl>Menu</nl><fr>Menu</fr><de>Menü</de><es>Menú</es><br>Menu</br><pt>Menu</pt><it>Menu</it><se>Meny</se><pl>Menu</pl><ru>Меню</ru><id>Menu</id><ar>Menu</ar><jp>Menu</jp><cn>Menu</cn><es_mx>Menú</es_mx><es_ar>Menú</es_ar></textItem><textItem identifier="FinalPlayAgain"><en_us>Play Again</en_us><en_uk>Play Again</en_uk><nl>Opnieuw spelen</nl><fr>Rejouer</fr><de>Nochmal spielen</de><es>Volver a jugar</es><br>Jogar de novo</br><pt>Jogar outra vez</pt><it>Rigioca</it><se>Spela igen</se><pl>Zagraj ponownie</pl><ru>Еще раз</ru><id>Mainkan Lagi</id><ar>Play Again</ar><jp>Play Again</jp><cn>Play Again</cn><es_mx>Jugar de nuevo</es_mx><es_ar>Jugar de nuevo</es_ar></textItem><textItem identifier="MuteMusic"><en_us>Music</en_us><en_uk>Music</en_uk><nl>Muziek</nl><fr>Musique</fr><de>Musik</de><es>Música</es><br>Música</br><pt>Música</pt><it>Musica</it><se>Musik</se><pl>Muzyka</pl><ru>Музыка</ru><id>Musik</id><ar>Music</ar><jp>Music</jp><cn>Music</cn><es_mx>Música</es_mx><es_ar>Música</es_ar></textItem><textItem identifier="MuteSounds"><en_us>Sound FX</en_us><en_uk>Sound FX</en_uk><nl>Geluid</nl><fr>Effets sonores</fr><de>Soundeffekte</de><es>Efectos sonido</es><br>Efeitos sonoros</br><pt>Efeitos sonoros</pt><it>Effetti audio</it><se>Ljudeffekter</se><pl>Dźwięki FX</pl><ru>Звук</ru><id>Efek Suara</id><ar>Sound FX</ar><jp>Sound FX</jp><cn>Sound FX</cn><es_mx>Efectos de sonido</es_mx><es_ar>Efectos de sonido</es_ar></textItem><textItem identifier="Score"><en_us>SCORE</en_us><en_uk>SCORE</en_uk><nl>SCORE</nl><fr>SCORE</fr><de>PUNKTE</de><es>PUNTUACIÓN</es><br>PONTUAÇÃO</br><pt>PONTUAÇÃO</pt><it>PUNTEGGIO</it><se>POÄNG</se><pl>WYNIK</pl><ru>СЧЕТ </ru><id>SKOR</id><ar>SCORE</ar><jp>SCORE</jp><cn>SCORE</cn><es_mx>PUNTAJE</es_mx><es_ar>PUNTAJE</es_ar></textItem><textItem identifier="Stars"><en_us>STARS</en_us><en_uk>STARS</en_uk><nl>STERREN</nl><fr>ÉTOILES</fr><de>STERNE</de><es>ESTRELLAS</es><br>ESTRELAS</br><pt>ESTRELAS</pt><it>STELLE</it><se>STJÄRNOR</se><pl>GWIAZDKI</pl><ru>ЗВЕЗД</ru><id>BINTANG</id><ar>STARS</ar><jp>STARS</jp><cn>STARS</cn><es_mx>ESTRELLAS</es_mx><es_ar>ESTRELLAS</es_ar></textItem></LocalisedText> ; SpilGame.importXMLv2(xmlData); trace("Language Data Succesfully included"); fontList = Font.enumerateFonts(); i = 0; while (i < fontList.length) { trace(fontList[i].fontName); i++; }; Languages.initialize(); Languages.getLanguage("ru").forceFont = "Arial Black"; Languages.getLanguage("ru").embedFonts = true; SpilGame.initialize("Star_Splash", PortalGroup.GIRL, "Star-Splash.html", this, true); Hyves = false; SpilGame.currentLanguage = Languages.getLanguage("en_us"); quelleLangue(); localMode = Capabilities.playerType; if (localMode == "StandAlone"){ stage.showDefaultContextMenu = false; fscommand("allowscale", "true"); fscommand("trapallkeys", "true"); }; MyGlobal.langue = Capabilities.language; chLangue(); leMenu = new ContextMenu(); leMenu.hideBuiltInItems(); defaultItems = leMenu.builtInItems; defaultItems.quality = true; menuItem1 = new ContextMenuItem(devTexte); menuItem1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, devSite); leMenu.customItems.push(menuItem1); this.contextMenu = leMenu; url = this.loaderInfo.url; urlStart = (url.indexOf("://") + 3); urlEnd = url.indexOf("/", urlStart); domain = url.substring(urlStart, urlEnd); co_uk = domain.lastIndexOf(".co.uk"); com_cn = domain.lastIndexOf(".com.cn"); if (co_uk != -1){ point = ".co.uk"; } else { if (com_cn != -1){ point = ".com.cn"; } else { point = "."; }; }; LastDot = (domain.lastIndexOf(point) - 1); pfixEnd = (domain.lastIndexOf(".", LastDot) + 1); domain = domain.substring(pfixEnd, domain.length); trace(("DOMAIN = " + domain)); snailsLogo = true; if ((((((((((((domain == "agame.com")) || ((domain == "xiaoyouxi.cn")))) || ((domain == "game.com.cn")))) || ((domain == "game.asia")))) || ((domain == "spilgames.com")))) || ((domain == "kongregate.com")))){ Star = false; } else { Star = true; }; Star = false; if ((((((((((domain == "agame.com")) || ((domain == "xiaoyouxi.cn")))) || ((domain == "game.com.cn")))) || ((domain == "game.asia")))) || ((domain == "spilgames.com")))){ snailsLogo = false; } else { snailsLogo = true; }; } function frame3(){ play(); } function frame13(){ MochiBot.track(this, "5e453ea8"); if ((((((((((domain == "agame.com")) || ((domain == "xiaoyouxi.cn")))) || ((domain == "game.com.cn")))) || ((domain == "game.asia")))) || ((domain == "spilgames.com")))){ } else { MochiServices.connect("4b24aa62b8efe4e5", this); }; local = false; frameName = "splash"; } function frame9(){ if (Star == true){ this.preloader.removeChild(this.preloader.adBox); }; if (Hyves == true){ this.preloader.hyves2.removeEventListener(MouseEvent.CLICK, this.preloader.clickMoreGames); }; } function frame22(){ stop(); if (frameName != "menu"){ frameName = "menu"; this.fondu.gotoAndPlay("fadeIn"); }; this.snails.addEventListener(MouseEvent.CLICK, clickSNL); if (MovieClip(root).snailsLogo == true){ this.snails.mouseEnabled = true; } else { this.snails.mouseEnabled = false; }; } function frame20(){ stage.quality = "MEDIUM"; } function frame11(){ stop(); gotoAndPlay("splash", "Splash"); } public function quelleLangue():String{ trace(("Langue = " + SpilGame.currentLanguage.name)); return (SpilGame.currentLanguage.name); } function frame30(){ stop(); } function frame40(){ stop(); if (frameName != "menu"){ frameName = "menu"; this.fondu.gotoAndPlay("fadeIn"); }; this.snails.addEventListener(MouseEvent.CLICK, clickSNL); if (MovieClip(root).snailsLogo == true){ this.snails.mouseEnabled = true; } else { this.snails.mouseEnabled = false; }; } public function musicF(_arg1:String, _arg2:uint, _arg3:String){ var musFade:Function; var fade = _arg1; var frames = _arg2; var toune = _arg3; musFade = function (_arg1:Event):void{ if (mFade == "in"){ if ((volumeValue + fade_i) < maxVol){ volumeValue = (volumeValue + fade_i); }; if ((volumeValue + fade_i) >= maxVol){ volumeValue = maxVol; fadeFini = true; }; } else { if (mFade == "out"){ if ((volumeValue - fade_i) > 0){ volumeValue = (volumeValue - fade_i); }; if ((volumeValue - fade_i) <= 0){ musicMC.Menu1_ch.stop(); musicMC.lvl1_ch.stop(); musicMC.lvl2_ch.stop(); musicMC.lvl3_ch.stop(); volumeValue = 0; fadeFini = true; }; }; }; if (musique == "on"){ musicMC.Menu1_tr.volume = volumeValue; musicMC.Menu1_ch.soundTransform = musicMC.Menu1_tr; musicMC.lvl1_tr.volume = volumeValue; musicMC.lvl1_ch.soundTransform = musicMC.lvl1_tr; musicMC.lvl2_tr.volume = volumeValue; musicMC.lvl2_ch.soundTransform = musicMC.lvl2_tr; musicMC.lvl3_tr.volume = volumeValue; musicMC.lvl3_ch.soundTransform = musicMC.lvl3_tr; }; fadeFois = (fadeFois + 1); if (fadeFini == true){ removeEventListener(Event.ENTER_FRAME, musFade); }; }; fadeFois = 0; fade_i = (this.maxVol / frames); fadeFini = false; fadeFrames = frames; mFade = fade; if ((((mFade == "no")) || ((mFade == "in")))){ musicMC.gotoAndStop(toune); }; if (mFade != "no"){ addEventListener(Event.ENTER_FRAME, musFade); }; } public function clickSNL(_arg1:Event=null):void{ navigateToURL(new URLRequest("http://www.snailsanimation.com"), "_blank"); } function frame52(){ stop(); frameName = "jeu"; this.fondu.gotoAndPlay("fadeIn"); menuJeu.presTableau.nextPlace = "pres"; menuJeu.presTableau.gotoAndPlay("noir_in"); Menu_c = null; } function frame51(){ stop(); if (frameName != "menu"){ frameName = "menu"; }; } public function checkQuality(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == 81){ if (stage.quality == "MEDIUM"){ stage.quality = StageQuality.LOW; this.qualitee.q_text.gotoAndPlay("low"); } else { if (stage.quality == "LOW"){ stage.quality = StageQuality.BEST; this.qualitee.q_text.gotoAndPlay("best"); } else { if (stage.quality == "BEST"){ stage.quality = StageQuality.HIGH; this.qualitee.q_text.gotoAndPlay("high"); } else { if (stage.quality == "HIGH"){ stage.quality = StageQuality.MEDIUM; this.qualitee.q_text.gotoAndPlay("medium"); }; }; }; }; }; } public function devSite(_arg1:ContextMenuEvent):void{ navigateToURL(new URLRequest("http://www.snailsanimation.com"), "_blank"); } public function sonsF(_arg1:String, _arg2:Boolean):void{ var _local3:uint; var _local4:uint; if (this.sons == "on"){ if (_arg2 == false){ this.sonMC[(_arg1 + "")].gotoAndPlay(2); } else { if (_arg2 == true){ _local3 = this.sonMC[(_arg1 + "")].totalFrames; _local4 = (Math.ceil((Math.random() * (_local3 - 1))) + 1); this.sonMC[(_arg1 + "")].gotoAndStop(_local4); }; }; }; } public function chLangue():void{ if (MyGlobal.langue == "fr"){ devTexte = "Jeu fait par Snails Animation - Visitez notre site!"; } else { if (MyGlobal.langue == "en"){ devTexte = "Game made by Snails Animation - Visit our website!"; } else { if (MyGlobal.langue == "es"){ devTexte = "Juego hecho por Snails Animation - ¡Visita nuestro sitio web!"; } else { MyGlobal.langue = "en"; devTexte = "Game made by Snails Animation - Visit our website!"; }; }; }; } public function quelTexte(_arg1:String):String{ trace(("Texte = " + SpilGame.getString(_arg1))); return (SpilGame.getString(_arg1)); } } }//package StarSplash_OML_fla
Section 126
//meduse_clip_308 (StarSplash_OML_fla.meduse_clip_308) package StarSplash_OML_fla { import flash.display.*; public dynamic class meduse_clip_308 extends MovieClip { public var touche:Boolean; public function meduse_clip_308(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); touche = false; } function frame2(){ stop(); touche = true; } } }//package StarSplash_OML_fla
Section 127
//meduse_spring_311 (StarSplash_OML_fla.meduse_spring_311) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class meduse_spring_311 extends MovieClip { public function meduse_spring_311(){ addFrameScript(0, frame1, 1, frame2, 14, frame15, 26, frame27); } function frame15(){ MovieClip(parent).touche = false; } function frame1(){ MovieClip(parent).touche = true; } function frame2(){ MovieClip(root).sonsF("boing", false); } function frame27(){ stop(); } } }//package StarSplash_OML_fla
Section 128
//menu_barre_166 (StarSplash_OML_fla.menu_barre_166) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_barre_166 extends MovieClip { public var fond:MovieClip; public function menu_barre_166(){ addFrameScript(0, frame1, 299, frame300); } function frame1(){ stop(); } function frame300(){ stop(); } } }//package StarSplash_OML_fla
Section 129
//menu_barre_calculateur_172 (StarSplash_OML_fla.menu_barre_calculateur_172) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_barre_calculateur_172 extends MovieClip { public var total:uint; public var percent:Number; public var nombre:uint; public function menu_barre_calculateur_172(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ if (MovieClip(root).lv[("tableau" + MyGlobal.vague)] != null){ nombre = MovieClip(root).lv[("tableau" + MyGlobal.vague)].currentFrame; total = MovieClip(root).lv.longTableau; percent = Math.floor(((nombre / total) * 300)); MovieClip(parent).gotoAndStop(percent); }; play(); } function frame2(){ gotoAndPlay(1); } } }//package StarSplash_OML_fla
Section 130
//menu_barre_fonds_167 (StarSplash_OML_fla.menu_barre_fonds_167) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_barre_fonds_167 extends MovieClip { public function menu_barre_fonds_167(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 131
//menu_btnBack_77 (StarSplash_OML_fla.menu_btnBack_77) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnBack_77 extends MovieClip { public var hit:MovieClip; public function menu_btnBack_77(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 132
//menu_btnBackText_78 (StarSplash_OML_fla.menu_btnBackText_78) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_btnBackText_78 extends MovieClip { public var __id7_:LocalizedTextField; public function menu_btnBackText_78(){ __setProp___id7__menu_btnBackText_Layer1_1(); } function __setProp___id7__menu_btnBackText_Layer1_1(){ try { __id7_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id7_.text = "{BackBtnCredits}"; __id7_.textColor = 0xFFFFFF; __id7_.textSize = 25; __id7_.bold = false; __id7_.disableWordwrap = false; __id7_.embedFonts = true; __id7_.font = "Porky's"; __id7_.hAlign = "center"; __id7_.multiline = false; __id7_.vAlign = "middle"; __id7_.antiAliasType = "advanced"; __id7_.glowBlur = 3; __id7_.glowColor = 0; __id7_.useGlowFilter = false; __id7_.glowQuality = 1; __id7_.glowStrength = 5; __id7_.gridFitType = "pixel"; __id7_.italic = false; __id7_.selectable = false; __id7_.underline = false; try { __id7_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 133
//menu_btnContinue_226 (StarSplash_OML_fla.menu_btnContinue_226) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnContinue_226 extends MovieClip { public var hit:MovieClip; public function menu_btnContinue_226(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 134
//menu_btnContinueText_227 (StarSplash_OML_fla.menu_btnContinueText_227) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_btnContinueText_227 extends MovieClip { public var __id18_:LocalizedTextField; public function menu_btnContinueText_227(){ __setProp___id18__menu_btnContinueText_Layer1_1(); } function __setProp___id18__menu_btnContinueText_Layer1_1(){ try { __id18_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id18_.text = "{ContinueBtn}"; __id18_.textColor = 0xFFFFFF; __id18_.textSize = 22; __id18_.bold = false; __id18_.disableWordwrap = false; __id18_.embedFonts = true; __id18_.font = "Porky's"; __id18_.hAlign = "center"; __id18_.multiline = false; __id18_.vAlign = "middle"; __id18_.antiAliasType = "advanced"; __id18_.glowBlur = 3; __id18_.glowColor = 0; __id18_.useGlowFilter = false; __id18_.glowQuality = 1; __id18_.glowStrength = 5; __id18_.gridFitType = "pixel"; __id18_.italic = false; __id18_.selectable = false; __id18_.underline = false; try { __id18_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 135
//menu_btnCredits_56 (StarSplash_OML_fla.menu_btnCredits_56) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnCredits_56 extends MovieClip { public var hit:MovieClip; public function menu_btnCredits_56(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 136
//menu_btnCreditsText_58 (StarSplash_OML_fla.menu_btnCreditsText_58) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_btnCreditsText_58 extends MovieClip { public var __id0_:LocalizedTextField; public function menu_btnCreditsText_58(){ __setProp___id0__menu_btnCreditsText_Layer1_1(); } function __setProp___id0__menu_btnCreditsText_Layer1_1(){ try { __id0_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id0_.text = "{CreditsBtnMenu}"; __id0_.textColor = 0xFFFFFF; __id0_.textSize = 22; __id0_.bold = false; __id0_.disableWordwrap = false; __id0_.embedFonts = true; __id0_.font = "Porky's"; __id0_.hAlign = "center"; __id0_.multiline = false; __id0_.vAlign = "middle"; __id0_.antiAliasType = "advanced"; __id0_.glowBlur = 3; __id0_.glowColor = 0; __id0_.useGlowFilter = false; __id0_.glowQuality = 1; __id0_.glowStrength = 5; __id0_.gridFitType = "pixel"; __id0_.italic = false; __id0_.selectable = false; __id0_.underline = false; try { __id0_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 137
//menu_btnEndGame_228 (StarSplash_OML_fla.menu_btnEndGame_228) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnEndGame_228 extends MovieClip { public var hit:MovieClip; public function menu_btnEndGame_228(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 138
//menu_btnEndGameText_229 (StarSplash_OML_fla.menu_btnEndGameText_229) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_btnEndGameText_229 extends MovieClip { public var __id19_:LocalizedTextField; public function menu_btnEndGameText_229(){ __setProp___id19__menu_btnEndGameText_Layer1_1(); } function __setProp___id19__menu_btnEndGameText_Layer1_1(){ try { __id19_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id19_.text = "{EndGameBtn}"; __id19_.textColor = 0xFFFFFF; __id19_.textSize = 22; __id19_.bold = false; __id19_.disableWordwrap = false; __id19_.embedFonts = true; __id19_.font = "Porky's"; __id19_.hAlign = "center"; __id19_.multiline = false; __id19_.vAlign = "middle"; __id19_.antiAliasType = "advanced"; __id19_.glowBlur = 3; __id19_.glowColor = 0; __id19_.useGlowFilter = false; __id19_.glowQuality = 1; __id19_.glowStrength = 5; __id19_.gridFitType = "pixel"; __id19_.italic = false; __id19_.selectable = false; __id19_.underline = false; try { __id19_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 139
//menu_btnMenu_82 (StarSplash_OML_fla.menu_btnMenu_82) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnMenu_82 extends MovieClip { public var hit:MovieClip; public function menu_btnMenu_82(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 140
//menu_btnMenuText_83 (StarSplash_OML_fla.menu_btnMenuText_83) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_btnMenuText_83 extends MovieClip { public var __id9_:LocalizedTextField; public function menu_btnMenuText_83(){ __setProp___id9__menu_btnMenuText_Layer1_1(); } function __setProp___id9__menu_btnMenuText_Layer1_1(){ try { __id9_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id9_.text = "{FinalMenu}"; __id9_.textColor = 0xFFFFFF; __id9_.textSize = 22; __id9_.bold = false; __id9_.disableWordwrap = false; __id9_.embedFonts = true; __id9_.font = "Porky's"; __id9_.hAlign = "center"; __id9_.multiline = false; __id9_.vAlign = "middle"; __id9_.antiAliasType = "advanced"; __id9_.glowBlur = 3; __id9_.glowColor = 0; __id9_.useGlowFilter = false; __id9_.glowQuality = 1; __id9_.glowStrength = 5; __id9_.gridFitType = "pixel"; __id9_.italic = false; __id9_.selectable = false; __id9_.underline = false; try { __id9_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 141
//menu_btnPlay_48 (StarSplash_OML_fla.menu_btnPlay_48) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnPlay_48 extends MovieClip { public var hit:MovieClip; public function menu_btnPlay_48(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 142
//menu_btnPlayText_49 (StarSplash_OML_fla.menu_btnPlayText_49) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_btnPlayText_49 extends MovieClip { public var texte:LocalizedTextField; public function menu_btnPlayText_49(){ __setProp_texte_menu_btnPlayText_Layer1_1(); } function __setProp_texte_menu_btnPlayText_Layer1_1(){ try { texte["componentInspectorSetting"] = true; } catch(e:Error) { }; texte.text = "{PlayBtnMenu}"; texte.textColor = 0xFFFFFF; texte.textSize = 25; texte.bold = false; texte.disableWordwrap = false; texte.embedFonts = true; texte.font = "Porky's"; texte.hAlign = "center"; texte.multiline = false; texte.vAlign = "middle"; texte.antiAliasType = "advanced"; texte.glowBlur = 3; texte.glowColor = 0; texte.useGlowFilter = false; texte.glowQuality = 1; texte.glowStrength = 5; texte.gridFitType = "pixel"; texte.italic = false; texte.selectable = false; texte.underline = false; try { texte["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 143
//menu_btnPractice_282 (StarSplash_OML_fla.menu_btnPractice_282) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnPractice_282 extends MovieClip { public var hit:MovieClip; public function menu_btnPractice_282(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 144
//menu_btnPracticeText_283 (StarSplash_OML_fla.menu_btnPracticeText_283) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_btnPracticeText_283 extends MovieClip { public var __id36_:LocalizedTextField; public function menu_btnPracticeText_283(){ __setProp___id36__menu_btnPracticeText_Layer1_1(); } function __setProp___id36__menu_btnPracticeText_Layer1_1(){ try { __id36_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id36_.text = "{PracticeBtn}"; __id36_.textColor = 0xFFFFFF; __id36_.textSize = 22; __id36_.bold = false; __id36_.disableWordwrap = false; __id36_.embedFonts = true; __id36_.font = "Porky's"; __id36_.hAlign = "center"; __id36_.multiline = false; __id36_.vAlign = "middle"; __id36_.antiAliasType = "advanced"; __id36_.glowBlur = 3; __id36_.glowColor = 0; __id36_.useGlowFilter = false; __id36_.glowQuality = 1; __id36_.glowStrength = 5; __id36_.gridFitType = "pixel"; __id36_.italic = false; __id36_.selectable = false; __id36_.underline = false; try { __id36_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 145
//menu_btnReady_280 (StarSplash_OML_fla.menu_btnReady_280) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnReady_280 extends MovieClip { public var hit:MovieClip; public function menu_btnReady_280(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 146
//menu_btnReadyText_281 (StarSplash_OML_fla.menu_btnReadyText_281) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_btnReadyText_281 extends MovieClip { public var __id35_:LocalizedTextField; public function menu_btnReadyText_281(){ __setProp___id35__menu_btnReadyText_Layer1_1(); } function __setProp___id35__menu_btnReadyText_Layer1_1(){ try { __id35_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id35_.text = "{ReadyBtn}"; __id35_.textColor = 0xFFFFFF; __id35_.textSize = 22; __id35_.bold = false; __id35_.disableWordwrap = false; __id35_.embedFonts = true; __id35_.font = "Porky's"; __id35_.hAlign = "center"; __id35_.multiline = false; __id35_.vAlign = "middle"; __id35_.antiAliasType = "advanced"; __id35_.glowBlur = 3; __id35_.glowColor = 0; __id35_.useGlowFilter = false; __id35_.glowQuality = 1; __id35_.glowStrength = 5; __id35_.gridFitType = "pixel"; __id35_.italic = false; __id35_.selectable = false; __id35_.underline = false; try { __id35_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 147
//menu_btnStart_10 (StarSplash_OML_fla.menu_btnStart_10) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnStart_10 extends MovieClip { public var hit:MovieClip; public function menu_btnStart_10(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 148
//menu_btnSubmit_86 (StarSplash_OML_fla.menu_btnSubmit_86) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnSubmit_86 extends MovieClip { public var hit:MovieClip; public function menu_btnSubmit_86(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 149
//menu_btnSubmitText_87 (StarSplash_OML_fla.menu_btnSubmitText_87) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_btnSubmitText_87 extends MovieClip { public var __id11_:LocalizedTextField; public function menu_btnSubmitText_87(){ __setProp___id11__menu_btnSubmitText_Layer1_1(); } function __setProp___id11__menu_btnSubmitText_Layer1_1(){ try { __id11_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id11_.text = "{FinalSubmit}"; __id11_.textColor = 0xFFFFFF; __id11_.textSize = 25; __id11_.bold = false; __id11_.disableWordwrap = false; __id11_.embedFonts = true; __id11_.font = "Porky's"; __id11_.hAlign = "center"; __id11_.multiline = false; __id11_.vAlign = "middle"; __id11_.antiAliasType = "advanced"; __id11_.glowBlur = 3; __id11_.glowColor = 0; __id11_.useGlowFilter = false; __id11_.glowQuality = 1; __id11_.glowStrength = 5; __id11_.gridFitType = "pixel"; __id11_.italic = false; __id11_.selectable = false; __id11_.underline = false; try { __id11_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 150
//menu_btnTryAgain_84 (StarSplash_OML_fla.menu_btnTryAgain_84) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_btnTryAgain_84 extends MovieClip { public var hit:MovieClip; public function menu_btnTryAgain_84(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 151
//menu_btnTryAgainText_85 (StarSplash_OML_fla.menu_btnTryAgainText_85) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_btnTryAgainText_85 extends MovieClip { public var __id10_:LocalizedTextField; public function menu_btnTryAgainText_85(){ __setProp___id10__menu_btnTryAgainText_Layer1_1(); } function __setProp___id10__menu_btnTryAgainText_Layer1_1(){ try { __id10_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id10_.text = "{FinalPlayAgain}"; __id10_.textColor = 0xFFFFFF; __id10_.textSize = 22; __id10_.bold = false; __id10_.disableWordwrap = false; __id10_.embedFonts = true; __id10_.font = "Porky's"; __id10_.hAlign = "center"; __id10_.multiline = false; __id10_.vAlign = "middle"; __id10_.antiAliasType = "advanced"; __id10_.glowBlur = 3; __id10_.glowColor = 0; __id10_.useGlowFilter = false; __id10_.glowQuality = 1; __id10_.glowStrength = 5; __id10_.gridFitType = "pixel"; __id10_.italic = false; __id10_.selectable = false; __id10_.underline = false; try { __id10_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 152
//menu_credits_70 (StarSplash_OML_fla.menu_credits_70) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_credits_70 extends MovieClip { public var btnBack:MovieClip; public var snails:MovieClip; public function menu_credits_70(){ addFrameScript(0, frame1); } function frame1(){ this.snails.addEventListener(MouseEvent.CLICK, clickSNL); if (MovieClip(root).snailsLogo == true){ this.snails.mouseEnabled = true; } else { this.snails.mouseEnabled = false; }; } public function clickSNL(_arg1:Event=null):void{ navigateToURL(new URLRequest("http://www.snailsanimation.com"), "_blank"); } } }//package StarSplash_OML_fla
Section 153
//menu_credits_c_69 (StarSplash_OML_fla.menu_credits_c_69) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_credits_c_69 extends MovieClip { public var m:MovieClip; public function menu_credits_c_69(){ addFrameScript(7, frame8, 15, frame16); } function frame16(){ stop(); MovieClip(parent).gotoAndPlay("menu"); } function frame8(){ stop(); this.m.btnBack.addEventListener(MouseEvent.CLICK, clickBack); } public function clickBack(_arg1:Event=null):void{ this.m.btnBack.removeEventListener(MouseEvent.CLICK, clickBack); this.play(); } } }//package StarSplash_OML_fla
Section 154
//menu_credits_snails_76 (StarSplash_OML_fla.menu_credits_snails_76) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_credits_snails_76 extends MovieClip { public var hit:MovieClip; public function menu_credits_snails_76(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.buttonMode = true; this.mouseChildren = false; this.hitArea = hit; this.hit.visible = false; } } }//package StarSplash_OML_fla
Section 155
//menu_creditsDevText_71 (StarSplash_OML_fla.menu_creditsDevText_71) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_creditsDevText_71 extends MovieClip { public var __id2_:LocalizedTextField; public function menu_creditsDevText_71(){ __setProp___id2__menu_creditsDevText_Layer1_1(); } function __setProp___id2__menu_creditsDevText_Layer1_1(){ try { __id2_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id2_.text = "{DevCredits}"; __id2_.textColor = 0xFFFFFF; __id2_.textSize = 22; __id2_.bold = false; __id2_.disableWordwrap = false; __id2_.embedFonts = true; __id2_.font = "Futura BdCn BT"; __id2_.hAlign = "left"; __id2_.multiline = false; __id2_.vAlign = "middle"; __id2_.antiAliasType = "advanced"; __id2_.glowBlur = 3; __id2_.glowColor = 0; __id2_.useGlowFilter = false; __id2_.glowQuality = 1; __id2_.glowStrength = 5; __id2_.gridFitType = "pixel"; __id2_.italic = false; __id2_.selectable = false; __id2_.underline = false; try { __id2_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 156
//menu_creditsMusicText_73 (StarSplash_OML_fla.menu_creditsMusicText_73) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_creditsMusicText_73 extends MovieClip { public var __id4_:LocalizedTextField; public function menu_creditsMusicText_73(){ __setProp___id4__menu_creditsMusicText_Layer1_1(); } function __setProp___id4__menu_creditsMusicText_Layer1_1(){ try { __id4_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id4_.text = "{MusicCredits}"; __id4_.textColor = 0xFFFFFF; __id4_.textSize = 22; __id4_.bold = false; __id4_.disableWordwrap = false; __id4_.embedFonts = true; __id4_.font = "Futura BdCn BT"; __id4_.hAlign = "left"; __id4_.multiline = false; __id4_.vAlign = "middle"; __id4_.antiAliasType = "advanced"; __id4_.glowBlur = 3; __id4_.glowColor = 0; __id4_.useGlowFilter = false; __id4_.glowQuality = 1; __id4_.glowStrength = 5; __id4_.gridFitType = "pixel"; __id4_.italic = false; __id4_.selectable = false; __id4_.underline = false; try { __id4_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 157
//menu_creditsSoundsText_74 (StarSplash_OML_fla.menu_creditsSoundsText_74) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_creditsSoundsText_74 extends MovieClip { public var __id5_:LocalizedTextField; public function menu_creditsSoundsText_74(){ __setProp___id5__menu_creditsSoundsText_Layer1_1(); } function __setProp___id5__menu_creditsSoundsText_Layer1_1(){ try { __id5_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id5_.text = "{SoundsCredits}"; __id5_.textColor = 0xFFFFFF; __id5_.textSize = 22; __id5_.bold = false; __id5_.disableWordwrap = false; __id5_.embedFonts = true; __id5_.font = "Futura BdCn BT"; __id5_.hAlign = "left"; __id5_.multiline = false; __id5_.vAlign = "middle"; __id5_.antiAliasType = "advanced"; __id5_.glowBlur = 3; __id5_.glowColor = 0; __id5_.useGlowFilter = false; __id5_.glowQuality = 1; __id5_.glowStrength = 5; __id5_.gridFitType = "pixel"; __id5_.italic = false; __id5_.selectable = false; __id5_.underline = false; try { __id5_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 158
//menu_creditsSponsorText_72 (StarSplash_OML_fla.menu_creditsSponsorText_72) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_creditsSponsorText_72 extends MovieClip { public var __id3_:LocalizedTextField; public function menu_creditsSponsorText_72(){ __setProp___id3__menu_creditsSponsorText_Layer1_1(); } function __setProp___id3__menu_creditsSponsorText_Layer1_1(){ try { __id3_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id3_.text = "Playing at:"; __id3_.textColor = 0xFFFFFF; __id3_.textSize = 22; __id3_.bold = false; __id3_.disableWordwrap = false; __id3_.embedFonts = true; __id3_.font = "Futura BdCn BT"; __id3_.hAlign = "left"; __id3_.multiline = false; __id3_.vAlign = "middle"; __id3_.antiAliasType = "advanced"; __id3_.glowBlur = 3; __id3_.glowColor = 0; __id3_.useGlowFilter = false; __id3_.glowQuality = 1; __id3_.glowStrength = 5; __id3_.gridFitType = "pixel"; __id3_.italic = false; __id3_.selectable = false; __id3_.underline = false; try { __id3_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 159
//menu_creditsText_75 (StarSplash_OML_fla.menu_creditsText_75) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_creditsText_75 extends MovieClip { public var __id6_:LocalizedTextField; public function menu_creditsText_75(){ __setProp___id6__menu_creditsText_Layer1_1(); } function __setProp___id6__menu_creditsText_Layer1_1(){ try { __id6_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id6_.text = "{CreditsBtnMenu}"; __id6_.textColor = 0xFFFFFF; __id6_.textSize = 30; __id6_.bold = false; __id6_.disableWordwrap = false; __id6_.embedFonts = true; __id6_.font = "Porky's"; __id6_.hAlign = "center"; __id6_.multiline = false; __id6_.vAlign = "middle"; __id6_.antiAliasType = "advanced"; __id6_.glowBlur = 3; __id6_.glowColor = 0; __id6_.useGlowFilter = false; __id6_.glowQuality = 1; __id6_.glowStrength = 5; __id6_.gridFitType = "pixel"; __id6_.italic = false; __id6_.selectable = false; __id6_.underline = false; try { __id6_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 160
//menu_level_238 (StarSplash_OML_fla.menu_level_238) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_level_238 extends MovieClip { public var collect:MovieClip; public var i:uint; public var vague:MovieClip; public function menu_level_238(){ addFrameScript(0, frame1); } function frame1(){ i = (MyGlobal.vague + 1); vague.texte.text = MovieClip(parent.parent.parent.parent).quelTexte("LvPres"); vague.texte.text = vague.texte.text.split("[x]").join(i); collect.texte.text = MovieClip(parent.parent.parent.parent).quelTexte("StarsPres"); collect.texte.text = collect.texte.text.split("[x]").join(MovieClip(root).lv[("passeItems" + i)]); } } }//package StarSplash_OML_fla
Section 161
//menu_level_starsText_240 (StarSplash_OML_fla.menu_level_starsText_240) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_level_starsText_240 extends MovieClip { public var texte:LocalizedTextField; public function menu_level_starsText_240(){ __setProp_texte_menu_level_starsText_Layer1_1(); } function __setProp_texte_menu_level_starsText_Layer1_1(){ try { texte["componentInspectorSetting"] = true; } catch(e:Error) { }; texte.text = "Collect 150 stars"; texte.textColor = 0xFFFF00; texte.textSize = 22; texte.bold = false; texte.disableWordwrap = false; texte.embedFonts = true; texte.font = "Futura BdCn BT"; texte.hAlign = "center"; texte.multiline = false; texte.vAlign = "middle"; texte.antiAliasType = "advanced"; texte.glowBlur = 3; texte.glowColor = 0; texte.useGlowFilter = false; texte.glowQuality = 1; texte.glowStrength = 5; texte.gridFitType = "pixel"; texte.italic = false; texte.selectable = false; texte.underline = false; try { texte["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 162
//menu_levelText_239 (StarSplash_OML_fla.menu_levelText_239) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_levelText_239 extends MovieClip { public var texte:LocalizedTextField; public function menu_levelText_239(){ __setProp_texte_menu_levelText_Layer1_1(); } function __setProp_texte_menu_levelText_Layer1_1(){ try { texte["componentInspectorSetting"] = true; } catch(e:Error) { }; texte.text = "Level [x]"; texte.textColor = 0xFFFFFF; texte.textSize = 25; texte.bold = false; texte.disableWordwrap = false; texte.embedFonts = true; texte.font = "Porky's"; texte.hAlign = "center"; texte.multiline = false; texte.vAlign = "middle"; texte.antiAliasType = "advanced"; texte.glowBlur = 3; texte.glowColor = 0; texte.useGlowFilter = false; texte.glowQuality = 1; texte.glowStrength = 5; texte.gridFitType = "pixel"; texte.italic = false; texte.selectable = false; texte.underline = false; try { texte["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 163
//menu_menu_45 (StarSplash_OML_fla.menu_menu_45) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_menu_45 extends MovieClip { public var btnCredits:MovieClip; public var btnPlay:MovieClip; public var nextPlace:String; public function menu_menu_45(){ addFrameScript(0, frame1, 25, frame26, 32, frame33, 45, frame46, 46, frame47, 52, frame53); } public function clickPlay(_arg1:Event=null):void{ this.btnPlay.removeEventListener(MouseEvent.CLICK, clickPlay); this.btnCredits.removeEventListener(MouseEvent.CLICK, clickCredits); MovieClip(parent).snails.removeEventListener(MouseEvent.CLICK, MovieClip(parent).clickSNL); this.btnPlay.mouseEnabled = false; this.btnCredits.mouseEnabled = false; MovieClip(parent).fondu.nextPlace = "jeu"; MovieClip(parent).fondu.nextScene1 = "Jeu"; MovieClip(parent).fondu.gotoAndPlay("fadeOut"); } function frame1(){ nextPlace = null; } function frame26(){ this.btnPlay.mouseEnabled = false; } function frame33(){ this.btnCredits.mouseEnabled = false; } function frame47(){ this.btnPlay.removeEventListener(MouseEvent.CLICK, clickPlay); this.btnCredits.removeEventListener(MouseEvent.CLICK, clickCredits); this.btnPlay.mouseEnabled = false; this.btnCredits.mouseEnabled = false; } function frame46(){ stop(); this.btnPlay.mouseEnabled = true; this.btnCredits.mouseEnabled = true; this.btnPlay.addEventListener(MouseEvent.CLICK, clickPlay); this.btnCredits.addEventListener(MouseEvent.CLICK, clickCredits); } function frame53(){ stop(); MovieClip(parent).gotoAndPlay(nextPlace); } public function clickCredits(_arg1:Event=null):void{ this.btnPlay.removeEventListener(MouseEvent.CLICK, clickPlay); this.btnCredits.removeEventListener(MouseEvent.CLICK, clickCredits); nextPlace = "credits"; this.play(); } } }//package StarSplash_OML_fla
Section 164
//menu_moves_bg_241 (StarSplash_OML_fla.menu_moves_bg_241) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_bg_241 extends MovieClip { public var b2:MovieClip; public var b4:MovieClip; public var b5:MovieClip; public var b6:MovieClip; public var b7:MovieClip; public var b1:MovieClip; public var b3:MovieClip; public var b8:MovieClip; public var t2:MovieClip; public var t8:MovieClip; public var t5:MovieClip; public var i:uint; public var j:uint; public function menu_moves_bg_241(){ addFrameScript(0, frame1); } public function out(_arg1:Event=null):void{ _arg1.currentTarget.gotoAndStop(_arg1.currentTarget.couleur); } function frame1(){ stop(); j = (MyGlobal.vague + 1); this.b1.vague = 1; this.b2.vague = 2; this.b3.vague = 3; this.b4.vague = 4; this.b8.vague = 6; this.b5.vague = 8; this.b6.vague = 18; this.b7.vague = 21; i = 1; while (i < 9) { this[("b" + i)].mouseChildren = false; this[("b" + i)].addEventListener(MouseEvent.MOUSE_OVER, over); this[("b" + i)].addEventListener(MouseEvent.MOUSE_OUT, out); this[("b" + i)].couleur = 1; if (this[("t" + i)] != null){ this[("t" + i)].visible = true; }; if (this[("b" + i)].vague == j){ if (this[("t" + i)] != null){ this[("t" + i)].visible = true; }; this[("b" + i)].couleur = 2; this[("b" + i)].gotoAndStop(2); } else { if (this[("b" + i)].vague > j){ if (this[("t" + i)] != null){ this[("t" + i)].visible = false; }; this[("b" + i)].visible = false; }; }; i++; }; } public function over(_arg1:Event=null):void{ _arg1.currentTarget.gotoAndStop(3); } } }//package StarSplash_OML_fla
Section 165
//menu_moves_bg_InWaterText_245 (StarSplash_OML_fla.menu_moves_bg_InWaterText_245) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_bg_InWaterText_245 extends MovieClip { public var __id27_:LocalizedTextField; public function menu_moves_bg_InWaterText_245(){ __setProp___id27__menu_moves_bg_InWaterText_Layer1_1(); } function __setProp___id27__menu_moves_bg_InWaterText_Layer1_1(){ try { __id27_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id27_.text = "{WaterPres}"; __id27_.textColor = 0xFFFFFF; __id27_.textSize = 13; __id27_.bold = false; __id27_.disableWordwrap = false; __id27_.embedFonts = true; __id27_.font = "Futura BdCn BT"; __id27_.hAlign = "left"; __id27_.multiline = false; __id27_.vAlign = "middle"; __id27_.antiAliasType = "advanced"; __id27_.glowBlur = 3; __id27_.glowColor = 0; __id27_.useGlowFilter = false; __id27_.glowQuality = 1; __id27_.glowStrength = 5; __id27_.gridFitType = "pixel"; __id27_.italic = false; __id27_.selectable = false; __id27_.underline = false; try { __id27_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 166
//menu_moves_bg_titreText_279 (StarSplash_OML_fla.menu_moves_bg_titreText_279) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_bg_titreText_279 extends MovieClip { public var __id34_:LocalizedTextField; public function menu_moves_bg_titreText_279(){ __setProp___id34__menu_moves_bg_titreText_Layer1_1(); } function __setProp___id34__menu_moves_bg_titreText_Layer1_1(){ try { __id34_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id34_.text = "{MovesPres}"; __id34_.textColor = 0xFFFFFF; __id34_.textSize = 25; __id34_.bold = false; __id34_.disableWordwrap = false; __id34_.embedFonts = true; __id34_.font = "Porky's"; __id34_.hAlign = "center"; __id34_.multiline = false; __id34_.vAlign = "middle"; __id34_.antiAliasType = "advanced"; __id34_.glowBlur = 3; __id34_.glowColor = 0; __id34_.useGlowFilter = false; __id34_.glowQuality = 1; __id34_.glowStrength = 5; __id34_.gridFitType = "pixel"; __id34_.italic = false; __id34_.selectable = false; __id34_.underline = false; try { __id34_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 167
//menu_moves_boost_259 (StarSplash_OML_fla.menu_moves_boost_259) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_boost_259 extends MovieClip { public var texte:MovieClip; public var b_up:MovieClip; public var couleur:uint; public function menu_moves_boost_259(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); texte.t1.textColor = 0xFFFFFF; } function frame2(){ stop(); texte.t1.textColor = 0xFFFF00; } } }//package StarSplash_OML_fla
Section 168
//menu_moves_boostText_261 (StarSplash_OML_fla.menu_moves_boostText_261) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_boostText_261 extends MovieClip { public var t1:LocalizedTextField; public function menu_moves_boostText_261(){ __setProp_t1_menu_moves_boostText_Layer1_1(); } function __setProp_t1_menu_moves_boostText_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Move3Pres}"; t1.textColor = 0xFFFFFF; t1.textSize = 18; t1.bold = false; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Futura BdCn BT"; t1.hAlign = "left"; t1.multiline = false; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 169
//menu_moves_deadLeaf_268 (StarSplash_OML_fla.menu_moves_deadLeaf_268) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_deadLeaf_268 extends MovieClip { public var texte:MovieClip; public var b_up:MovieClip; public var couleur:uint; public function menu_moves_deadLeaf_268(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); texte.t1.textColor = 0xFFFFFF; } function frame2(){ stop(); texte.t1.textColor = 0xFFFF00; } } }//package StarSplash_OML_fla
Section 170
//menu_moves_deadLeafText_270 (StarSplash_OML_fla.menu_moves_deadLeafText_270) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_deadLeafText_270 extends MovieClip { public var t1:LocalizedTextField; public function menu_moves_deadLeafText_270(){ __setProp_t1_menu_moves_deadLeafText_Layer1_1(); } function __setProp_t1_menu_moves_deadLeafText_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Move6Pres}"; t1.textColor = 0xFFFFFF; t1.textSize = 18; t1.bold = false; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Futura BdCn BT"; t1.hAlign = "left"; t1.multiline = false; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 171
//menu_moves_deadLeafText2_269 (StarSplash_OML_fla.menu_moves_deadLeafText2_269) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_deadLeafText2_269 extends MovieClip { public var __id33_:LocalizedTextField; public function menu_moves_deadLeafText2_269(){ __setProp___id33__menu_moves_deadLeafText2_Layer1_1(); } function __setProp___id33__menu_moves_deadLeafText2_Layer1_1(){ try { __id33_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id33_.text = "{Move6Desc}"; __id33_.textColor = 26367; __id33_.textSize = 8; __id33_.bold = true; __id33_.disableWordwrap = false; __id33_.embedFonts = true; __id33_.font = "Arial"; __id33_.hAlign = "left"; __id33_.multiline = true; __id33_.vAlign = "middle"; __id33_.antiAliasType = "advanced"; __id33_.glowBlur = 3; __id33_.glowColor = 0; __id33_.useGlowFilter = false; __id33_.glowQuality = 1; __id33_.glowStrength = 5; __id33_.gridFitType = "pixel"; __id33_.italic = false; __id33_.selectable = false; __id33_.underline = false; try { __id33_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 172
//menu_moves_dive_262 (StarSplash_OML_fla.menu_moves_dive_262) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_dive_262 extends MovieClip { public var texte:MovieClip; public var b_up:MovieClip; public var couleur:uint; public function menu_moves_dive_262(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); texte.t1.textColor = 0xFFFFFF; } function frame2(){ stop(); texte.t1.textColor = 0xFFFF00; } } }//package StarSplash_OML_fla
Section 173
//menu_moves_diveText_264 (StarSplash_OML_fla.menu_moves_diveText_264) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_diveText_264 extends MovieClip { public var t1:LocalizedTextField; public function menu_moves_diveText_264(){ __setProp_t1_menu_moves_diveText_Layer1_1(); } function __setProp_t1_menu_moves_diveText_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Move4Pres}"; t1.textColor = 0xFFFFFF; t1.textSize = 18; t1.bold = false; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Futura BdCn BT"; t1.hAlign = "left"; t1.multiline = false; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 174
//menu_moves_diveText2_263 (StarSplash_OML_fla.menu_moves_diveText2_263) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_diveText2_263 extends MovieClip { public var __id31_:LocalizedTextField; public function menu_moves_diveText2_263(){ __setProp___id31__menu_moves_diveText2_Layer1_1(); } function __setProp___id31__menu_moves_diveText2_Layer1_1(){ try { __id31_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id31_.text = "{Move4Desc}"; __id31_.textColor = 26367; __id31_.textSize = 8; __id31_.bold = true; __id31_.disableWordwrap = false; __id31_.embedFonts = true; __id31_.font = "Arial"; __id31_.hAlign = "left"; __id31_.multiline = true; __id31_.vAlign = "middle"; __id31_.antiAliasType = "advanced"; __id31_.glowBlur = 3; __id31_.glowColor = 0; __id31_.useGlowFilter = false; __id31_.glowQuality = 1; __id31_.glowStrength = 5; __id31_.gridFitType = "pixel"; __id31_.italic = false; __id31_.selectable = false; __id31_.underline = false; try { __id31_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 175
//menu_moves_doubleBoostText2_260 (StarSplash_OML_fla.menu_moves_doubleBoostText2_260) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_doubleBoostText2_260 extends MovieClip { public var __id30_:LocalizedTextField; public function menu_moves_doubleBoostText2_260(){ __setProp___id30__menu_moves_doubleBoostText2_Layer1_1(); } function __setProp___id30__menu_moves_doubleBoostText2_Layer1_1(){ try { __id30_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id30_.text = "{Move3Desc}"; __id30_.textColor = 26367; __id30_.textSize = 8; __id30_.bold = true; __id30_.disableWordwrap = false; __id30_.embedFonts = true; __id30_.font = "Arial"; __id30_.hAlign = "left"; __id30_.multiline = true; __id30_.vAlign = "middle"; __id30_.antiAliasType = "advanced"; __id30_.glowBlur = 3; __id30_.glowColor = 0; __id30_.useGlowFilter = false; __id30_.glowQuality = 1; __id30_.glowStrength = 5; __id30_.gridFitType = "pixel"; __id30_.italic = false; __id30_.selectable = false; __id30_.underline = false; try { __id30_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 176
//menu_moves_doubleJump_256 (StarSplash_OML_fla.menu_moves_doubleJump_256) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_doubleJump_256 extends MovieClip { public var texte:MovieClip; public var b_up:MovieClip; public var couleur:uint; public function menu_moves_doubleJump_256(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); texte.t1.textColor = 0xFFFFFF; } function frame2(){ stop(); texte.t1.textColor = 0xFFFF00; } } }//package StarSplash_OML_fla
Section 177
//menu_moves_doubleJumpText_258 (StarSplash_OML_fla.menu_moves_doubleJumpText_258) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_doubleJumpText_258 extends MovieClip { public var t1:LocalizedTextField; public function menu_moves_doubleJumpText_258(){ __setProp_t1_menu_moves_doubleJumpText_Layer1_1(); } function __setProp_t1_menu_moves_doubleJumpText_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Move2Pres}"; t1.textColor = 0xFFFFFF; t1.textSize = 18; t1.bold = false; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Futura BdCn BT"; t1.hAlign = "left"; t1.multiline = false; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 178
//menu_moves_doubleJumpText2_257 (StarSplash_OML_fla.menu_moves_doubleJumpText2_257) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_doubleJumpText2_257 extends MovieClip { public var __id29_:LocalizedTextField; public function menu_moves_doubleJumpText2_257(){ __setProp___id29__menu_moves_doubleJumpText2_Layer1_1(); } function __setProp___id29__menu_moves_doubleJumpText2_Layer1_1(){ try { __id29_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id29_.text = "{Move2Desc}"; __id29_.textColor = 26367; __id29_.textSize = 8; __id29_.bold = true; __id29_.disableWordwrap = false; __id29_.embedFonts = true; __id29_.font = "Arial"; __id29_.hAlign = "left"; __id29_.multiline = true; __id29_.vAlign = "middle"; __id29_.antiAliasType = "advanced"; __id29_.glowBlur = 3; __id29_.glowColor = 0; __id29_.useGlowFilter = false; __id29_.glowQuality = 1; __id29_.glowStrength = 5; __id29_.gridFitType = "pixel"; __id29_.italic = false; __id29_.selectable = false; __id29_.underline = false; try { __id29_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 179
//menu_moves_roundDive_271 (StarSplash_OML_fla.menu_moves_roundDive_271) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_roundDive_271 extends MovieClip { public var texte:MovieClip; public var b_up:MovieClip; public var couleur:uint; public function menu_moves_roundDive_271(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); texte.t1.textColor = 0xFFFFFF; } function frame2(){ stop(); texte.t1.textColor = 0xFFFF00; } } }//package StarSplash_OML_fla
Section 180
//menu_moves_RoundDiveText_273 (StarSplash_OML_fla.menu_moves_RoundDiveText_273) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_RoundDiveText_273 extends MovieClip { public var t1:LocalizedTextField; public function menu_moves_RoundDiveText_273(){ __setProp_t1_menu_moves_RoundDiveText_Layer1_1(); } function __setProp_t1_menu_moves_RoundDiveText_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Move7Pres}"; t1.textColor = 0xFFFFFF; t1.textSize = 18; t1.bold = false; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Futura BdCn BT"; t1.hAlign = "left"; t1.multiline = false; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 181
//menu_moves_roundDiveText2_272 (StarSplash_OML_fla.menu_moves_roundDiveText2_272) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import spill.localisation.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_roundDiveText2_272 extends MovieClip { public var t1:LocalizedTextField; public function menu_moves_roundDiveText2_272(){ addFrameScript(0, frame1); __setProp_t1_menu_moves_roundDiveText2_Layer1_1(); } function frame1(){ if (MovieClip(parent.parent.parent.parent.parent.parent).quelleLangue() == "de"){ this.t1.textSize = 6; }; } function __setProp_t1_menu_moves_roundDiveText2_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Move7Desc}"; t1.textColor = 26367; t1.textSize = 8; t1.bold = true; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Arial"; t1.hAlign = "left"; t1.multiline = true; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 182
//menu_moves_sonar_274 (StarSplash_OML_fla.menu_moves_sonar_274) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_sonar_274 extends MovieClip { public var texte:MovieClip; public var b_up:MovieClip; public var couleur:uint; public function menu_moves_sonar_274(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); texte.t1.textColor = 0xFFFFFF; } function frame2(){ stop(); texte.t1.textColor = 0xFFFF00; } } }//package StarSplash_OML_fla
Section 183
//menu_moves_sonarText_277 (StarSplash_OML_fla.menu_moves_sonarText_277) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_sonarText_277 extends MovieClip { public var t1:LocalizedTextField; public function menu_moves_sonarText_277(){ __setProp_t1_menu_moves_sonarText_Layer1_1(); } function __setProp_t1_menu_moves_sonarText_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Move8Pres}"; t1.textColor = 0xFFFFFF; t1.textSize = 18; t1.bold = false; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Futura BdCn BT"; t1.hAlign = "left"; t1.multiline = false; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 184
//menu_moves_sonarText2_276 (StarSplash_OML_fla.menu_moves_sonarText2_276) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import spill.localisation.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_sonarText2_276 extends MovieClip { public var t1:LocalizedTextField; public function menu_moves_sonarText2_276(){ addFrameScript(0, frame1); __setProp_t1_menu_moves_sonarText2_Layer1_1(); } function __setProp_t1_menu_moves_sonarText2_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Move8Desc}"; t1.textColor = 26367; t1.textSize = 8; t1.bold = true; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Arial"; t1.hAlign = "left"; t1.multiline = true; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } function frame1(){ if (MovieClip(parent.parent.parent.parent.parent.parent).quelleLangue() == "nl"){ this.t1.textSize = 6; } else { if (MovieClip(parent.parent.parent.parent.parent.parent).quelleLangue() == "id"){ this.t1.textSize = 6; }; }; } } }//package StarSplash_OML_fla
Section 185
//menu_moves_swim_246 (StarSplash_OML_fla.menu_moves_swim_246) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_swim_246 extends MovieClip { public var texte:MovieClip; public var b_down:MovieClip; public var b_up:MovieClip; public var b_left:MovieClip; public var couleur:uint; public var b_right:MovieClip; public function menu_moves_swim_246(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); texte.t1.textColor = 0xFFFFFF; } function frame2(){ stop(); texte.t1.textColor = 0xFFFF00; } } }//package StarSplash_OML_fla
Section 186
//menu_moves_swimText_252 (StarSplash_OML_fla.menu_moves_swimText_252) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_swimText_252 extends MovieClip { public var t1:LocalizedTextField; public function menu_moves_swimText_252(){ __setProp_t1_menu_moves_swimText_Layer1_1(); } function __setProp_t1_menu_moves_swimText_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Move1Pres}"; t1.textColor = 0xFFFFFF; t1.textSize = 20; t1.bold = false; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Futura BdCn BT"; t1.hAlign = "left"; t1.multiline = false; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 187
//menu_moves_swimText2_251 (StarSplash_OML_fla.menu_moves_swimText2_251) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_swimText2_251 extends MovieClip { public var __id28_:LocalizedTextField; public function menu_moves_swimText2_251(){ __setProp___id28__menu_moves_swimText2_Layer1_1(); } function __setProp___id28__menu_moves_swimText2_Layer1_1(){ try { __id28_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id28_.text = "{Move1Desc}"; __id28_.textColor = 26367; __id28_.textSize = 8; __id28_.bold = true; __id28_.disableWordwrap = false; __id28_.embedFonts = true; __id28_.font = "Arial"; __id28_.hAlign = "left"; __id28_.multiline = true; __id28_.vAlign = "middle"; __id28_.antiAliasType = "advanced"; __id28_.glowBlur = 3; __id28_.glowColor = 0; __id28_.useGlowFilter = false; __id28_.glowQuality = 1; __id28_.glowStrength = 5; __id28_.gridFitType = "pixel"; __id28_.italic = false; __id28_.selectable = false; __id28_.underline = false; try { __id28_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 188
//menu_moves_tripleJump_265 (StarSplash_OML_fla.menu_moves_tripleJump_265) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_moves_tripleJump_265 extends MovieClip { public var texte:MovieClip; public var b_up:MovieClip; public var couleur:uint; public function menu_moves_tripleJump_265(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ stop(); texte.t1.textColor = 0xFFFFFF; } function frame2(){ stop(); texte.t1.textColor = 0xFFFF00; } } }//package StarSplash_OML_fla
Section 189
//menu_moves_tripleJumpText_267 (StarSplash_OML_fla.menu_moves_tripleJumpText_267) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_tripleJumpText_267 extends MovieClip { public var t1:LocalizedTextField; public function menu_moves_tripleJumpText_267(){ __setProp_t1_menu_moves_tripleJumpText_Layer1_1(); } function __setProp_t1_menu_moves_tripleJumpText_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Move5Pres}"; t1.textColor = 0xFFFFFF; t1.textSize = 18; t1.bold = false; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Futura BdCn BT"; t1.hAlign = "left"; t1.multiline = false; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 190
//menu_moves_tripleJumpText2_266 (StarSplash_OML_fla.menu_moves_tripleJumpText2_266) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_moves_tripleJumpText2_266 extends MovieClip { public var __id32_:LocalizedTextField; public function menu_moves_tripleJumpText2_266(){ __setProp___id32__menu_moves_tripleJumpText2_Layer1_1(); } function __setProp___id32__menu_moves_tripleJumpText2_Layer1_1(){ try { __id32_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id32_.text = "{Move5Desc}"; __id32_.textColor = 26367; __id32_.textSize = 8; __id32_.bold = true; __id32_.disableWordwrap = false; __id32_.embedFonts = true; __id32_.font = "Arial"; __id32_.hAlign = "left"; __id32_.multiline = true; __id32_.vAlign = "middle"; __id32_.antiAliasType = "advanced"; __id32_.glowBlur = 3; __id32_.glowColor = 0; __id32_.useGlowFilter = false; __id32_.glowQuality = 1; __id32_.glowStrength = 5; __id32_.gridFitType = "pixel"; __id32_.italic = false; __id32_.selectable = false; __id32_.underline = false; try { __id32_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 191
//menu_pres__200 (StarSplash_OML_fla.menu_pres__200) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_pres__200 extends MovieClip { public function menu_pres__200(){ addFrameScript(8, frame9, 29, frame30); } function frame9(){ play(); } function frame30(){ gotoAndPlay(9); } } }//package StarSplash_OML_fla
Section 192
//menu_pres_C_c_196 (StarSplash_OML_fla.menu_pres_C_c_196) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_pres_C_c_196 extends MovieClip { public function menu_pres_C_c_196(){ addFrameScript(8, frame9, 29, frame30); } function frame9(){ play(); } function frame30(){ gotoAndPlay(9); } } }//package StarSplash_OML_fla
Section 193
//menu_pres_E_c_198 (StarSplash_OML_fla.menu_pres_E_c_198) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_pres_E_c_198 extends MovieClip { public function menu_pres_E_c_198(){ addFrameScript(8, frame9, 29, frame30); } function frame9(){ play(); } function frame30(){ gotoAndPlay(9); } } }//package StarSplash_OML_fla
Section 194
//menu_pres_F_c_212 (StarSplash_OML_fla.menu_pres_F_c_212) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_pres_F_c_212 extends MovieClip { public function menu_pres_F_c_212(){ addFrameScript(8, frame9, 29, frame30); } function frame9(){ play(); } function frame30(){ gotoAndPlay(9); } } }//package StarSplash_OML_fla
Section 195
//menu_pres_gameover_223 (StarSplash_OML_fla.menu_pres_gameover_223) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_pres_gameover_223 extends MovieClip { public var btnContinue:MovieClip; public var btnEndGame:MovieClip; public var nextPlace:String; public function menu_pres_gameover_223(){ addFrameScript(1, frame2, 54, frame55, 58, frame59, 69, frame70, 74, frame75); } function frame70(){ MovieClip(root).frameName = null; } function frame75(){ stop(); MovieClip(parent.parent.parent.parent).btnMoreGames.removeEventListener(MouseEvent.CLICK, MovieClip(parent.parent.parent.parent).clickMoreGames); MovieClip(root).gotoAndPlay("result", "Menu"); } public function clickContinue(_arg1:Event=null):void{ stage.removeEventListener(KeyboardEvent.KEY_DOWN, checkKeysDown); this.btnEndGame.removeEventListener(MouseEvent.CLICK, clickEndGame); this.btnContinue.removeEventListener(MouseEvent.CLICK, clickContinue); nextPlace = "continue"; MyGlobal.score = 0; MovieClip(root).menuJeu.score.text = "0.00"; MovieClip(root).lv.itemsCollectAll = 0; this.play(); } function frame2(){ MovieClip(root).sonsF("gameOver", false); } public function clickEndGame(_arg1:Event=null):void{ stage.removeEventListener(KeyboardEvent.KEY_DOWN, checkKeysDown); this.btnContinue.removeEventListener(MouseEvent.CLICK, clickContinue); this.btnEndGame.removeEventListener(MouseEvent.CLICK, clickEndGame); nextPlace = "menu"; this.play(); } function frame55(){ stop(); this.btnEndGame.focusRect = false; this.btnContinue.focusRect = false; stage.addEventListener(KeyboardEvent.KEY_DOWN, checkKeysDown); this.btnContinue.addEventListener(MouseEvent.CLICK, clickContinue); this.btnEndGame.addEventListener(MouseEvent.CLICK, clickEndGame); } function frame59(){ if (nextPlace == "continue"){ stop(); MovieClip(root).lv.pratique = true; MovieClip(parent.parent).play(); } else { play(); }; } public function checkKeysDown(_arg1:KeyboardEvent):void{ if (((MovieClip(root).lv.isKeyDown(37)) || (MovieClip(root).lv.isKeyDown(65)))){ stage.focus = this.btnEndGame; }; if (((MovieClip(root).lv.isKeyDown(39)) || (MovieClip(root).lv.isKeyDown(68)))){ stage.focus = this.btnContinue; }; if (((MovieClip(root).lv.isKeyDown(32)) || (MovieClip(root).lv.isKeyDown(13)))){ if (stage.focus == this.btnEndGame){ clickEndGame(); } else { if (stage.focus == this.btnContinue){ clickContinue(); }; }; }; } } }//package StarSplash_OML_fla
Section 196
//menu_pres_gameover_text_TEXT_225 (StarSplash_OML_fla.menu_pres_gameover_text_TEXT_225) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_pres_gameover_text_TEXT_225 extends MovieClip { public var __id17_:LocalizedTextField; public function menu_pres_gameover_text_TEXT_225(){ __setProp___id17__menu_pres_gameover_text_TEXT_Layer1_1(); } function __setProp___id17__menu_pres_gameover_text_TEXT_Layer1_1(){ try { __id17_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id17_.text = "{GameOver}"; __id17_.textColor = 0xFF0000; __id17_.textSize = 65; __id17_.bold = false; __id17_.disableWordwrap = false; __id17_.embedFonts = true; __id17_.font = "Berlin Sans FB Demi"; __id17_.hAlign = "center"; __id17_.multiline = false; __id17_.vAlign = "middle"; __id17_.antiAliasType = "advanced"; __id17_.glowBlur = 3; __id17_.glowColor = 0; __id17_.useGlowFilter = false; __id17_.glowQuality = 1; __id17_.glowStrength = 5; __id17_.gridFitType = "pixel"; __id17_.italic = false; __id17_.selectable = false; __id17_.underline = false; try { __id17_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 197
//menu_pres_gameover_titext_230 (StarSplash_OML_fla.menu_pres_gameover_titext_230) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_pres_gameover_titext_230 extends MovieClip { public var __id20_:LocalizedTextField; public var __id21_:LocalizedTextField; public function menu_pres_gameover_titext_230(){ __setProp___id20__menu_pres_gameover_titext_Layer2_1(); __setProp___id21__menu_pres_gameover_titext_Layer2_1(); } function __setProp___id20__menu_pres_gameover_titext_Layer2_1(){ try { __id20_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id20_.text = "{ContinueDesc}"; __id20_.textColor = 0xFFFFFF; __id20_.textSize = 10; __id20_.bold = true; __id20_.disableWordwrap = false; __id20_.embedFonts = true; __id20_.font = "Arial"; __id20_.hAlign = "center"; __id20_.multiline = false; __id20_.vAlign = "middle"; __id20_.antiAliasType = "advanced"; __id20_.glowBlur = 3; __id20_.glowColor = 0; __id20_.useGlowFilter = false; __id20_.glowQuality = 1; __id20_.glowStrength = 5; __id20_.gridFitType = "pixel"; __id20_.italic = false; __id20_.selectable = false; __id20_.underline = false; try { __id20_["componentInspectorSetting"] = false; } catch(e:Error) { }; } function __setProp___id21__menu_pres_gameover_titext_Layer2_1(){ try { __id21_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id21_.text = "{EndGameDesc}"; __id21_.textColor = 0xFFFFFF; __id21_.textSize = 10; __id21_.bold = true; __id21_.disableWordwrap = false; __id21_.embedFonts = true; __id21_.font = "Arial"; __id21_.hAlign = "center"; __id21_.multiline = false; __id21_.vAlign = "middle"; __id21_.antiAliasType = "advanced"; __id21_.glowBlur = 3; __id21_.glowColor = 0; __id21_.useGlowFilter = false; __id21_.glowQuality = 1; __id21_.glowStrength = 5; __id21_.gridFitType = "pixel"; __id21_.italic = false; __id21_.selectable = false; __id21_.underline = false; try { __id21_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 198
//menu_pres_P_c_208 (StarSplash_OML_fla.menu_pres_P_c_208) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_pres_P_c_208 extends MovieClip { public function menu_pres_P_c_208(){ addFrameScript(8, frame9, 29, frame30); } function frame9(){ play(); } function frame30(){ gotoAndPlay(9); } } }//package StarSplash_OML_fla
Section 199
//menu_pres_passed_189 (StarSplash_OML_fla.menu_pres_passed_189) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_pres_passed_189 extends MovieClip { public function menu_pres_passed_189(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5); } function frame3(){ stop(); } function frame1(){ if (MovieClip(root).lv.pratique == false){ if (MovieClip(parent.parent).verdict == "perfect"){ gotoAndPlay("perfect"); } else { if (MovieClip(parent.parent).verdict == "failed"){ gotoAndPlay("failed"); } else { gotoAndPlay("passed"); }; }; } else { gotoAndPlay("practice"); }; stop(); } function frame4(){ stop(); } function frame5(){ stop(); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 200
//menu_pres_passed_191 (StarSplash_OML_fla.menu_pres_passed_191) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_pres_passed_191 extends MovieClip { public function menu_pres_passed_191(){ addFrameScript(2, frame3, 91, frame92); } function frame3(){ MovieClip(root).sonsF("passed", false); } function frame92(){ stop(); MovieClip(parent.parent.parent).play(); } } }//package StarSplash_OML_fla
Section 201
//menu_pres_passed_c_190 (StarSplash_OML_fla.menu_pres_passed_c_190) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_pres_passed_c_190 extends MovieClip { public function menu_pres_passed_c_190(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); if ((((((((((((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "en_us")) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "en_uk")))) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "ar")))) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "in")))) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "jp")))) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "cn")))){ this.gotoAndStop("en"); } else { this.gotoAndStop("autres"); }; } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 202
//menu_pres_passed_sousTitreText_205 (StarSplash_OML_fla.menu_pres_passed_sousTitreText_205) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_pres_passed_sousTitreText_205 extends MovieClip { public var t1:LocalizedTextField; public function menu_pres_passed_sousTitreText_205(){ __setProp_t1_menu_pres_passed_sousTitreText_Layer1_1(); } function __setProp_t1_menu_pres_passed_sousTitreText_Layer1_1(){ try { t1["componentInspectorSetting"] = true; } catch(e:Error) { }; t1.text = "{Passed}"; t1.textColor = 0xFFFFFF; t1.textSize = 65; t1.bold = false; t1.disableWordwrap = false; t1.embedFonts = true; t1.font = "Berlin Sans FB Demi"; t1.hAlign = "center"; t1.multiline = false; t1.vAlign = "middle"; t1.antiAliasType = "advanced"; t1.glowBlur = 3; t1.glowColor = 0; t1.useGlowFilter = false; t1.glowQuality = 1; t1.glowStrength = 5; t1.gridFitType = "pixel"; t1.italic = false; t1.selectable = false; t1.underline = false; try { t1["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 203
//menu_pres_passed2_202 (StarSplash_OML_fla.menu_pres_passed2_202) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_pres_passed2_202 extends MovieClip { public var texte:MovieClip; public function menu_pres_passed2_202(){ addFrameScript(0, frame1, 2, frame3, 91, frame92); } function frame3(){ MovieClip(root).sonsF("passed", false); texte.visible = true; } function frame1(){ texte.visible = false; } function frame92(){ stop(); MovieClip(parent.parent.parent).play(); } } }//package StarSplash_OML_fla
Section 204
//menu_pres_perfect_207 (StarSplash_OML_fla.menu_pres_perfect_207) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_pres_perfect_207 extends MovieClip { public var feux:MovieClip; public function menu_pres_perfect_207(){ addFrameScript(2, frame3, 89, frame90); } function frame3(){ MovieClip(root).sonsF("perfect", false); } function frame90(){ stop(); MovieClip(parent.parent.parent).play(); } } }//package StarSplash_OML_fla
Section 205
//menu_pres_perfect_c_206 (StarSplash_OML_fla.menu_pres_perfect_c_206) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_pres_perfect_c_206 extends MovieClip { public function menu_pres_perfect_c_206(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); if ((((((((((((((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "en_us")) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "en_uk")))) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "nl")))) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "ar")))) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "in")))) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "jp")))) || ((MovieClip(parent.parent.parent.parent.parent).quelleLangue() == "cn")))){ this.gotoAndStop("en"); } else { this.gotoAndStop("autres"); }; } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 206
//menu_pres_perfect_sousTitreText_222 (StarSplash_OML_fla.menu_pres_perfect_sousTitreText_222) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_pres_perfect_sousTitreText_222 extends MovieClip { public var langue:String; public function menu_pres_perfect_sousTitreText_222(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8); } function frame3(){ stop(); } function frame6(){ stop(); } function frame7(){ stop(); } function frame1(){ stop(); langue = MovieClip(parent.parent.parent.parent.parent.parent.parent.parent).quelleLangue(); if ((((langue == "pt")) || ((langue == "br")))){ this.gotoAndStop("pt"); } else { if ((((langue == "de")) || ((langue == "se")))){ this.gotoAndStop("de"); } else { if ((((((langue == "es")) || ((langue == "es_mx")))) || ((langue == "es_ar")))){ this.gotoAndStop("es"); } else { this.gotoAndStop(langue); }; }; }; } function frame4(){ stop(); } function frame5(){ stop(); } function frame8(){ stop(); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 207
//menu_pres_perfect2_220 (StarSplash_OML_fla.menu_pres_perfect2_220) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_pres_perfect2_220 extends MovieClip { public var texte:MovieClip; public var feux:MovieClip; public function menu_pres_perfect2_220(){ addFrameScript(0, frame1, 2, frame3, 89, frame90); } function frame3(){ MovieClip(root).sonsF("perfect", false); texte.visible = true; } function frame1(){ texte.visible = false; } function frame90(){ stop(); MovieClip(parent.parent.parent).play(); } } }//package StarSplash_OML_fla
Section 208
//menu_pres_R_c_210 (StarSplash_OML_fla.menu_pres_R_c_210) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_pres_R_c_210 extends MovieClip { public function menu_pres_R_c_210(){ addFrameScript(8, frame9, 29, frame30); } function frame9(){ play(); } function frame30(){ gotoAndPlay(9); } } }//package StarSplash_OML_fla
Section 209
//menu_pres_S_c_192 (StarSplash_OML_fla.menu_pres_S_c_192) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_pres_S_c_192 extends MovieClip { public function menu_pres_S_c_192(){ addFrameScript(8, frame9, 29, frame30); } function frame9(){ play(); } function frame30(){ gotoAndPlay(9); } } }//package StarSplash_OML_fla
Section 210
//menu_pres_T_c_214 (StarSplash_OML_fla.menu_pres_T_c_214) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_pres_T_c_214 extends MovieClip { public function menu_pres_T_c_214(){ addFrameScript(8, frame9, 29, frame30); } function frame9(){ play(); } function frame30(){ gotoAndPlay(9); } } }//package StarSplash_OML_fla
Section 211
//menu_pres_U_c_194 (StarSplash_OML_fla.menu_pres_U_c_194) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_pres_U_c_194 extends MovieClip { public function menu_pres_U_c_194(){ addFrameScript(8, frame9, 29, frame30); } function frame9(){ play(); } function frame30(){ gotoAndPlay(9); } } }//package StarSplash_OML_fla
Section 212
//menu_pres_welldone_232 (StarSplash_OML_fla.menu_pres_welldone_232) package StarSplash_OML_fla { import flash.display.*; public dynamic class menu_pres_welldone_232 extends MovieClip { public function menu_pres_welldone_232(){ addFrameScript(59, frame60); } function frame60(){ stop(); MovieClip(parent.parent).play(); } } }//package StarSplash_OML_fla
Section 213
//menu_pres_welldone_g2_text_235 (StarSplash_OML_fla.menu_pres_welldone_g2_text_235) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_pres_welldone_g2_text_235 extends MovieClip { public var __id22_:LocalizedTextField; public function menu_pres_welldone_g2_text_235(){ __setProp___id22__menu_pres_welldone_g2_text_Layer1_1(); } function __setProp___id22__menu_pres_welldone_g2_text_Layer1_1(){ try { __id22_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id22_.text = "{WellDone}"; __id22_.textColor = 0xFFFFFF; __id22_.textSize = 49; __id22_.bold = false; __id22_.disableWordwrap = false; __id22_.embedFonts = true; __id22_.font = "Berlin Sans FB Demi"; __id22_.hAlign = "center"; __id22_.multiline = false; __id22_.vAlign = "middle"; __id22_.antiAliasType = "advanced"; __id22_.glowBlur = 3; __id22_.glowColor = 0; __id22_.useGlowFilter = false; __id22_.glowQuality = 1; __id22_.glowStrength = 5; __id22_.gridFitType = "pixel"; __id22_.italic = false; __id22_.selectable = false; __id22_.underline = false; try { __id22_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 214
//menu_pres_welldone_g2_text2_236 (StarSplash_OML_fla.menu_pres_welldone_g2_text2_236) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_pres_welldone_g2_text2_236 extends MovieClip { public var __id23_:LocalizedTextField; public function menu_pres_welldone_g2_text2_236(){ __setProp___id23__menu_pres_welldone_g2_text2_Layer1_1(); } function __setProp___id23__menu_pres_welldone_g2_text2_Layer1_1(){ try { __id23_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id23_.text = "{NeedPractice}"; __id23_.textColor = 0xFFFFFF; __id23_.textSize = 43; __id23_.bold = false; __id23_.disableWordwrap = false; __id23_.embedFonts = true; __id23_.font = "Berlin Sans FB Demi"; __id23_.hAlign = "center"; __id23_.multiline = false; __id23_.vAlign = "middle"; __id23_.antiAliasType = "advanced"; __id23_.glowBlur = 3; __id23_.glowColor = 0; __id23_.useGlowFilter = false; __id23_.glowQuality = 1; __id23_.glowStrength = 5; __id23_.gridFitType = "pixel"; __id23_.italic = false; __id23_.selectable = false; __id23_.underline = false; try { __id23_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 215
//menu_press_welldone_g2_234 (StarSplash_OML_fla.menu_press_welldone_g2_234) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_press_welldone_g2_234 extends MovieClip { public function menu_press_welldone_g2_234(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ if (MovieClip(root).menuJeu.presTableau.verdict == "failed"){ MovieClip(root).sonsF("needPractice", false); gotoAndStop(2); } else { MovieClip(root).sonsF("passed", false); }; stop(); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 216
//menu_result_181 (StarSplash_OML_fla.menu_result_181) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_result_181 extends MovieClip { public var titre:MovieClip; public var i:uint; public function menu_result_181(){ addFrameScript(0, frame1); } function frame1(){ i = MyGlobal.vague; if (MovieClip(root).lv.pratique == false){ titre.texte.text = MovieClip(parent.parent.parent.parent).quelTexte("LvResult1"); } else { titre.texte.text = MovieClip(parent.parent.parent.parent).quelTexte("LvResult2"); }; titre.texte.text = titre.texte.text.split("[x]").join(i); } } }//package StarSplash_OML_fla
Section 217
//menu_result_c_79 (StarSplash_OML_fla.menu_result_c_79) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import mochi.as3.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_result_c_79 extends MovieClip { public var m:MovieClip; public function menu_result_c_79(){ addFrameScript(0, frame1, 1, frame2, 7, frame8); } public function clickPlayAgain(_arg1:Event=null):void{ if (this.m.btnSubmit != null){ this.m.btnSubmit.removeEventListener(MouseEvent.CLICK, clickSubmit); this.m.btnSubmit.mouseEnabled = false; }; this.m.btnMenu.removeEventListener(MouseEvent.CLICK, clickMenu); this.m.btnPlayAgain.removeEventListener(MouseEvent.CLICK, clickPlayAgain); MovieClip(parent).snails.removeEventListener(MouseEvent.CLICK, MovieClip(parent).clickSNL); this.m.btnMenu.mouseEnabled = false; this.m.btnPlayAgain.mouseEnabled = false; MovieClip(parent).fondu.nextPlace = "jeu"; MovieClip(parent).fondu.nextScene1 = "Jeu"; MovieClip(parent).fondu.gotoAndPlay("fadeOut"); } public function clickMenu(_arg1:Event=null):void{ if (this.m.btnSubmit != null){ this.m.btnSubmit.removeEventListener(MouseEvent.CLICK, clickSubmit); }; this.m.btnMenu.removeEventListener(MouseEvent.CLICK, clickMenu); this.m.btnPlayAgain.removeEventListener(MouseEvent.CLICK, clickPlayAgain); this.play(); } function frame1(){ stop(); if (this.m.btnSubmit != null){ this.m.btnSubmit.addEventListener(MouseEvent.CLICK, clickSubmit); }; this.m.btnMenu.addEventListener(MouseEvent.CLICK, clickMenu); this.m.btnPlayAgain.addEventListener(MouseEvent.CLICK, clickPlayAgain); } function frame8(){ stop(); MovieClip(parent).gotoAndPlay("menu"); } function frame2(){ if (this.m.btnSubmit != null){ this.m.btnSubmit.removeEventListener(MouseEvent.CLICK, clickSubmit); }; this.m.btnMenu.removeEventListener(MouseEvent.CLICK, clickMenu); this.m.btnPlayAgain.removeEventListener(MouseEvent.CLICK, clickPlayAgain); MovieClip(parent).snails.removeEventListener(MouseEvent.CLICK, MovieClip(parent).clickSNL); if (this.m.btnSubmit != null){ this.m.btnSubmit.mouseEnabled = false; }; this.m.btnMenu.mouseEnabled = false; this.m.btnPlayAgain.mouseEnabled = false; play(); } public function clickSubmit(_arg1:Event=null):void{ var o:Object; var boardID:String; var e = _arg1; this.m.visible = false; o = {n:[7, 15, 8, 1, 6, 12, 15, 4, 14, 10, 9, 10, 2, 2, 6, 12], f:function (_arg1:Number, _arg2:String):String{ if (_arg2.length == 16){ return (_arg2); }; return (this.f((_arg1 + 1), (_arg2 + this.n[_arg1].toString(16)))); }}; boardID = o.f(0, ""); MochiScores.showLeaderboard({boardID:boardID, score:(MyGlobal.score * 100), onClose:function (){ stop(); MovieClip(root).Menu_c.m.visible = true; }}); } } }//package StarSplash_OML_fla
Section 218
//menu_result2_80 (StarSplash_OML_fla.menu_result2_80) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_result2_80 extends MovieClip { public var btnPlayAgain:MovieClip; public var score:TextField; public var btnSubmit:MovieClip; public var btnMenu:MovieClip; public function menu_result2_80(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ if (MovieClip(parent.parent).snailsLogo == true){ this.gotoAndStop(2); }; this.score.text = (MyGlobal.score + "%"); stop(); } function frame2(){ this.score.text = (MyGlobal.score + "%"); stop(); } } }//package StarSplash_OML_fla
Section 219
//menu_result2Text_81 (StarSplash_OML_fla.menu_result2Text_81) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_result2Text_81 extends MovieClip { public var __id8_:LocalizedTextField; public function menu_result2Text_81(){ __setProp___id8__menu_result2Text_Layer1_1(); } function __setProp___id8__menu_result2Text_Layer1_1(){ try { __id8_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id8_.text = "{FinalScore}"; __id8_.textColor = 0xFFFFFF; __id8_.textSize = 30; __id8_.bold = false; __id8_.disableWordwrap = false; __id8_.embedFonts = true; __id8_.font = "Porky's"; __id8_.hAlign = "center"; __id8_.multiline = false; __id8_.vAlign = "middle"; __id8_.antiAliasType = "advanced"; __id8_.glowBlur = 3; __id8_.glowColor = 0; __id8_.useGlowFilter = false; __id8_.glowQuality = 1; __id8_.glowStrength = 5; __id8_.gridFitType = "pixel"; __id8_.italic = false; __id8_.selectable = false; __id8_.underline = false; try { __id8_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 220
//menu_resultTitreText_182 (StarSplash_OML_fla.menu_resultTitreText_182) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menu_resultTitreText_182 extends MovieClip { public var texte:LocalizedTextField; public function menu_resultTitreText_182(){ __setProp_texte_menu_resultTitreText_Layer1_1(); } function __setProp_texte_menu_resultTitreText_Layer1_1(){ try { texte["componentInspectorSetting"] = true; } catch(e:Error) { }; texte.text = "Level [x] - result"; texte.textColor = 0xFFFFFF; texte.textSize = 32; texte.bold = false; texte.disableWordwrap = false; texte.embedFonts = true; texte.font = "Porky's"; texte.hAlign = "center"; texte.multiline = false; texte.vAlign = "middle"; texte.antiAliasType = "advanced"; texte.glowBlur = 3; texte.glowColor = 0; texte.useGlowFilter = false; texte.glowQuality = 1; texte.glowStrength = 5; texte.gridFitType = "pixel"; texte.italic = false; texte.selectable = false; texte.underline = false; try { texte["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 221
//menu_scene_dauphin_20 (StarSplash_OML_fla.menu_scene_dauphin_20) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import com.greensock.*; import flash.utils.*; import com.greensock.easing.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_scene_dauphin_20 extends MovieClip { public var passeItems1:uint; public var dauphinBoost:Boolean; public var passeItems3:uint; public var limDroite:uint; public var passeItems2:uint; public var itemsCollectAll:uint; public var right:Boolean; public var myTween:TweenLite; public var jump:Boolean; public var plongeFini:Boolean; public var nombreSauts:uint; public var longTableau:uint; public var splash:Array; public var i:Number; public var initItemSpd:Number; public var peutSonar; public var cntIt:uint; public var pourcent:uint; public var posY:Number; public var up:Boolean; public var peutPlonger:Boolean; public var down:Boolean; public var dauphin:MovieClip; public var splashFini:Boolean; public var newHx:int; public var newHy:int; public var myTween2b:TweenLite; public var eau_bg:MovieClip; public var limVerticale:uint; public var totalItems:uint; public var chiffreStart:int; public var totalItemsAll:uint; public var keyArray:Array; public var tiSplash:Array; public var dauphinPos:Point; public var dauphinTombe:Boolean; public var masque2:MovieClip; public var eau:uint; public var itemsCollect:uint; public var SPD:uint; public var hit; public var chiffre:String; public var maxSauts:uint; public var boost:Boolean; public var itemSpd:Number; public var passeItems:uint; public var fini:Boolean; public var myTween2:TweenLite; public var myTween3:TweenLite; public var myTween4:TweenLite; public var myTween6:TweenLite; public var myTween7:TweenLite; public var myTween8:TweenLite; public var myTween5:TweenLite; public function menu_scene_dauphin_20(){ addFrameScript(0, frame1); } public function deleteSplash(_arg1:String):void{ if (_arg1 == "grosSplash"){ this.splash[0].removeEventListener(Event.ENTER_FRAME, this.splash[0].entFrame); this.removeChild(this.splash[0]); this.splash[0] = null; splash.splice(0, 1); } else { if (_arg1 == "tiSplash"){ this.tiSplash[0].removeEventListener(Event.ENTER_FRAME, this.tiSplash[0].entFrame); this.removeChild(this.tiSplash[0]); this.tiSplash[0] = null; tiSplash.splice(0, 1); }; }; } public function scrolling(){ if (dauphinBoost == false){ if (dauphinTombe == false){ posY = (limVerticale - this.dauphinPos.y); Math.floor((posY = (posY / 7.5))); } else { if (dauphinTombe == true){ if (this.dauphinPos.y < 40){ posY = (posY + 2); } else { if (this.dauphinPos.y > 200){ posY = (posY - 8); } else { posY = (posY - 3); if (posY < -30){ posY = -30; }; }; }; }; }; this.y = (this.y + posY); }; if (this.y > 800){ this.y = 800; } else { if (this.y < 0){ this.y = 0; }; }; } public function completeFunction():void{ myTween.reverse(); if (this.dauphin.y < 0){ dauphinTombe = true; }; } public function updateMed():void{ if ((this.dauphin.x - (SPD + 2)) > 20){ this.dauphin.x = (this.dauphin.x - (SPD + 2)); } else { this.dauphin.x = 20; }; } public function meduseSaut():void{ dauphinTombe = false; dauphinBoost = false; if (plongeFini == false){ plongeFini = true; }; myTween7 = new TweenLite(this.dauphin, 30, {y:-260, useFrames:true, onComplete:meduseSautComplete, overwrite:true}); } public function rndHundredth(_arg1){ var _local2:Number; _local2 = _arg1; _local2 = (_local2 * 100); _local2 = Math.round(_local2); _local2 = (_local2 / 100); return (_local2); } function frame1(){ stop(); OverwriteManager.init(2); SPD = 6; jump = false; keyArray = new Array(); eau = 267; limDroite = 600; fini = true; up = false; right = false; down = false; boost = true; peutSonar = true; peutPlonger = true; plongeFini = true; nombreSauts = 0; maxSauts = 3; splashFini = true; splash = new Array(); tiSplash = new Array(); cntIt = 0; initItemSpd = 8; itemSpd = initItemSpd; limVerticale = 200; dauphinPos = new Point(this.dauphin.x, this.dauphin.y); dauphinTombe = false; dauphinBoost = false; newHx = 0; newHy = 0; totalItemsAll = 400; itemsCollectAll = 0; totalItems = 0; itemsCollect = 0; passeItems = 0; passeItems1 = 20; passeItems2 = 30; passeItems3 = 35; pourcent = 0; chiffreStart = 0; chiffre = null; longTableau = 0; i = 0; while (i < 222) { keyArray.push([i, false]); i++; }; this.addEventListener(Event.ENTER_FRAME, entFrame); } public function updateBoost():void{ if (this.dauphin.x >= limDroite){ this.dauphin.x = limDroite; myTween2.kill(); }; } public function createSplash(_arg1:String):void{ var _local2:Splash1; var _local3:TiSplash1; if (_arg1 == "grosSplash"){ _local2 = new Splash1(); addChild(_local2); splash.push(_local2); _local2.x = (this.dauphin.x + 30); _local2.y = 222; if (((!((MovieClip(root).frameName == null))) && (!((MovieClip(parent).Menu_c == null))))){ MovieClip(root).sonsF("splash", true); }; } else { if (_arg1 == "tiSplash"){ _local3 = new TiSplash1(); addChild(_local3); tiSplash.push(_local3); _local3.x = this.dauphin.x; _local3.y = 222; if (((!((MovieClip(root).frameName == null))) && (!((MovieClip(parent).Menu_c == null))))){ MovieClip(root).sonsF("splashOut", false); }; }; }; } public function Splash():void{ var _local1:*; var _local2:uint; if (plongeFini == true){ _local2 = 5; _local1 = "25"; this.dauphin.y = eau; } else { _local2 = 10; _local1 = 390; }; createSplash("grosSplash"); fini = true; nombreSauts = 0; if (plongeFini == false){ this.dauphin.saute.gotoAndPlay("splash2"); } else { if (this.dauphin.saute.frBoost < 4){ this.dauphin.saute.gotoAndPlay((this.dauphin.saute.frBoost + "b")); } else { if (plongeFini == true){ this.dauphin.saute.gotoAndPlay("splash"); }; }; }; myTween4 = new TweenLite(this.dauphin, _local2, {y:_local1, ease:Quad.easeOut, useFrames:true, onComplete:Bloop}); splashFini = false; plongeFini = true; peutPlonger = true; dauphinTombe = false; } public function deleteSpawn(_arg1:String, _arg2:uint):void{ var _local3:*; var _local4:Number; var _local5:String; var _local6:uint; var _local7:String; itemsCollect = (itemsCollect + _arg2); itemsCollectAll = (itemsCollectAll + _arg2); if (_arg2 != 0){ _local4 = ((itemsCollectAll / totalItemsAll) * 100); MyGlobal.score = rndHundredth(_local4); _local5 = String(MyGlobal.score); _local6 = _local5.indexOf("."); _local7 = _local5.substring((_local6 + 1), _local5.length); if (_local7.length == 0){ _local5 = (_local5 + ".00"); } else { if (_local7.length == 1){ _local5 = (_local5 + "0"); }; }; }; _local3 = this.getChildByName(_arg1); _local3.removeEventListener(Event.ENTER_FRAME, _local3.entFrame); this.removeChild(_local3); _local3 = null; } public function checkKeysUp(_arg1:uint):void{ keyArray[_arg1][1] = false; } public function reverseFunction():void{ this.dauphin.saute.noEntFrame = false; this.dauphin.saute.addEventListener(Event.ENTER_FRAME, this.dauphin.saute.entFrame); } public function mouvementSaut():void{ nombreSauts = (nombreSauts + 1); fini = false; dauphinTombe = false; dauphinBoost = false; plongeFini = true; myTween = new TweenLite(this.dauphin, 10, {y:"-160", useFrames:true, onComplete:completeFunction, onReverseComplete:reverseFunction}); } public function initVit():void{ myTween2b.kill(); this.itemSpd = this.initItemSpd; } public function Tombe(_arg1:Boolean):void{ var _local2:uint; if (_arg1 == false){ _local2 = 10; } else { if (_arg1 == true){ _local2 = 5; }; }; myTween3 = new TweenLite(this.dauphin, _local2, {y:"160", ease:Quad.easeIn, useFrames:true, onUpdate:updateTombe, onComplete:reverseFunction}); if (this.dauphin.y < 0){ dauphinTombe = true; }; dauphinBoost = false; posY = 0; } public function splashComplete():void{ splashFini = true; } public function isKeyDown(_arg1){ return (keyArray[_arg1][1]); } public function entFrame(_arg1:Event):void{ if (MovieClip(root).frameName != "menu"){ if (this.dauphin.saute != null){ this.dauphin.saute.addEventListener(Event.ENTER_FRAME, this.dauphin.saute.entFrame); }; this.removeEventListener(Event.ENTER_FRAME, entFrame); }; hit = this.dauphin[this.dauphin.etat].hit; if (isKeyDown(39) == true){ if ((this.dauphin.x + SPD) < limDroite){ this.dauphin.x = (this.dauphin.x + SPD); } else { this.dauphin.x = limDroite; }; } else { if (isKeyDown(37) == true){ if ((this.dauphin.x - SPD) > 20){ this.dauphin.x = (this.dauphin.x - SPD); } else { this.dauphin.x = 20; }; }; }; if (this.dauphin.etat == "nage"){ up = true; if (isKeyDown(40) == true){ if (splashFini == false){ myTween5.kill(); splashFini = true; }; if ((this.dauphin.y + SPD) < 385){ this.dauphin.y = (this.dauphin.y + SPD); this.dauphin.nage.rotation = 10; } else { this.dauphin.y = 385; }; } else { if (isKeyDown(38) == true){ if (splashFini == false){ myTween5.kill(); splashFini = true; }; if ((this.dauphin.y - SPD) > eau){ this.dauphin.y = (this.dauphin.y - SPD); this.dauphin.nage.rotation = -10; } else { this.dauphin.y = eau; jump = true; }; } else { if (this.dauphin.nage.rotation > 0){ this.dauphin.nage.rotation = (this.dauphin.nage.rotation - 2); } else { if (this.dauphin.nage.rotation < 0){ this.dauphin.nage.rotation = (this.dauphin.nage.rotation + 2); } else { this.dauphin.nage.rotation = 0; }; }; }; }; if ((((jump == true)) && ((isKeyDown(38) == true)))){ this.dauphin.gotoAndStop("saute"); jump = false; boost = true; }; if ((((isKeyDown(39) == false)) && (((this.dauphin.x - 2) > 20)))){ this.dauphin.x = (this.dauphin.x - 2); }; }; if (isKeyDown(38) == false){ up = false; }; if (isKeyDown(39) == false){ right = false; }; if (isKeyDown(40) == false){ down = false; }; if (plongeFini == false){ if ((this.dauphin.x - (itemSpd * (1 / 3))) > 20){ this.dauphin.x = (this.dauphin.x - (itemSpd * (1 / 3))); } else { this.dauphin.x = 20; }; }; } public function preMeduseSaut():void{ dauphinTombe = false; dauphinBoost = false; if (plongeFini == false){ plongeFini = true; }; myTween8 = new TweenLite(this.dauphin, 10, {y:240, useFrames:true, onComplete:meduseSaut, overwrite:true, ease:Quad.easeOut, onUpdate:updateMed}); this.dauphin.saute.gotoAndPlay("meduseSaut"); } public function spawnForme(_arg1:String, _arg2:int, _arg3:int):void{ if (_arg1 == "saut"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 160), _arg3); newHx = (_arg2 + 160); newHy = _arg3; } else { if (_arg1 == "sautM1"){ spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 160), _arg3); newHx = (_arg2 + 160); newHy = _arg3; } else { if (_arg1 == "sautM5"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); newHx = (_arg2 + 135); newHy = (_arg3 - 65); } else { if (_arg1 == "saut3"){ spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); newHx = (_arg2 + 135); newHy = (_arg3 - 65); } else { if (_arg1 == "diM3"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 30), (_arg3 - 50)); spawnage("etoileB", (_arg2 + 60), (_arg3 - 100)); spawnage("etoileB", (_arg2 + 90), (_arg3 - 150)); spawnage("etoileB", (_arg2 + 120), (_arg3 - 200)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 250)); spawnage("etoileB", (_arg2 + 180), (_arg3 - 300)); spawnage("etoileB", (_arg2 + 210), (_arg3 - 350)); spawnage("etoileB", (_arg2 + 240), (_arg3 - 400)); spawnage("etoileB", (_arg2 + 270), (_arg3 - 450)); newHx = (_arg2 + 270); newHy = (_arg3 - 450); } else { if (_arg1 == "diM2"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 30), (_arg3 - 50)); spawnage("etoileB", (_arg2 + 60), (_arg3 - 100)); spawnage("etoileB", (_arg2 + 90), (_arg3 - 150)); spawnage("etoileB", (_arg2 + 120), (_arg3 - 200)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 250)); newHx = (_arg2 + 150); newHy = (_arg3 - 250); } else { if (_arg1 == "medM"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 5), (_arg3 - 90)); spawnage("etoileB", (_arg2 + 15), (_arg3 - 170)); spawnage("etoileB", (_arg2 + 30), (_arg3 - 240)); spawnage("etoileB", (_arg2 + 50), (_arg3 - 300)); spawnage("etoileB", (_arg2 + 75), (_arg3 - 350)); spawnage("etoileB", (_arg2 + 110), (_arg3 - 390)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 420)); spawnage("etoileB", (_arg2 + 200), (_arg3 - 440)); spawnage("etoileB", (_arg2 + 270), (_arg3 - 450)); newHx = (_arg2 + 270); newHy = (_arg3 - 450); } else { if (_arg1 == "ligneX"){ spawnage("etoileB", (_arg2 + 0), _arg3); spawnage("etoileB", (_arg2 + 50), _arg3); spawnage("etoileB", (_arg2 + 100), _arg3); spawnage("etoileB", (_arg2 + 150), _arg3); spawnage("etoileB", (_arg2 + 200), _arg3); spawnage("etoileB", (_arg2 + 250), _arg3); newHx = (_arg2 + 250); newHy = _arg3; } else { if (_arg1 == "ligneY"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", _arg2, (_arg3 - 50)); spawnage("etoileB", _arg2, (_arg3 - 100)); spawnage("etoileB", _arg2, (_arg3 - 150)); spawnage("etoileB", _arg2, (_arg3 - 200)); newHx = _arg2; newHy = (_arg3 - 200); } else { if (_arg1 == "zigzag1"){ spawnage("etoileB", _arg2, 280); spawnage("etoileB", (_arg2 + 100), 380); spawnage("etoileB", (_arg2 + 200), 280); newHx = (_arg2 + 200); newHy = 280; if (_arg3 >= 4){ spawnage("etoileB", (_arg2 + 300), 380); newHx = (_arg2 + 300); newHy = 380; }; if (_arg3 >= 5){ spawnage("etoileB", (_arg2 + 400), 280); newHx = (_arg2 + 400); newHy = 280; }; if (_arg3 >= 6){ spawnage("etoileB", (_arg2 + 500), 380); newHx = (_arg2 + 500); newHy = 380; }; } else { if (_arg1 == "zigzag2"){ spawnage("etoileB", _arg2, 380); spawnage("etoileB", (_arg2 + 100), 280); spawnage("etoileB", (_arg2 + 200), 380); newHx = (_arg2 + 200); newHy = 380; if (_arg3 >= 4){ spawnage("etoileB", (_arg2 + 300), 280); newHx = (_arg2 + 300); newHy = 280; }; if (_arg3 >= 5){ spawnage("etoileB", (_arg2 + 400), 380); newHx = (_arg2 + 400); newHy = 380; }; if (_arg3 >= 6){ spawnage("etoileB", (_arg2 + 500), 280); newHx = (_arg2 + 500); newHy = 280; }; } else { if (_arg1 == "espace"){ spawnage("espace", (newHx + _arg2), 230); }; }; }; }; }; }; }; }; }; }; }; }; } public function Boost():void{ this.dauphin.saute.noEntFrame = true; dauphinTombe = false; if (this.dauphin.y < 0){ dauphinBoost = true; }; plongeFini = true; myTween2 = new TweenLite(this.dauphin, 12, {x:"225", ease:Cubic.easeOut, useFrames:true, onUpdate:updateBoost, overwrite:true}); } public function meduseSautComplete():void{ Tombe(false); } public function spawnage(_arg1:String, _arg2:int, _arg3:int):void{ var _local4:*; if (_arg1 == "etoileB"){ cntIt = (cntIt + 1); _local4 = new EtoileJaune(); _local4.name = ("et_" + cntIt); } else { if (_arg1 == "espace"){ cntIt = (cntIt + 1); _local4 = new Espace(); _local4.name = ("esp_" + cntIt); } else { if (_arg1 == "meduse"){ cntIt = (cntIt + 1); _local4 = new Meduse(); _local4.name = ("med_" + cntIt); } else { if (_arg1 == "sonar"){ _local4 = new Sonar(); _local4.name = "sonar1"; } else { if (_arg1 == "bouée"){ _local4 = new Bouée(); _local4.name = "bouée1"; newHx = 700; newHy = 230; }; }; }; }; }; _local4.x = _arg2; _local4.y = _arg3; addChildAt(_local4, this.getChildIndex(dauphin)); } public function updateTombe():void{ if (plongeFini == true){ if (!((!((this.dauphin.y == eau))) && (((this.dauphin.y + 20) < eau)))){ Splash(); myTween3.kill(); }; }; } public function checkKeysDown(_arg1:uint):void{ keyArray[_arg1][1] = true; if (isKeyDown(38)){ if ((((((((this.dauphin.etat == "saute")) && ((fini == false)))) && ((up == false)))) && ((nombreSauts < maxSauts)))){ this.dauphin.saute.gotoAndPlay("saute2"); up = true; MovieClip(root).sonsF("triple", false); }; }; if (isKeyDown(39)){ if ((((((((((this.dauphin.etat == "saute")) && ((fini == false)))) && ((right == false)))) && ((boost == true)))) && (((this.dauphin.y + 30) < eau)))){ this.dauphin.saute.gotoAndPlay("boost"); boost = false; MovieClip(root).sonsF("boost", false); }; right = true; }; if (isKeyDown(40)){ if ((((((((((this.dauphin.etat == "saute")) && ((fini == false)))) && ((down == false)))) && ((peutPlonger == true)))) && (((this.dauphin.y + 40) < eau)))){ this.dauphin.saute.gotoAndPlay("plonge"); peutPlonger = false; plongeFini = false; MovieClip(root).sonsF("boost", false); }; down = true; }; if (isKeyDown(32)){ if (peutSonar == true){ spawnage("sonar", (this.dauphin.x + 50), this.dauphin.y); peutSonar = false; MovieClip(root).sonsF("sonar", false); }; }; } public function Bloop():void{ myTween5 = new TweenLite(this.dauphin, 5, {y:"-20", ease:Quad.easeOut, useFrames:true, onComplete:splashComplete}); this.dauphin.gotoAndStop("nage"); } } }//package StarSplash_OML_fla
Section 222
//menu_scene_dauphin_fin_88 (StarSplash_OML_fla.menu_scene_dauphin_fin_88) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import com.greensock.*; import flash.utils.*; import com.greensock.easing.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_scene_dauphin_fin_88 extends MovieClip { public var passeItems1:uint; public var dauphinBoost:Boolean; public var passeItems3:uint; public var limDroite:uint; public var passeItems2:uint; public var itemsCollectAll:uint; public var right:Boolean; public var myTween:TweenLite; public var scrollFini:Boolean; public var jump:Boolean; public var plongeFini:Boolean; public var nombreSauts:uint; public var longTableau:uint; public var splash:Array; public var i:Number; public var initItemSpd:Number; public var peutSonar; public var cntIt:uint; public var pourcent:uint; public var posY:Number; public var up:Boolean; public var peutPlonger:Boolean; public var down:Boolean; public var dauphin:MovieClip; public var splashFini:Boolean; public var newHx:int; public var newHy:int; public var myTween2b:TweenLite; public var eau_bg:MovieClip; public var limVerticale:uint; public var totalItems:uint; public var chiffreStart:int; public var totalItemsAll:uint; public var keyArray:Array; public var tiSplash:Array; public var dauphinPos:Point; public var dauphinTombe:Boolean; public var masque2:MovieClip; public var eau:uint; public var itemsCollect:uint; public var SPD:uint; public var congrats:MovieClip; public var chiffre:String; public var hit; public var maxSauts:uint; public var boost:Boolean; public var itemSpd:Number; public var passeItems:uint; public var fini:Boolean; public var ligne_eau:MovieClip; public var myTween2:TweenLite; public var myTween3:TweenLite; public var myTween4:TweenLite; public var myTween6:TweenLite; public var myTween7:TweenLite; public var myTween8:TweenLite; public var myTween5:TweenLite; public function menu_scene_dauphin_fin_88(){ addFrameScript(0, frame1); } public function deleteSplash(_arg1:String):void{ if (_arg1 == "grosSplash"){ this.splash[0].removeEventListener(Event.ENTER_FRAME, this.splash[0].entFrame); this.removeChild(this.splash[0]); this.splash[0] = null; splash.splice(0, 1); } else { if (_arg1 == "tiSplash"){ this.tiSplash[0].removeEventListener(Event.ENTER_FRAME, this.tiSplash[0].entFrame); this.removeChild(this.tiSplash[0]); this.tiSplash[0] = null; tiSplash.splice(0, 1); }; }; } public function scrolling(){ if (dauphinBoost == false){ if (dauphinTombe == false){ posY = (limVerticale - this.dauphinPos.y); Math.floor((posY = (posY / 7.5))); } else { if (dauphinTombe == true){ if (this.dauphinPos.y < 40){ posY = (posY + 2); } else { if (this.dauphinPos.y > 280){ posY = (posY - 8); } else { posY = (posY - 3); if (posY < -30){ posY = -30; }; }; }; }; }; this.y = (this.y + posY); }; if (this.y > 800){ this.y = 800; } else { if (this.y < 80){ this.y = 80; }; }; } public function completeFunction():void{ myTween.reverse(); if (this.dauphin.y < 0){ dauphinTombe = true; }; } public function updateMed():void{ if ((this.dauphin.x - (SPD + 2)) > 20){ this.dauphin.x = (this.dauphin.x - (SPD + 2)); } else { this.dauphin.x = 20; }; } public function meduseSaut():void{ dauphinTombe = false; dauphinBoost = false; if (plongeFini == false){ plongeFini = true; }; myTween7 = new TweenLite(this.dauphin, 30, {y:-260, useFrames:true, onComplete:meduseSautComplete, overwrite:true}); } public function rndHundredth(_arg1){ var _local2:Number; _local2 = _arg1; _local2 = (_local2 * 100); _local2 = Math.round(_local2); _local2 = (_local2 / 100); return (_local2); } function frame1(){ stop(); eau_bg.gotoAndStop("nuit"); ligne_eau.c1.gotoAndStop("nuit"); dauphin.transform.colorTransform = new ColorTransform(0.7, 0.55, 0.7, 1, 0, 0, 0, 0); OverwriteManager.init(2); SPD = 6; jump = false; keyArray = new Array(); eau = 267; limDroite = 600; fini = true; up = false; right = false; down = false; boost = true; peutSonar = true; peutPlonger = true; plongeFini = true; nombreSauts = 0; maxSauts = 3; splashFini = true; splash = new Array(); tiSplash = new Array(); cntIt = 0; initItemSpd = 8; itemSpd = initItemSpd; limVerticale = 280; dauphinPos = new Point(this.dauphin.x, this.dauphin.y); dauphinTombe = false; dauphinBoost = false; newHx = 0; newHy = 0; totalItemsAll = 400; itemsCollectAll = 0; totalItems = 0; itemsCollect = 0; passeItems = 0; passeItems1 = 20; passeItems2 = 30; passeItems3 = 35; pourcent = 0; chiffreStart = 0; chiffre = null; longTableau = 0; i = 0; while (i < 222) { keyArray.push([i, false]); i++; }; this.addEventListener(Event.ENTER_FRAME, entFrame); } public function updateBoost():void{ if (this.dauphin.x >= limDroite){ this.dauphin.x = limDroite; myTween2.kill(); }; } public function createSplash(_arg1:String):void{ var _local2:Splash1; var _local3:TiSplash1; if (_arg1 == "grosSplash"){ _local2 = new Splash1(); addChild(_local2); splash.push(_local2); _local2.x = (this.dauphin.x + 30); _local2.y = 222; if (MovieClip(root).frameName != null){ MovieClip(root).sonsF("splash", true); }; } else { if (_arg1 == "tiSplash"){ _local3 = new TiSplash1(); addChild(_local3); tiSplash.push(_local3); _local3.x = this.dauphin.x; _local3.y = 222; MovieClip(root).sonsF("splashOut", false); }; }; } public function Splash():void{ var _local1:*; var _local2:uint; if (plongeFini == true){ _local2 = 5; _local1 = "25"; this.dauphin.y = eau; } else { _local2 = 10; _local1 = 390; }; createSplash("grosSplash"); fini = true; nombreSauts = 0; if (plongeFini == false){ this.dauphin.saute.gotoAndPlay("splash2"); } else { if (this.dauphin.saute.frBoost < 4){ this.dauphin.saute.gotoAndPlay((this.dauphin.saute.frBoost + "b")); } else { if (plongeFini == true){ this.dauphin.saute.gotoAndPlay("splash"); }; }; }; myTween4 = new TweenLite(this.dauphin, _local2, {y:_local1, ease:Quad.easeOut, useFrames:true, onComplete:Bloop}); splashFini = false; plongeFini = true; peutPlonger = true; dauphinTombe = false; } public function deleteSpawn(_arg1:String, _arg2:uint):void{ var _local3:*; var _local4:Number; var _local5:String; var _local6:uint; var _local7:String; itemsCollect = (itemsCollect + _arg2); itemsCollectAll = (itemsCollectAll + _arg2); if (_arg2 != 0){ _local4 = ((itemsCollectAll / totalItemsAll) * 100); MyGlobal.score = rndHundredth(_local4); _local5 = String(MyGlobal.score); _local6 = _local5.indexOf("."); _local7 = _local5.substring((_local6 + 1), _local5.length); if (_local7.length == 0){ _local5 = (_local5 + ".00"); } else { if (_local7.length == 1){ _local5 = (_local5 + "0"); }; }; }; _local3 = this.getChildByName(_arg1); _local3.removeEventListener(Event.ENTER_FRAME, _local3.entFrame); this.removeChild(_local3); _local3 = null; } public function checkKeysUp(_arg1:uint):void{ keyArray[_arg1][1] = false; } public function reverseFunction():void{ this.dauphin.saute.noEntFrame = false; this.dauphin.saute.addEventListener(Event.ENTER_FRAME, this.dauphin.saute.entFrame); } public function mouvementSaut():void{ nombreSauts = (nombreSauts + 1); fini = false; dauphinTombe = false; dauphinBoost = false; plongeFini = true; myTween = new TweenLite(this.dauphin, 10, {y:"-160", useFrames:true, onComplete:completeFunction, onReverseComplete:reverseFunction}); } public function initVit():void{ myTween2b.kill(); this.itemSpd = this.initItemSpd; } public function Tombe(_arg1:Boolean):void{ var _local2:uint; if (_arg1 == false){ _local2 = 10; } else { if (_arg1 == true){ _local2 = 5; }; }; myTween3 = new TweenLite(this.dauphin, _local2, {y:"160", ease:Quad.easeIn, useFrames:true, onUpdate:updateTombe, onComplete:reverseFunction}); if (this.dauphin.y < 0){ dauphinTombe = true; }; dauphinBoost = false; posY = 0; } public function splashComplete():void{ splashFini = true; } public function isKeyDown(_arg1){ return (keyArray[_arg1][1]); } public function entFrame(_arg1:Event):void{ if (MovieClip(root).frameName != "menu"){ if (this.dauphin.saute != null){ this.dauphin.saute.addEventListener(Event.ENTER_FRAME, this.dauphin.saute.entFrame); }; this.removeEventListener(Event.ENTER_FRAME, entFrame); }; hit = this.dauphin[this.dauphin.etat].hit; if (scrollFini == false){ dauphinPos = new Point(this.dauphin.x, this.dauphin.y); dauphinPos = localToGlobal(dauphinPos); if (this.dauphinPos.y < limVerticale){ scrolling(); } else { if ((((this.dauphinPos.y > limVerticale)) && (!((this.y == 0))))){ scrolling(); }; }; }; if (isKeyDown(39) == true){ if ((this.dauphin.x + SPD) < limDroite){ this.dauphin.x = (this.dauphin.x + SPD); } else { this.dauphin.x = limDroite; }; } else { if (isKeyDown(37) == true){ if ((this.dauphin.x - SPD) > 20){ this.dauphin.x = (this.dauphin.x - SPD); } else { this.dauphin.x = 20; }; }; }; if (this.dauphin.etat == "nage"){ up = true; if (isKeyDown(40) == true){ if (splashFini == false){ myTween5.kill(); splashFini = true; }; if ((this.dauphin.y + SPD) < 385){ this.dauphin.y = (this.dauphin.y + SPD); this.dauphin.nage.rotation = 10; } else { this.dauphin.y = 385; }; } else { if (isKeyDown(38) == true){ if (splashFini == false){ myTween5.kill(); splashFini = true; }; if ((this.dauphin.y - SPD) > eau){ this.dauphin.y = (this.dauphin.y - SPD); this.dauphin.nage.rotation = -10; } else { this.dauphin.y = eau; jump = true; }; } else { if (this.dauphin.nage.rotation > 0){ this.dauphin.nage.rotation = (this.dauphin.nage.rotation - 2); } else { if (this.dauphin.nage.rotation < 0){ this.dauphin.nage.rotation = (this.dauphin.nage.rotation + 2); } else { this.dauphin.nage.rotation = 0; }; }; }; }; if ((((jump == true)) && ((isKeyDown(38) == true)))){ this.dauphin.gotoAndStop("saute"); jump = false; boost = true; }; if ((((isKeyDown(39) == false)) && (((this.dauphin.x - 2) > 20)))){ this.dauphin.x = (this.dauphin.x - 2); }; }; if (isKeyDown(38) == false){ up = false; }; if (isKeyDown(39) == false){ right = false; }; if (isKeyDown(40) == false){ down = false; }; if (plongeFini == false){ if ((this.dauphin.x - (itemSpd * (1 / 3))) > 20){ this.dauphin.x = (this.dauphin.x - (itemSpd * (1 / 3))); } else { this.dauphin.x = 20; }; }; } public function preMeduseSaut():void{ dauphinTombe = false; dauphinBoost = false; if (plongeFini == false){ plongeFini = true; }; myTween8 = new TweenLite(this.dauphin, 10, {y:240, useFrames:true, onComplete:meduseSaut, overwrite:true, ease:Quad.easeOut, onUpdate:updateMed}); this.dauphin.saute.gotoAndPlay("meduseSaut"); } public function spawnForme(_arg1:String, _arg2:int, _arg3:int):void{ if (_arg1 == "saut"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 160), _arg3); newHx = (_arg2 + 160); newHy = _arg3; } else { if (_arg1 == "sautM1"){ spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 160), _arg3); newHx = (_arg2 + 160); newHy = _arg3; } else { if (_arg1 == "sautM5"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); newHx = (_arg2 + 135); newHy = (_arg3 - 65); } else { if (_arg1 == "saut3"){ spawnage("etoileB", (_arg2 + 25), (_arg3 - 65)); spawnage("etoileB", (_arg2 + 80), (_arg3 - 110)); spawnage("etoileB", (_arg2 + 135), (_arg3 - 65)); newHx = (_arg2 + 135); newHy = (_arg3 - 65); } else { if (_arg1 == "diM3"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 30), (_arg3 - 50)); spawnage("etoileB", (_arg2 + 60), (_arg3 - 100)); spawnage("etoileB", (_arg2 + 90), (_arg3 - 150)); spawnage("etoileB", (_arg2 + 120), (_arg3 - 200)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 250)); spawnage("etoileB", (_arg2 + 180), (_arg3 - 300)); spawnage("etoileB", (_arg2 + 210), (_arg3 - 350)); spawnage("etoileB", (_arg2 + 240), (_arg3 - 400)); spawnage("etoileB", (_arg2 + 270), (_arg3 - 450)); newHx = (_arg2 + 270); newHy = (_arg3 - 450); } else { if (_arg1 == "diM2"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 30), (_arg3 - 50)); spawnage("etoileB", (_arg2 + 60), (_arg3 - 100)); spawnage("etoileB", (_arg2 + 90), (_arg3 - 150)); spawnage("etoileB", (_arg2 + 120), (_arg3 - 200)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 250)); newHx = (_arg2 + 150); newHy = (_arg3 - 250); } else { if (_arg1 == "medM"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", (_arg2 + 5), (_arg3 - 90)); spawnage("etoileB", (_arg2 + 15), (_arg3 - 170)); spawnage("etoileB", (_arg2 + 30), (_arg3 - 240)); spawnage("etoileB", (_arg2 + 50), (_arg3 - 300)); spawnage("etoileB", (_arg2 + 75), (_arg3 - 350)); spawnage("etoileB", (_arg2 + 110), (_arg3 - 390)); spawnage("etoileB", (_arg2 + 150), (_arg3 - 420)); spawnage("etoileB", (_arg2 + 200), (_arg3 - 440)); spawnage("etoileB", (_arg2 + 270), (_arg3 - 450)); newHx = (_arg2 + 270); newHy = (_arg3 - 450); } else { if (_arg1 == "ligneX"){ spawnage("etoileB", (_arg2 + 0), _arg3); spawnage("etoileB", (_arg2 + 50), _arg3); spawnage("etoileB", (_arg2 + 100), _arg3); spawnage("etoileB", (_arg2 + 150), _arg3); spawnage("etoileB", (_arg2 + 200), _arg3); spawnage("etoileB", (_arg2 + 250), _arg3); newHx = (_arg2 + 250); newHy = _arg3; } else { if (_arg1 == "ligneY"){ spawnage("etoileB", _arg2, _arg3); spawnage("etoileB", _arg2, (_arg3 - 50)); spawnage("etoileB", _arg2, (_arg3 - 100)); spawnage("etoileB", _arg2, (_arg3 - 150)); spawnage("etoileB", _arg2, (_arg3 - 200)); newHx = _arg2; newHy = (_arg3 - 200); } else { if (_arg1 == "zigzag1"){ spawnage("etoileB", _arg2, 280); spawnage("etoileB", (_arg2 + 100), 380); spawnage("etoileB", (_arg2 + 200), 280); newHx = (_arg2 + 200); newHy = 280; if (_arg3 >= 4){ spawnage("etoileB", (_arg2 + 300), 380); newHx = (_arg2 + 300); newHy = 380; }; if (_arg3 >= 5){ spawnage("etoileB", (_arg2 + 400), 280); newHx = (_arg2 + 400); newHy = 280; }; if (_arg3 >= 6){ spawnage("etoileB", (_arg2 + 500), 380); newHx = (_arg2 + 500); newHy = 380; }; } else { if (_arg1 == "zigzag2"){ spawnage("etoileB", _arg2, 380); spawnage("etoileB", (_arg2 + 100), 280); spawnage("etoileB", (_arg2 + 200), 380); newHx = (_arg2 + 200); newHy = 380; if (_arg3 >= 4){ spawnage("etoileB", (_arg2 + 300), 280); newHx = (_arg2 + 300); newHy = 280; }; if (_arg3 >= 5){ spawnage("etoileB", (_arg2 + 400), 380); newHx = (_arg2 + 400); newHy = 380; }; if (_arg3 >= 6){ spawnage("etoileB", (_arg2 + 500), 280); newHx = (_arg2 + 500); newHy = 280; }; } else { if (_arg1 == "espace"){ spawnage("espace", (newHx + _arg2), 230); }; }; }; }; }; }; }; }; }; }; }; }; } public function Boost():void{ this.dauphin.saute.noEntFrame = true; dauphinTombe = false; if (this.dauphin.y < 0){ dauphinBoost = true; }; plongeFini = true; myTween2 = new TweenLite(this.dauphin, 12, {x:"225", ease:Cubic.easeOut, useFrames:true, onUpdate:updateBoost, overwrite:true}); } public function meduseSautComplete():void{ Tombe(false); } public function spawnage(_arg1:String, _arg2:int, _arg3:int):void{ var _local4:*; if (_arg1 == "etoileB"){ cntIt = (cntIt + 1); _local4 = new EtoileJaune(); _local4.name = ("et_" + cntIt); } else { if (_arg1 == "espace"){ cntIt = (cntIt + 1); _local4 = new Espace(); _local4.name = ("esp_" + cntIt); } else { if (_arg1 == "meduse"){ cntIt = (cntIt + 1); _local4 = new Meduse(); _local4.name = ("med_" + cntIt); } else { if (_arg1 == "sonar"){ _local4 = new Sonar(); _local4.name = "sonar1"; } else { if (_arg1 == "bouée"){ _local4 = new Bouée(); _local4.name = "bouée1"; newHx = 700; newHy = 230; }; }; }; }; }; _local4.x = _arg2; _local4.y = _arg3; addChildAt(_local4, this.getChildIndex(dauphin)); } public function updateTombe():void{ if (plongeFini == true){ if (!((!((this.dauphin.y == eau))) && (((this.dauphin.y + 20) < eau)))){ Splash(); myTween3.kill(); }; }; } public function checkKeysDown(_arg1:uint):void{ keyArray[_arg1][1] = true; if (isKeyDown(38)){ if ((((((((this.dauphin.etat == "saute")) && ((fini == false)))) && ((up == false)))) && ((nombreSauts < maxSauts)))){ this.dauphin.saute.gotoAndPlay("saute2"); up = true; MovieClip(root).sonsF("triple", false); }; }; if (isKeyDown(39)){ if ((((((((((this.dauphin.etat == "saute")) && ((fini == false)))) && ((right == false)))) && ((boost == true)))) && (((this.dauphin.y + 30) < eau)))){ this.dauphin.saute.gotoAndPlay("boost"); boost = false; MovieClip(root).sonsF("boost", false); }; right = true; }; if (isKeyDown(40)){ if ((((((((((this.dauphin.etat == "saute")) && ((fini == false)))) && ((down == false)))) && ((peutPlonger == true)))) && (((this.dauphin.y + 40) < eau)))){ this.dauphin.saute.gotoAndPlay("plonge"); peutPlonger = false; plongeFini = false; MovieClip(root).sonsF("boost", false); }; down = true; }; if (isKeyDown(32)){ if (peutSonar == true){ spawnage("sonar", (this.dauphin.x + 50), this.dauphin.y); peutSonar = false; MovieClip(root).sonsF("sonar", false); }; }; } public function Bloop():void{ myTween5 = new TweenLite(this.dauphin, 5, {y:"-20", ease:Quad.easeOut, useFrames:true, onComplete:splashComplete}); this.dauphin.gotoAndStop("nage"); } } }//package StarSplash_OML_fla
Section 223
//menu_scene_dauphin_moves_42 (StarSplash_OML_fla.menu_scene_dauphin_moves_42) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_scene_dauphin_moves_42 extends MovieClip { public function menu_scene_dauphin_moves_42(){ addFrameScript(19, frame20, 39, frame40, 93, frame94, 113, frame114, 163, frame164, 173, frame174, 178, frame179, 188, frame189, 213, frame214, 215, frame216, 243, frame244, 290, frame291, 300, frame301, 383, frame384, 403, frame404); } function frame164(){ MovieClip(parent).checkKeysUp(39); MovieClip(parent).checkKeysDown(38); } function frame291(){ MovieClip(parent).checkKeysDown(38); } function frame94(){ MovieClip(parent).checkKeysUp(38); } function frame174(){ MovieClip(parent).checkKeysUp(38); } function frame214(){ } function frame20(){ MovieClip(parent).checkKeysUp(40); MovieClip(parent).dauphin.x = 150; MovieClip(parent).dauphin.y = 385; } function frame216(){ } function frame179(){ MovieClip(parent).checkKeysDown(38); } function frame114(){ MovieClip(parent).checkKeysDown(39); } function frame40(){ MovieClip(parent).checkKeysDown(38); } function frame244(){ MovieClip(parent).spawnage("meduse", 750, 220); } function frame189(){ MovieClip(parent).checkKeysUp(38); } function frame404(){ MovieClip(parent).checkKeysUp(40); } function frame384(){ MovieClip(parent).checkKeysDown(40); } function frame301(){ MovieClip(parent).checkKeysUp(38); } } }//package StarSplash_OML_fla
Section 224
//menu_scene_dauphin_moves_FIN_96 (StarSplash_OML_fla.menu_scene_dauphin_moves_FIN_96) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menu_scene_dauphin_moves_FIN_96 extends MovieClip { public function menu_scene_dauphin_moves_FIN_96(){ addFrameScript(19, frame20, 39, frame40, 88, frame89, 93, frame94, 159, frame160, 169, frame170, 174, frame175, 184, frame185, 189, frame190, 199, frame200, 204, frame205, 207, frame208, 224, frame225, 244, frame245); } function frame160(){ MovieClip(parent).checkKeysDown(38); } function frame200(){ MovieClip(parent).congrats.play(); MovieClip(parent).checkKeysUp(38); } function frame208(){ } function frame89(){ MovieClip(parent).checkKeysUp(39); } function frame205(){ MovieClip(parent).scrollFini = true; MovieClip(parent).checkKeysDown(39); } function frame170(){ MovieClip(parent).checkKeysUp(38); } function frame94(){ MovieClip(parent).checkKeysUp(38); } function frame20(){ MovieClip(parent).checkKeysDown(39); } function frame185(){ MovieClip(parent).checkKeysUp(38); } function frame225(){ MovieClip(parent).checkKeysUp(39); } function frame175(){ MovieClip(parent).checkKeysDown(38); } function frame190(){ MovieClip(parent).checkKeysDown(38); } function frame245(){ stop(); } function frame40(){ MovieClip(parent).checkKeysDown(38); } } }//package StarSplash_OML_fla
Section 225
//menuJeu_162 (StarSplash_OML_fla.menuJeu_162) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class menuJeu_162 extends MovieClip { public var presTableau:MovieClip; public var btnMoreGames:SimpleButton; public var itemsC:TextField; public var score:TextField; public var noir:MovieClip; public var progression:MovieClip; public var m_son:MovieClip; public var m_mus:MovieClip; public function menuJeu_162(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.noir.mouseChildren = false; this.noir.mouseEnabled = false; this.btnMoreGames.addEventListener(MouseEvent.CLICK, clickMoreGames); this.btnMoreGames.mouseEnabled = false; } public function clickMoreGames(_arg1:Event=null):void{ MovieClip(parent).handle_btnMoreGames("InGameLogo"); } } }//package StarSplash_OML_fla
Section 226
//menuJeu_scoreText_163 (StarSplash_OML_fla.menuJeu_scoreText_163) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menuJeu_scoreText_163 extends MovieClip { public var __id12_:LocalizedTextField; public function menuJeu_scoreText_163(){ __setProp___id12__menuJeu_scoreText_Layer1_1(); } function __setProp___id12__menuJeu_scoreText_Layer1_1(){ try { __id12_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id12_.text = "{Score}"; __id12_.textColor = 13351252; __id12_.textSize = 19; __id12_.bold = false; __id12_.disableWordwrap = false; __id12_.embedFonts = true; __id12_.font = "Porky's"; __id12_.hAlign = "center"; __id12_.multiline = false; __id12_.vAlign = "middle"; __id12_.antiAliasType = "advanced"; __id12_.glowBlur = 3; __id12_.glowColor = 0; __id12_.useGlowFilter = false; __id12_.glowQuality = 1; __id12_.glowStrength = 5; __id12_.gridFitType = "pixel"; __id12_.italic = false; __id12_.selectable = false; __id12_.underline = false; try { __id12_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 227
//menuJeu_starsText_164 (StarSplash_OML_fla.menuJeu_starsText_164) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class menuJeu_starsText_164 extends MovieClip { public var __id13_:LocalizedTextField; public function menuJeu_starsText_164(){ __setProp___id13__menuJeu_starsText_Layer1_1(); } function __setProp___id13__menuJeu_starsText_Layer1_1(){ try { __id13_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id13_.text = "{Stars}"; __id13_.textColor = 13351252; __id13_.textSize = 15; __id13_.bold = false; __id13_.disableWordwrap = false; __id13_.embedFonts = true; __id13_.font = "Porky's"; __id13_.hAlign = "center"; __id13_.multiline = false; __id13_.vAlign = "middle"; __id13_.antiAliasType = "advanced"; __id13_.glowBlur = 3; __id13_.glowColor = 0; __id13_.useGlowFilter = false; __id13_.glowQuality = 1; __id13_.glowStrength = 5; __id13_.gridFitType = "pixel"; __id13_.italic = false; __id13_.selectable = false; __id13_.underline = false; try { __id13_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 228
//musique_c_59 (StarSplash_OML_fla.musique_c_59) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class musique_c_59 extends MovieClip { public var hit_btn:MovieClip; public function musique_c_59(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); if (MovieClip(root).musique == "off"){ this.gotoAndStop(2); }; this.hit_btn.addEventListener(MouseEvent.CLICK, this.hitBtn1); } function frame2(){ stop(); } public function hitBtn1(_arg1:MouseEvent):void{ if (this.currentFrame == 1){ MovieClip(root).musique = "off"; MovieClip(root).musicMC.Menu1_tr.volume = 0; MovieClip(root).musicMC.Menu1_ch.soundTransform = MovieClip(root).musicMC.Menu1_tr; MovieClip(root).musicMC.lvl1_tr.volume = 0; MovieClip(root).musicMC.lvl1_ch.soundTransform = MovieClip(root).musicMC.lvl1_tr; MovieClip(root).musicMC.lvl2_tr.volume = 0; MovieClip(root).musicMC.lvl2_ch.soundTransform = MovieClip(root).musicMC.lvl2_tr; MovieClip(root).musicMC.lvl3_tr.volume = 0; MovieClip(root).musicMC.lvl3_ch.soundTransform = MovieClip(root).musicMC.lvl3_tr; gotoAndStop(2); } else { MovieClip(root).musique = "on"; MovieClip(root).musicMC.Menu1_tr.volume = MovieClip(root).volumeValue; MovieClip(root).musicMC.Menu1_ch.soundTransform = MovieClip(root).musicMC.Menu1_tr; MovieClip(root).musicMC.lvl1_tr.volume = MovieClip(root).volumeValue; MovieClip(root).musicMC.lvl1_ch.soundTransform = MovieClip(root).musicMC.lvl1_tr; MovieClip(root).musicMC.lvl2_tr.volume = MovieClip(root).volumeValue; MovieClip(root).musicMC.lvl2_ch.soundTransform = MovieClip(root).musicMC.lvl2_tr; MovieClip(root).musicMC.lvl3_tr.volume = MovieClip(root).volumeValue; MovieClip(root).musicMC.lvl3_ch.soundTransform = MovieClip(root).musicMC.lvl3_tr; gotoAndStop(1); }; } } }//package StarSplash_OML_fla
Section 229
//musique_c2_173 (StarSplash_OML_fla.musique_c2_173) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class musique_c2_173 extends MovieClip { public var hit_btn:SimpleButton; public function musique_c2_173(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); if (MovieClip(root).musique == "off"){ this.gotoAndStop(2); }; this.hit_btn.addEventListener(MouseEvent.CLICK, this.hitBtn1); } function frame2(){ stop(); } public function hitBtn1(_arg1:MouseEvent):void{ if (this.currentFrame == 1){ MovieClip(root).musique = "off"; MovieClip(root).musicMC.Menu1_tr.volume = 0; MovieClip(root).musicMC.Menu1_ch.soundTransform = MovieClip(root).musicMC.Menu1_tr; MovieClip(root).musicMC.lvl1_tr.volume = 0; MovieClip(root).musicMC.lvl1_ch.soundTransform = MovieClip(root).musicMC.lvl1_tr; MovieClip(root).musicMC.lvl2_tr.volume = 0; MovieClip(root).musicMC.lvl2_ch.soundTransform = MovieClip(root).musicMC.lvl2_tr; MovieClip(root).musicMC.lvl3_tr.volume = 0; MovieClip(root).musicMC.lvl3_ch.soundTransform = MovieClip(root).musicMC.lvl3_tr; gotoAndStop(2); } else { MovieClip(root).musique = "on"; MovieClip(root).musicMC.Menu1_tr.volume = MovieClip(root).volumeValue; MovieClip(root).musicMC.Menu1_ch.soundTransform = MovieClip(root).musicMC.Menu1_tr; MovieClip(root).musicMC.lvl1_tr.volume = MovieClip(root).volumeValue; MovieClip(root).musicMC.lvl1_ch.soundTransform = MovieClip(root).musicMC.lvl1_tr; MovieClip(root).musicMC.lvl2_tr.volume = MovieClip(root).volumeValue; MovieClip(root).musicMC.lvl2_ch.soundTransform = MovieClip(root).musicMC.lvl2_tr; MovieClip(root).musicMC.lvl3_tr.volume = MovieClip(root).volumeValue; MovieClip(root).musicMC.lvl3_ch.soundTransform = MovieClip(root).musicMC.lvl3_tr; gotoAndStop(1); }; } } }//package StarSplash_OML_fla
Section 230
//noir_alpha_clip_177 (StarSplash_OML_fla.noir_alpha_clip_177) package StarSplash_OML_fla { import flash.display.*; public dynamic class noir_alpha_clip_177 extends MovieClip { public var noir:MovieClip; public function noir_alpha_clip_177(){ addFrameScript(0, frame1, 6, frame7); } function frame7(){ stop(); } function frame1(){ stop(); } } }//package StarSplash_OML_fla
Section 231
//preloader_3 (StarSplash_OML_fla.preloader_3) package StarSplash_OML_fla { import flash.display.*; public dynamic class preloader_3 extends MovieClip { public var bx:MovieClip; public function preloader_3(){ addFrameScript(99, frame100); } function frame100(){ stop(); } } }//package StarSplash_OML_fla
Section 232
//preloader_barre_4 (StarSplash_OML_fla.preloader_barre_4) package StarSplash_OML_fla { import flash.display.*; public dynamic class preloader_barre_4 extends MovieClip { public var b2:MovieClip; public var b4:MovieClip; public var b5:MovieClip; public var b6:MovieClip; public var b7:MovieClip; public var b1:MovieClip; public var b3:MovieClip; public var b8:MovieClip; public function preloader_barre_4(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.b1.gotoAndPlay(105); this.b2.gotoAndPlay(90); this.b3.gotoAndPlay(75); this.b4.gotoAndPlay(60); this.b5.gotoAndPlay(45); this.b6.gotoAndPlay(30); this.b7.gotoAndPlay(15); this.b8.gotoAndPlay(1); } } }//package StarSplash_OML_fla
Section 233
//preloader_barre_tite_c_5 (StarSplash_OML_fla.preloader_barre_tite_c_5) package StarSplash_OML_fla { import flash.display.*; public dynamic class preloader_barre_tite_c_5 extends MovieClip { public function preloader_barre_tite_c_5(){ addFrameScript(0, frame1); } function frame1(){ play(); } } }//package StarSplash_OML_fla
Section 234
//preloader_c_2 (StarSplash_OML_fla.preloader_c_2) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import CPMStar.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class preloader_c_2 extends MovieClip { public var BAR:MovieClip; public var ad:DisplayObject; public var adBox:MovieClip; public var CPMStarContentSpotID:String; public var btn_start:MovieClip; public function preloader_c_2(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 122, frame123); } function frame3(){ if (this.BAR.currentFrame < 100){ this.BAR.play(); }; play(); } function frame1(){ stop(); if (MovieClip(parent).Star == true){ gotoAndStop("pub"); }; } function frame2(){ stop(); CPMStarContentSpotID = "3786QFDD07C8A"; ad = new AdLoader(CPMStarContentSpotID); adBox.addChild(ad); } public function hitBtn1(_arg1:MouseEvent):void{ this.btn_start.removeEventListener(MouseEvent.CLICK, this.hitBtn1); MovieClip(parent).play(); } function frame123(){ stop(); this.btn_start.addEventListener(MouseEvent.CLICK, this.hitBtn1); } } }//package StarSplash_OML_fla
Section 235
//pres_result_180 (StarSplash_OML_fla.pres_result_180) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class pres_result_180 extends MovieClip { public var titre:MovieClip; public var l1:MovieClip; public var l3:MovieClip; public var l2:MovieClip; public function pres_result_180(){ addFrameScript(49, frame50, 74, frame75); } function frame75(){ stop(); if (MovieClip(root).lv.pratique == true){ MyGlobal.vague = (MyGlobal.vague - 1); MovieClip(parent).nextPlace = "pres"; MovieClip(parent).gotoAndPlay("pres"); } else { if ((((((MyGlobal.vague == 7)) || ((MyGlobal.vague == 14)))) || ((MyGlobal.vague == 21)))){ MovieClip(parent).nextPlace = "trans"; MovieClip(parent).gotoAndPlay("trans"); } else { MovieClip(parent).nextPlace = "pres"; MovieClip(parent).gotoAndPlay("pres"); }; }; } function frame50(){ stop(); } } }//package StarSplash_OML_fla
Section 236
//pres_result_l1_183 (StarSplash_OML_fla.pres_result_l1_183) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class pres_result_l1_183 extends MovieClip { public var stars:TextField; public function pres_result_l1_183(){ addFrameScript(0, frame1); } function frame1(){ this.stars.text = MovieClip(root).lv.totalItems; } } }//package StarSplash_OML_fla
Section 237
//pres_result_l1_collectedText_188 (StarSplash_OML_fla.pres_result_l1_collectedText_188) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class pres_result_l1_collectedText_188 extends MovieClip { public var __id16_:LocalizedTextField; public function pres_result_l1_collectedText_188(){ __setProp___id16__pres_result_l1_collectedText_Layer1_1(); } function __setProp___id16__pres_result_l1_collectedText_Layer1_1(){ try { __id16_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id16_.text = "{CollectedResult}"; __id16_.textColor = 0xFFFF; __id16_.textSize = 32; __id16_.bold = false; __id16_.disableWordwrap = false; __id16_.embedFonts = true; __id16_.font = "Berlin Sans FB Demi"; __id16_.hAlign = "left"; __id16_.multiline = false; __id16_.vAlign = "middle"; __id16_.antiAliasType = "advanced"; __id16_.glowBlur = 3; __id16_.glowColor = 0; __id16_.useGlowFilter = false; __id16_.glowQuality = 1; __id16_.glowStrength = 5; __id16_.gridFitType = "pixel"; __id16_.italic = false; __id16_.selectable = false; __id16_.underline = false; try { __id16_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 238
//pres_result_l1_neededText_186 (StarSplash_OML_fla.pres_result_l1_neededText_186) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class pres_result_l1_neededText_186 extends MovieClip { public var __id15_:LocalizedTextField; public function pres_result_l1_neededText_186(){ __setProp___id15__pres_result_l1_neededText_Layer1_1(); } function __setProp___id15__pres_result_l1_neededText_Layer1_1(){ try { __id15_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id15_.text = "{NeededResult}"; __id15_.textColor = 0xFFFF; __id15_.textSize = 32; __id15_.bold = false; __id15_.disableWordwrap = false; __id15_.embedFonts = true; __id15_.font = "Berlin Sans FB Demi"; __id15_.hAlign = "left"; __id15_.multiline = false; __id15_.vAlign = "middle"; __id15_.antiAliasType = "advanced"; __id15_.glowBlur = 3; __id15_.glowColor = 0; __id15_.useGlowFilter = false; __id15_.glowQuality = 1; __id15_.glowStrength = 5; __id15_.gridFitType = "pixel"; __id15_.italic = false; __id15_.selectable = false; __id15_.underline = false; try { __id15_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 239
//pres_result_l1_starsText_184 (StarSplash_OML_fla.pres_result_l1_starsText_184) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class pres_result_l1_starsText_184 extends MovieClip { public var __id14_:LocalizedTextField; public function pres_result_l1_starsText_184(){ __setProp___id14__pres_result_l1_starsText_Layer1_1(); } function __setProp___id14__pres_result_l1_starsText_Layer1_1(){ try { __id14_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id14_.text = "{StarsResult}"; __id14_.textColor = 0xFFFF; __id14_.textSize = 32; __id14_.bold = false; __id14_.disableWordwrap = false; __id14_.embedFonts = true; __id14_.font = "Berlin Sans FB Demi"; __id14_.hAlign = "left"; __id14_.multiline = false; __id14_.vAlign = "middle"; __id14_.antiAliasType = "advanced"; __id14_.glowBlur = 3; __id14_.glowColor = 0; __id14_.useGlowFilter = false; __id14_.glowQuality = 1; __id14_.glowStrength = 5; __id14_.gridFitType = "pixel"; __id14_.italic = false; __id14_.selectable = false; __id14_.underline = false; try { __id14_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 240
//pres_result_l2_185 (StarSplash_OML_fla.pres_result_l2_185) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class pres_result_l2_185 extends MovieClip { public var needed:TextField; public function pres_result_l2_185(){ addFrameScript(0, frame1); } function frame1(){ this.needed.text = MovieClip(root).lv.passeItems; } } }//package StarSplash_OML_fla
Section 241
//pres_result_l3_187 (StarSplash_OML_fla.pres_result_l3_187) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class pres_result_l3_187 extends MovieClip { public var collected:TextField; public function pres_result_l3_187(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); this.collected.text = MovieClip(root).lv.itemsCollect; } function frame1(){ stop(); if (MovieClip(parent.parent).verdict == "perfect"){ gotoAndStop(2); }; if (MovieClip(parent.parent).verdict == "failed"){ gotoAndStop(3); }; this.collected.text = MovieClip(root).lv.itemsCollect; } function frame2(){ stop(); this.collected.text = MovieClip(root).lv.itemsCollect; } } }//package StarSplash_OML_fla
Section 242
//pres_tableau_179 (StarSplash_OML_fla.pres_tableau_179) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class pres_tableau_179 extends MovieClip { public var nextPlace:String; public var verdict:String; public function pres_tableau_179(){ addFrameScript(0, frame1, 4, frame5, 9, frame10, 14, frame15, 19, frame20, 24, frame25, 29, frame30, 34, frame35); } function frame10(){ gotoAndPlay(nextPlace); } function frame15(){ stop(); } function frame1(){ stop(); nextPlace = null; verdict = null; MovieClip(root).lv.controles = true; } function frame25(){ stop(); } function frame5(){ MovieClip(root).lv.controles = false; MovieClip(parent).noir.play(); play(); } function frame20(){ stop(); } function frame30(){ MovieClip(parent).noir.play(); play(); } function frame35(){ if (nextPlace == "pres"){ MovieClip(root).lv.chVague(); }; gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 243
//pres_tableau_anime_237 (StarSplash_OML_fla.pres_tableau_anime_237) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class pres_tableau_anime_237 extends MovieClip { public var btnNext:MovieClip; public var btnReady:MovieClip; public var btnPractice:MovieClip; public function pres_tableau_anime_237(){ addFrameScript(34, frame35, 49, frame50); } public function clickPractice(_arg1:Event=null):void{ stage.removeEventListener(KeyboardEvent.KEY_DOWN, checkKeysDown); this.btnNext.removeEventListener(MouseEvent.CLICK, clickNext); this.btnPractice.removeEventListener(MouseEvent.CLICK, clickPractice); MovieClip(root).lv.pratique = true; this.play(); } function frame35(){ stop(); this.btnPractice.focusRect = false; this.btnNext.focusRect = false; stage.addEventListener(KeyboardEvent.KEY_DOWN, checkKeysDown); this.btnNext.addEventListener(MouseEvent.CLICK, clickNext); this.btnPractice.addEventListener(MouseEvent.CLICK, clickPractice); } public function clickNext(_arg1:Event=null):void{ stage.removeEventListener(KeyboardEvent.KEY_DOWN, checkKeysDown); this.btnNext.removeEventListener(MouseEvent.CLICK, clickNext); this.btnPractice.removeEventListener(MouseEvent.CLICK, clickPractice); MovieClip(root).lv.pratique = false; this.play(); } function frame50(){ MovieClip(parent).gotoAndPlay("noir_out"); stop(); } public function checkKeysDown(_arg1:KeyboardEvent):void{ if (((MovieClip(root).lv.isKeyDown(37)) || (MovieClip(root).lv.isKeyDown(65)))){ stage.focus = this.btnPractice; }; if (((MovieClip(root).lv.isKeyDown(39)) || (MovieClip(root).lv.isKeyDown(68)))){ stage.focus = this.btnNext; }; if (((MovieClip(root).lv.isKeyDown(32)) || (MovieClip(root).lv.isKeyDown(13)))){ if (stage.focus == this.btnPractice){ clickPractice(); } else { if (stage.focus == this.btnNext){ clickNext(); }; }; }; } } }//package StarSplash_OML_fla
Section 244
//pres_transition_284 (StarSplash_OML_fla.pres_transition_284) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import com.spilgames.api.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class pres_transition_284 extends MovieClip { public var etMask:MovieClip; public var muz:String; public function pres_transition_284(){ addFrameScript(0, frame1, 1, frame2, 32, frame33, 49, frame50, 54, frame55, 74, frame75, 104, frame105, 110, frame111, 150, frame151); } function frame151(){ stop(); MovieClip(parent.parent).btnMoreGames.removeEventListener(MouseEvent.CLICK, MovieClip(parent.parent).clickMoreGames); MovieClip(root).gotoAndPlay("fin", "Menu"); } function frame75(){ etMask.play(); } function frame105(){ stop(); MovieClip(parent).nextPlace = "pres"; MovieClip(parent).gotoAndPlay("pres"); } function frame1(){ etMask.gotoAndStop(1); } function frame111(){ MovieClip(root).frameName = null; etMask.gotoAndStop(1); play(); } function frame2(){ MovieClip(root).musicF("out", 45, "end"); } function frame33(){ MovieClip(root).sonsF("zonePassed", false); } function frame55(){ if (MyGlobal.vague == 7){ AwardsService.submitAward("award1"); } else { if (MyGlobal.vague == 14){ AwardsService.submitAward("award2"); } else { if (MyGlobal.vague == 21){ AwardsService.submitAward("award3"); }; }; }; if (MyGlobal.vague == 21){ gotoAndPlay("fini"); } else { if (MovieClip(root).lv.zone == "port"){ muz = "lvl2"; } else { if (MovieClip(root).lv.zone == "nuit"){ muz = "lvl3"; }; }; MovieClip(root).musicF("in", 45, muz); }; } function frame50(){ if (MovieClip(root).lv.zone == "tropical"){ MovieClip(root).lv.zone = "port"; } else { if (MovieClip(root).lv.zone == "port"){ MovieClip(root).lv.zone = "nuit"; }; }; MovieClip(root).lv.chZone(); MovieClip(root).lv.itemsCollect = 0; MovieClip(root).menuJeu.itemsC.text = 0; MovieClip(root).menuJeu.progression.gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 245
//pres_transition_text_285 (StarSplash_OML_fla.pres_transition_text_285) package StarSplash_OML_fla { import flash.display.*; public dynamic class pres_transition_text_285 extends MovieClip { public function pres_transition_text_285(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); } function frame3(){ stop(); } function frame1(){ if (MyGlobal.vague == 14){ gotoAndStop(2); } else { if (MyGlobal.vague == 21){ gotoAndStop(3); }; }; stop(); } function frame2(){ stop(); } } }//package StarSplash_OML_fla
Section 246
//pres_transition_text_AdvanceText_288 (StarSplash_OML_fla.pres_transition_text_AdvanceText_288) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class pres_transition_text_AdvanceText_288 extends MovieClip { public var __id39_:LocalizedTextField; public function pres_transition_text_AdvanceText_288(){ __setProp___id39__pres_transition_text_AdvanceText_Layer1_1(); } function __setProp___id39__pres_transition_text_AdvanceText_Layer1_1(){ try { __id39_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id39_.text = "{AdvancedPassed}"; __id39_.textColor = 10953471; __id39_.textSize = 60; __id39_.bold = false; __id39_.disableWordwrap = false; __id39_.embedFonts = true; __id39_.font = "Berlin Sans FB Demi"; __id39_.hAlign = "center"; __id39_.multiline = true; __id39_.vAlign = "middle"; __id39_.antiAliasType = "advanced"; __id39_.glowBlur = 3; __id39_.glowColor = 0; __id39_.useGlowFilter = false; __id39_.glowQuality = 1; __id39_.glowStrength = 5; __id39_.gridFitType = "pixel"; __id39_.italic = false; __id39_.selectable = false; __id39_.underline = false; try { __id39_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 247
//pres_transition_text_EasyText_286 (StarSplash_OML_fla.pres_transition_text_EasyText_286) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class pres_transition_text_EasyText_286 extends MovieClip { public var __id37_:LocalizedTextField; public function pres_transition_text_EasyText_286(){ __setProp___id37__pres_transition_text_EasyText_Layer1_1(); } function __setProp___id37__pres_transition_text_EasyText_Layer1_1(){ try { __id37_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id37_.text = "{EasyPassed}"; __id37_.textColor = 0xFFFF; __id37_.textSize = 60; __id37_.bold = false; __id37_.disableWordwrap = false; __id37_.embedFonts = true; __id37_.font = "Berlin Sans FB Demi"; __id37_.hAlign = "center"; __id37_.multiline = true; __id37_.vAlign = "middle"; __id37_.antiAliasType = "advanced"; __id37_.glowBlur = 3; __id37_.glowColor = 0; __id37_.useGlowFilter = false; __id37_.glowQuality = 1; __id37_.glowStrength = 5; __id37_.gridFitType = "pixel"; __id37_.italic = false; __id37_.selectable = false; __id37_.underline = false; try { __id37_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 248
//pres_transition_text_MediumText_287 (StarSplash_OML_fla.pres_transition_text_MediumText_287) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class pres_transition_text_MediumText_287 extends MovieClip { public var __id38_:LocalizedTextField; public function pres_transition_text_MediumText_287(){ __setProp___id38__pres_transition_text_MediumText_Layer1_1(); } function __setProp___id38__pres_transition_text_MediumText_Layer1_1(){ try { __id38_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id38_.text = "{MediumPassed}"; __id38_.textColor = 4033278; __id38_.textSize = 60; __id38_.bold = false; __id38_.disableWordwrap = false; __id38_.embedFonts = true; __id38_.font = "Berlin Sans FB Demi"; __id38_.hAlign = "center"; __id38_.multiline = true; __id38_.vAlign = "middle"; __id38_.antiAliasType = "advanced"; __id38_.glowBlur = 3; __id38_.glowColor = 0; __id38_.useGlowFilter = false; __id38_.glowQuality = 1; __id38_.glowStrength = 5; __id38_.gridFitType = "pixel"; __id38_.italic = false; __id38_.selectable = false; __id38_.underline = false; try { __id38_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 249
//qualitee_clip_16 (StarSplash_OML_fla.qualitee_clip_16) package StarSplash_OML_fla { import flash.display.*; public dynamic class qualitee_clip_16 extends MovieClip { public var q_text:MovieClip; } }//package StarSplash_OML_fla
Section 250
//qualitee_clip_text_18 (StarSplash_OML_fla.qualitee_clip_text_18) package StarSplash_OML_fla { import flash.display.*; public dynamic class qualitee_clip_text_18 extends MovieClip { public function qualitee_clip_text_18(){ addFrameScript(0, frame1, 14, frame15, 29, frame30, 44, frame45, 59, frame60); } function frame15(){ gotoAndStop(1); } function frame1(){ stop(); } function frame30(){ gotoAndStop(1); } function frame45(){ gotoAndStop(1); } function frame60(){ gotoAndStop(1); } } }//package StarSplash_OML_fla
Section 251
//snailsanimation_15 (StarSplash_OML_fla.snailsanimation_15) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class snailsanimation_15 extends MovieClip { public function snailsanimation_15(){ addFrameScript(1, frame2, 89, frame90); } function frame90(){ stop(); MovieClip(parent).play(); } function frame2(){ MovieClip(root).musicF("in", 85, "Menu"); } } }//package StarSplash_OML_fla
Section 252
//SnailsAnimation_splash_13 (StarSplash_OML_fla.SnailsAnimation_splash_13) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class SnailsAnimation_splash_13 extends MovieClip { public var snails:SimpleButton; public function SnailsAnimation_splash_13(){ addFrameScript(0, frame1, 8, frame9, 22, frame23); } function frame1(){ this.snails.addEventListener(MouseEvent.CLICK, MovieClip(root).clickSNL); if (MovieClip(root).snailsLogo == true){ this.snails.mouseEnabled = true; } else { this.snails.mouseEnabled = false; }; } function frame23(){ stop(); this.snails.removeEventListener(MouseEvent.CLICK, MovieClip(root).clickSNL); MovieClip(parent).play(); } function frame9(){ stop(); } } }//package StarSplash_OML_fla
Section 253
//son_c_64 (StarSplash_OML_fla.son_c_64) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class son_c_64 extends MovieClip { public var hit_btn:MovieClip; public function son_c_64(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); if (MovieClip(root).sons == "off"){ this.gotoAndStop(2); }; this.hit_btn.addEventListener(MouseEvent.CLICK, this.hitBtn1); } function frame2(){ stop(); } public function hitBtn1(_arg1:MouseEvent):void{ if (this.currentFrame == 1){ MovieClip(root).sons = "off"; MovieClip(root).sonMC.gotoAndPlay("mute"); this.gotoAndStop(2); } else { MovieClip(root).sons = "on"; this.gotoAndStop(1); }; } } }//package StarSplash_OML_fla
Section 254
//son_c2_175 (StarSplash_OML_fla.son_c2_175) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class son_c2_175 extends MovieClip { public var hit_btn:SimpleButton; public function son_c2_175(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); if (MovieClip(root).sons == "off"){ this.gotoAndStop(2); }; this.hit_btn.addEventListener(MouseEvent.CLICK, this.hitBtn1); } function frame2(){ stop(); } public function hitBtn1(_arg1:MouseEvent):void{ if (this.currentFrame == 1){ MovieClip(root).sons = "off"; MovieClip(root).sonMC.gotoAndPlay("mute"); this.gotoAndStop(2); } else { MovieClip(root).sons = "on"; this.gotoAndStop(1); }; } } }//package StarSplash_OML_fla
Section 255
//sonar_clip_grossi_291 (StarSplash_OML_fla.sonar_clip_grossi_291) package StarSplash_OML_fla { import flash.display.*; public dynamic class sonar_clip_grossi_291 extends MovieClip { public function sonar_clip_grossi_291(){ addFrameScript(4, frame5); } function frame5(){ stop(); } } }//package StarSplash_OML_fla
Section 256
//splash_298 (StarSplash_OML_fla.splash_298) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class splash_298 extends MovieClip { public function splash_298(){ addFrameScript(39, frame40); } function frame40(){ stop(); MovieClip(parent.parent).deleteSplash(MovieClip(parent).typeSplash); } } }//package StarSplash_OML_fla
Section 257
//t2_242 (StarSplash_OML_fla.t2_242) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class t2_242 extends MovieClip { public var __id24_:LocalizedTextField; public function t2_242(){ __setProp___id24__t2_Layer2_1(); } function __setProp___id24__t2_Layer2_1(){ try { __id24_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id24_.text = "{Air1Pres}"; __id24_.textColor = 0xFFFFFF; __id24_.textSize = 13; __id24_.bold = false; __id24_.disableWordwrap = false; __id24_.embedFonts = true; __id24_.font = "Futura BdCn BT"; __id24_.hAlign = "left"; __id24_.multiline = false; __id24_.vAlign = "middle"; __id24_.antiAliasType = "advanced"; __id24_.glowBlur = 3; __id24_.glowColor = 0; __id24_.useGlowFilter = false; __id24_.glowQuality = 1; __id24_.glowStrength = 5; __id24_.gridFitType = "pixel"; __id24_.italic = false; __id24_.selectable = false; __id24_.underline = false; try { __id24_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 258
//t5_243 (StarSplash_OML_fla.t5_243) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class t5_243 extends MovieClip { public var __id25_:LocalizedTextField; public function t5_243(){ __setProp___id25__t5_Layer1_1(); } function __setProp___id25__t5_Layer1_1(){ try { __id25_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id25_.text = "{Air2Pres}"; __id25_.textColor = 0xFFFFFF; __id25_.textSize = 13; __id25_.bold = false; __id25_.disableWordwrap = false; __id25_.embedFonts = true; __id25_.font = "Futura BdCn BT"; __id25_.hAlign = "left"; __id25_.multiline = false; __id25_.vAlign = "middle"; __id25_.antiAliasType = "advanced"; __id25_.glowBlur = 3; __id25_.glowColor = 0; __id25_.useGlowFilter = false; __id25_.glowQuality = 1; __id25_.glowStrength = 5; __id25_.gridFitType = "pixel"; __id25_.italic = false; __id25_.selectable = false; __id25_.underline = false; try { __id25_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 259
//t8_244 (StarSplash_OML_fla.t8_244) package StarSplash_OML_fla { import flash.display.*; import spill.localisation.*; public dynamic class t8_244 extends MovieClip { public var __id26_:LocalizedTextField; public function t8_244(){ __setProp___id26__t8_Layer1_1(); } function __setProp___id26__t8_Layer1_1(){ try { __id26_["componentInspectorSetting"] = true; } catch(e:Error) { }; __id26_.text = "{AnyPres}"; __id26_.textColor = 0xFFFFFF; __id26_.textSize = 13; __id26_.bold = false; __id26_.disableWordwrap = false; __id26_.embedFonts = true; __id26_.font = "Futura BdCn BT"; __id26_.hAlign = "left"; __id26_.multiline = false; __id26_.vAlign = "middle"; __id26_.antiAliasType = "advanced"; __id26_.glowBlur = 3; __id26_.glowColor = 0; __id26_.useGlowFilter = false; __id26_.glowQuality = 1; __id26_.glowStrength = 5; __id26_.gridFitType = "pixel"; __id26_.italic = false; __id26_.selectable = false; __id26_.underline = false; try { __id26_["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package StarSplash_OML_fla
Section 260
//trans_etoile_fin_100 (StarSplash_OML_fla.trans_etoile_fin_100) package StarSplash_OML_fla { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class trans_etoile_fin_100 extends MovieClip { public function trans_etoile_fin_100(){ addFrameScript(1, frame2, 31, frame32); } function frame2(){ MovieClip(root).musicF("in", 25, "Menu"); } function frame32(){ stop(); } } }//package StarSplash_OML_fla
Section 261
//Bouée (Bouée) package { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class Bouée extends MovieClip { public var b:MovieClip; public function Bouée(){ addFrameScript(0, frame1); } function frame1(){ stop(); if (MovieClip(parent).eau_bg.frameName == "nuit"){ this.transform.colorTransform = new ColorTransform(0.7, 0.55, 0.7, 1, 0, 0, 70, 0); }; if (MovieClip(parent).eau_bg.frameName == "port"){ this.b.corde.coquillages.visible = true; } else { this.b.corde.coquillages.visible = false; }; b.tete.passe.text = MovieClip(parent).passeItems; b.tete.drapeau.g.lv.text = MyGlobal.vague; this.addEventListener(Event.ENTER_FRAME, entFrame); } public function entFrame(_arg1:Event):void{ if (!(((MovieClip(root).frameName == "menu")) || ((MovieClip(root).frameName == "jeu")))){ this.removeEventListener(Event.ENTER_FRAME, entFrame); }; this.x = (this.x - MovieClip(parent).itemSpd); if (this.x < -70){ MovieClip(parent).deleteSpawn(this.name, 0); }; } } }//package
Section 262
//Espace (Espace) package { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class Espace extends MovieClip { public function Espace(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.addEventListener(Event.ENTER_FRAME, entFrame); } public function entFrame(_arg1:Event):void{ if (!(((MovieClip(root).frameName == "menu")) || ((MovieClip(root).frameName == "jeu")))){ this.removeEventListener(Event.ENTER_FRAME, entFrame); }; this.x = (this.x - MovieClip(parent).itemSpd); if (this.x <= 700){ MovieClip(parent)[("tableau" + MyGlobal.vague)].nextSpawn(); MovieClip(parent).deleteSpawn(this.name, 0); }; } } }//package
Section 263
//EtoileJaune (EtoileJaune) package { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class EtoileJaune extends MovieClip { public function EtoileJaune(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.addEventListener(Event.ENTER_FRAME, entFrame); } public function entFrame(_arg1:Event):void{ if (!(((MovieClip(root).frameName == "menu")) || ((MovieClip(root).frameName == "jeu")))){ this.removeEventListener(Event.ENTER_FRAME, entFrame); }; this.x = (this.x - MovieClip(parent).itemSpd); if (hitTestObject(MovieClip(parent).hit)){ MovieClip(parent).deleteSpawn(this.name, 1); } else { if (this.x < -20){ trace(("spawn = " + MovieClip(parent)[("tableau" + MyGlobal.vague)].spawn)); MovieClip(parent).deleteSpawn(this.name, 0); }; }; } } }//package
Section 264
//EtoileTrans (EtoileTrans) package { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class EtoileTrans extends MovieClip { public function EtoileTrans(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.addEventListener(Event.ENTER_FRAME, entFrame); } public function entFrame(_arg1:Event):void{ if (!(((MovieClip(root).frameName == "menu")) || ((MovieClip(root).frameName == "jeu")))){ this.removeEventListener(Event.ENTER_FRAME, entFrame); }; this.x = (this.x - MovieClip(parent).itemSpd); if (MovieClip(parent).sonarName != null){ if (hitTestObject(MovieClip(parent).sonarName)){ MovieClip(parent).deleteSpawn(this.name, 1); }; } else { if (this.x < -20){ trace(("spawn = " + MovieClip(parent)[("tableau" + MyGlobal.vague)].spawn)); MovieClip(parent).deleteSpawn(this.name, 0); }; }; } } }//package
Section 265
//EtoileTrans2 (EtoileTrans2) package { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class EtoileTrans2 extends MovieClip { public var tourne:MovieClip; public var pos:uint; public function EtoileTrans2(){ addFrameScript(0, frame1); } function frame1(){ stop(); this.tourne.gotoAndPlay(pos); this.addEventListener(Event.ENTER_FRAME, entFrame); } public function entFrame(_arg1:Event):void{ if (!(((MovieClip(root).frameName == "menu")) || ((MovieClip(root).frameName == "jeu")))){ this.removeEventListener(Event.ENTER_FRAME, entFrame); }; this.x = (this.x - MovieClip(parent).itemSpd); if (MovieClip(parent).sonarName != null){ if (hitTestObject(MovieClip(parent).sonarName)){ MovieClip(parent).deleteSpawn(this.name, 1); }; } else { if (this.x < -20){ trace(("spawn = " + MovieClip(parent)[("tableau" + MyGlobal.vague)].spawn)); MovieClip(parent).deleteSpawn(this.name, 0); }; }; } } }//package
Section 266
//Meduse (Meduse) package { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class Meduse extends MovieClip { public var m:MovieClip; public var hit:MovieClip; public function Meduse(){ addFrameScript(0, frame1); } function frame1(){ stop(); if (MovieClip(parent).eau_bg.frameName == "nuit"){ this.transform.colorTransform = new ColorTransform(0.9, 0.8, 0.9, 1, 0, 0, 0, 0); }; this.addEventListener(Event.ENTER_FRAME, entFrame); } public function entFrame(_arg1:Event):void{ if (!(((MovieClip(root).frameName == "menu")) || ((MovieClip(root).frameName == "jeu")))){ this.removeEventListener(Event.ENTER_FRAME, entFrame); }; this.x = (this.x - MovieClip(parent).itemSpd); if ((((MovieClip(parent).dauphin.etat == "saute")) && (!((MovieClip(parent).dauphin.saute.hit2 == null))))){ if (((this.hit.hitTestObject(MovieClip(parent).dauphin.saute.hit2)) && ((this.m.touche == false)))){ MovieClip(parent).preMeduseSaut(); this.m.gotoAndStop("spring"); }; } else { if (this.x < -70){ MovieClip(parent).deleteSpawn(this.name, 0); }; }; } } }//package
Section 267
//MochiBot (MochiBot) package { import flash.display.*; import flash.net.*; import flash.system.*; public dynamic class MochiBot extends Sprite { public static function track(_arg1:Sprite, _arg2:String):MochiBot{ var _local3:MochiBot; var _local4:String; var _local5:URLVariables; var _local6:String; var _local7:URLRequest; var _local8:Loader; if (Security.sandboxType == "localWithFile"){ return (null); }; _local3 = new (MochiBot); _arg1.addChild(_local3); Security.allowDomain("*"); Security.allowInsecureDomain("*"); _local4 = "http://core.mochibot.com/my/core.swf"; _local5 = new URLVariables(); _local5["sb"] = Security.sandboxType; _local5["v"] = Capabilities.version; _local5["swfid"] = _arg2; _local5["mv"] = "8"; _local5["fv"] = "9"; _local6 = _local3.root.loaderInfo.loaderURL; if (_local6.indexOf("http") == 0){ _local5["url"] = _local6; } else { _local5["url"] = "local"; }; _local7 = new URLRequest(_local4); _local7.contentType = "application/x-www-form-urlencoded"; _local7.method = URLRequestMethod.POST; _local7.data = _local5; _local8 = new Loader(); _local3.addChild(_local8); _local8.load(_local7); return (_local3); } } }//package
Section 268
//mus_lvl1 (mus_lvl1) package { import flash.media.*; public dynamic class mus_lvl1 extends Sound { } }//package
Section 269
//mus_lvl2 (mus_lvl2) package { import flash.media.*; public dynamic class mus_lvl2 extends Sound { } }//package
Section 270
//mus_lvl3 (mus_lvl3) package { import flash.media.*; public dynamic class mus_lvl3 extends Sound { } }//package
Section 271
//mus_Menu (mus_Menu) package { import flash.media.*; public dynamic class mus_Menu extends Sound { } }//package
Section 272
//musicMC_clip (musicMC_clip) package { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class musicMC_clip extends MovieClip { public var m_lvl3:MovieClip; public var m_lvl4:MovieClip; public var lvl3_ch:SoundChannel; public var m_Menu:MovieClip; public var lvl3_tr; public var Menu1_ch:SoundChannel; public var m_Erreurs:MovieClip; public var lvl2:Sound; public var Menu1_tr; public var lvl3:Sound; public var lvl1_ch:SoundChannel; public var lvl1:Sound; public var lvl1_tr; public var Menu1:Sound; public var lvl2_ch:SoundChannel; public var lvl2_tr; public var m_lvl1:MovieClip; public var m_lvl2:MovieClip; public function musicMC_clip(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7); } function frame3(){ stop(); MovieClip(parent).musFrame = "lvl1"; lvl1_ch = lvl1.play(0, 9999); if (MovieClip(parent).musique == "on"){ lvl1_tr.volume = MovieClip(parent).volumeValue; } else { lvl1_tr.volume = 0; }; lvl1_ch.soundTransform = lvl1_tr; } function frame7(){ stop(); } function frame6(){ stop(); } function frame4(){ stop(); MovieClip(parent).musFrame = "lvl2"; lvl2_ch = lvl2.play(0, 9999); if (MovieClip(parent).musique == "on"){ lvl2_tr.volume = MovieClip(parent).volumeValue; } else { lvl2_tr.volume = 0; }; lvl2_ch.soundTransform = lvl2_tr; } function frame1(){ stop(); Menu1 = new mus_Menu(); Menu1_ch = new SoundChannel(); Menu1_tr = new SoundTransform(); lvl1 = new mus_lvl1(); lvl1_ch = new SoundChannel(); lvl1_tr = new SoundTransform(); lvl2 = new mus_lvl2(); lvl2_ch = new SoundChannel(); lvl2_tr = new SoundTransform(); lvl3 = new mus_lvl3(); lvl3_ch = new SoundChannel(); lvl3_tr = new SoundTransform(); } function frame2(){ stop(); MovieClip(parent).musFrame = "Menu"; Menu1_ch = Menu1.play(0, 9999); if (MovieClip(parent).musique == "on"){ Menu1_tr.volume = MovieClip(parent).volumeValue; } else { Menu1_tr.volume = 0; }; Menu1_ch.soundTransform = Menu1_tr; } function frame5(){ stop(); MovieClip(parent).musFrame = "lvl3"; lvl3_ch = lvl3.play(0, 9999); if (MovieClip(parent).musique == "on"){ lvl3_tr.volume = MovieClip(parent).volumeValue; } else { lvl3_tr.volume = 0; }; lvl3_ch.soundTransform = lvl3_tr; } } }//package
Section 273
//MyGlobal (MyGlobal) package { public class MyGlobal { public static var score:Number = new Number(); public static var vague:uint = new uint(); public static var langue:String = new String(); } }//package
Section 274
//Sonar (Sonar) package { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class Sonar extends MovieClip { public function Sonar(){ addFrameScript(0, frame1); } function frame1(){ stop(); MovieClip(parent).sonarName = MovieClip(parent).getChildByName(this.name); this.addEventListener(Event.ENTER_FRAME, entFrame); } public function entFrame(_arg1:Event):void{ if (!(((MovieClip(root).frameName == "menu")) || ((MovieClip(root).frameName == "jeu")))){ this.removeEventListener(Event.ENTER_FRAME, entFrame); }; this.x = (this.x + 40); if (this.x > 800){ MovieClip(parent).sonarName = null; MovieClip(parent).peutSonar = true; MovieClip(parent).deleteSpawn(this.name, 0); }; } } }//package
Section 275
//sonMC_clip (sonMC_clip) package { import flash.display.*; public dynamic class sonMC_clip extends MovieClip { public var needPractice:MovieClip; public var etoile:MovieClip; public var perfect:MovieClip; public var zonePassed:MovieClip; public var sonar:MovieClip; public var triple:MovieClip; public var wellDone:MovieClip; public var boing:MovieClip; public var splash:MovieClip; public var passed:MovieClip; public var splashOut:MovieClip; public var boost:MovieClip; public var gameOver:MovieClip; public function sonMC_clip(){ addFrameScript(0, frame1, 1, frame2); } function frame1(){ stop(); } function frame2(){ this.gotoAndStop(1); } } }//package
Section 276
//Splash1 (Splash1) package { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class Splash1 extends MovieClip { public var bulles:MovieClip; public var typeSplash:String; public var splash:MovieClip; public function Splash1(){ addFrameScript(0, frame1); } function frame1(){ stop(); if (MovieClip(parent).eau_bg.frameName == "nuit"){ this.splash.transform.colorTransform = new ColorTransform(0.6, 0.5, 0.7, 1, 10, 0, 50, 0); }; this.addEventListener(Event.ENTER_FRAME, entFrame); typeSplash = "grosSplash"; } public function entFrame(_arg1:Event):void{ this.x = (this.x - 8); if (!(((MovieClip(root).frameName == "menu")) || ((MovieClip(root).frameName == "jeu")))){ this.removeEventListener(Event.ENTER_FRAME, entFrame); }; } } }//package
Section 277
//TiSplash1 (TiSplash1) package { import flash.xml.*; import flash.display.*; import flash.text.*; import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import flash.system.*; import flash.external.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.filters.*; import flash.printing.*; public dynamic class TiSplash1 extends MovieClip { public var typeSplash:String; public var splash:MovieClip; public function TiSplash1(){ addFrameScript(2, frame3); } function frame3(){ stop(); if (MovieClip(parent).eau_bg.frameName == "nuit"){ this.splash.transform.colorTransform = new ColorTransform(0.6, 0.5, 0.7, 1, 10, 0, 50, 0); }; this.addEventListener(Event.ENTER_FRAME, entFrame); typeSplash = "tiSplash"; } public function entFrame(_arg1:Event):void{ this.x = (this.x - 8); if (!(((MovieClip(root).frameName == "menu")) || ((MovieClip(root).frameName == "jeu")))){ this.removeEventListener(Event.ENTER_FRAME, entFrame); }; } } }//package

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:3
Symbol 3 MovieClipUses:2Used by:132
Symbol 4 GraphicUsed by:132
Symbol 5 GraphicUsed by:16
Symbol 6 GraphicUsed by:16
Symbol 7 GraphicUsed by:16
Symbol 8 GraphicUsed by:16
Symbol 9 GraphicUsed by:16
Symbol 10 GraphicUsed by:16
Symbol 11 GraphicUsed by:16 211
Symbol 12 GraphicUsed by:16
Symbol 13 GraphicUsed by:16
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:16
Symbol 16 MovieClipUses:5 6 7 8 9 10 11 12 13 15Used by:132
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:132
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:19Used by:132
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:21Used by:132
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:132
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:132
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:132
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:132
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:31Used by:132
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:132
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:132
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:132
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:132
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:132
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:132
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClipUses:45Used by:47
Symbol 47 MovieClipUses:46Used by:132
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:50
Symbol 50 MovieClipUses:49Used by:132
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:53
Symbol 53 MovieClipUses:52Used by:132
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:54Used by:56
Symbol 56 MovieClipUses:55Used by:132
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:59
Symbol 59 MovieClipUses:58Used by:132
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:62
Symbol 62 MovieClipUses:61Used by:132
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:65
Symbol 65 MovieClipUses:64Used by:132
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:68
Symbol 68 MovieClipUses:67Used by:132
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:71
Symbol 71 MovieClipUses:70Used by:132
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:74
Symbol 74 MovieClipUses:73Used by:132
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:75Used by:77
Symbol 77 MovieClipUses:76Used by:132
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:80
Symbol 80 MovieClipUses:79Used by:132
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:81Used by:83
Symbol 83 MovieClipUses:82Used by:132
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:132
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:132
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:132
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:132
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:132
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:132
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:132
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:132
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:132
Symbol 102 BitmapUsed by:103
Symbol 103 GraphicUses:102Used by:104
Symbol 104 MovieClipUses:103Used by:132
Symbol 105 BitmapUsed by:106
Symbol 106 GraphicUses:105Used by:107
Symbol 107 MovieClipUses:106Used by:132
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:132
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:132
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:132
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:132
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:118
Symbol 118 MovieClipUses:117Used by:132
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:132
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121Used by:132
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:123Used by:132
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:125Used by:127
Symbol 127 MovieClipUses:126Used by:132
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:132
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:130Used by:132
Symbol 132 MovieClip {spill.localisation.BrandingLogo}Uses:3 4 16 18 20 22 24 26 28 30 32 34 36 38 40 42 44 47 50 53 56 59 62 65 68 71 74 77 80 83 85 87 89 91 93 95 97 99 101 104 107 109 111 113 115 118 120 122 124 127 129 131
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:133Used by:135 348
Symbol 135 MovieClip {spill.localisation.LanguageSelectBox}Uses:134
Symbol 136 FontUsed by:137 139
Symbol 137 TextUses:136Used by:140
Symbol 138 GraphicUsed by:140 255 751 756
Symbol 139 TextUses:136Used by:140
Symbol 140 Button {spill.localisation.SpilGamesLink}Uses:137 138 139
Symbol 141 GraphicUsed by:170
Symbol 142 FontUsed by:143 391 395 501 502 911 914
Symbol 143 EditableTextUses:142Used by:170
Symbol 144 GraphicUsed by:170 177 379 432
Symbol 145 GraphicUsed by:169
Symbol 146 GraphicUsed by:169
Symbol 147 GraphicUsed by:169
Symbol 148 GraphicUsed by:169
Symbol 149 GraphicUsed by:169
Symbol 150 GraphicUsed by:169
Symbol 151 GraphicUsed by:169
Symbol 152 GraphicUsed by:169
Symbol 153 GraphicUsed by:169
Symbol 154 GraphicUsed by:169
Symbol 155 GraphicUsed by:169
Symbol 156 GraphicUsed by:169
Symbol 157 GraphicUsed by:169
Symbol 158 GraphicUsed by:169
Symbol 159 GraphicUsed by:169
Symbol 160 GraphicUsed by:169
Symbol 161 GraphicUsed by:169
Symbol 162 GraphicUsed by:169
Symbol 163 GraphicUsed by:169
Symbol 164 GraphicUsed by:169
Symbol 165 BitmapUsed by:166
Symbol 166 GraphicUses:165Used by:169
Symbol 167 BitmapUsed by:168
Symbol 168 GraphicUses:167Used by:169
Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341}Uses:145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 166 168Used by:170 177
Symbol 170 MovieClip {spill.localisation.LanguageSelectBox_mc}Uses:141 143 144 169
Symbol 171 GraphicUsed by:174 440 743 939  Timeline
Symbol 172 GraphicUsed by:174
Symbol 173 GraphicUsed by:174
Symbol 174 ButtonUses:171 172 173Used by:177
Symbol 175 FontUsed by:176 390 393 835
Symbol 176 EditableTextUses:175Used by:177
Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}Uses:174 144 169 176Used by:180
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:178Used by:180
Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc}Uses:177 179
Symbol 181 MovieClipUsed by:182
Symbol 182 MovieClip {musicMC_clip}Uses:181
Symbol 183 SoundUsed by:184 211
Symbol 184 MovieClip {StarSplash_OML_fla.1_son_etoile_323}Uses:183Used by:211
Symbol 185 SoundUsed by:186 211
Symbol 186 MovieClip {StarSplash_OML_fla.1_son_boost_324}Uses:185Used by:211
Symbol 187 SoundUsed by:188 211
Symbol 188 MovieClip {StarSplash_OML_fla.1_son_boing_325}Uses:187Used by:211
Symbol 189 SoundUsed by:190 211
Symbol 190 MovieClip {StarSplash_OML_fla.1_son_sonar_326}Uses:189Used by:211
Symbol 191 SoundUsed by:192 211
Symbol 192 MovieClip {StarSplash_OML_fla.1_son_triple_327}Uses:191Used by:211
Symbol 193 SoundUsed by:196 211
Symbol 194 SoundUsed by:196 211
Symbol 195 SoundUsed by:196 211
Symbol 196 MovieClip {StarSplash_OML_fla.1_son_splash_328}Uses:193 194 195Used by:211
Symbol 197 SoundUsed by:198 211
Symbol 198 MovieClip {StarSplash_OML_fla.1_son_splashOut_329}Uses:197Used by:211
Symbol 199 SoundUsed by:200 211
Symbol 200 MovieClip {StarSplash_OML_fla.1_son_passed_330}Uses:199Used by:211
Symbol 201 SoundUsed by:202 211
Symbol 202 MovieClip {StarSplash_OML_fla.1_son_perfect_331}Uses:201Used by:211
Symbol 203 SoundUsed by:204 211
Symbol 204 MovieClip {StarSplash_OML_fla.1_son_wellDone_332}Uses:203Used by:211
Symbol 205 SoundUsed by:206 211
Symbol 206 MovieClip {StarSplash_OML_fla.1_son_needPractice_333}Uses:205Used by:211
Symbol 207 SoundUsed by:208 211
Symbol 208 MovieClip {StarSplash_OML_fla.1_son_gameOver_334}Uses:207Used by:211
Symbol 209 SoundUsed by:210 211
Symbol 210 MovieClip {StarSplash_OML_fla.1_son_zonePassed_335}Uses:209Used by:211
Symbol 211 MovieClip {sonMC_clip}Uses:11 184 186 188 190 192 196 198 200 202 204 206 208 210 183 185 187 189 191 193 194 195 197 199 201 203 205 207 209
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClipUses:212Used by:218
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClipUses:214Used by:218
Symbol 216 GraphicUsed by:217
Symbol 217 MovieClipUses:216Used by:218
Symbol 218 MovieClipUses:213 215 217Used by:219 319
Symbol 219 MovieClipUses:218Used by:220
Symbol 220 MovieClip {EtoileTrans2}Uses:219
Symbol 221 GraphicUsed by:224
Symbol 222 GraphicUsed by:223
Symbol 223 MovieClipUses:222Used by:224
Symbol 224 MovieClip {StarSplash_OML_fla.bouee_corde_315}Uses:221 223Used by:253
Symbol 225 GraphicUsed by:248
Symbol 226 FontUsed by:227 250 397 725 726
Symbol 227 EditableTextUses:226Used by:228
Symbol 228 MovieClip {StarSplash_OML_fla.bouee_drapeau_level_319}Uses:227Used by:248
Symbol 229 GraphicUsed by:248
Symbol 230 GraphicUsed by:248
Symbol 231 GraphicUsed by:248
Symbol 232 GraphicUsed by:248
Symbol 233 GraphicUsed by:248
Symbol 234 GraphicUsed by:248
Symbol 235 GraphicUsed by:248
Symbol 236 GraphicUsed by:248
Symbol 237 GraphicUsed by:248
Symbol 238 GraphicUsed by:248
Symbol 239 GraphicUsed by:248
Symbol 240 GraphicUsed by:248
Symbol 241 GraphicUsed by:248
Symbol 242 GraphicUsed by:248
Symbol 243 GraphicUsed by:248
Symbol 244 GraphicUsed by:248
Symbol 245 GraphicUsed by:248
Symbol 246 GraphicUsed by:248
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClip {StarSplash_OML_fla.bouee_drapeau_318}Uses:225 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247Used by:252
Symbol 249 GraphicUsed by:252
Symbol 250 EditableTextUses:226Used by:252
Symbol 251 GraphicUsed by:252
Symbol 252 MovieClip {StarSplash_OML_fla.bouee_tete_317}Uses:248 249 250 251Used by:253
Symbol 253 MovieClip {StarSplash_OML_fla.bouee_g_314}Uses:224 252Used by:254
Symbol 254 MovieClip {Bouée}Uses:253
Symbol 255 MovieClipUses:138Used by:310 503 524 532
Symbol 256 GraphicUsed by:271 308
Symbol 257 GraphicUsed by:271
Symbol 258 GraphicUsed by:259 308
Symbol 259 MovieClipUses:258Used by:271
Symbol 260 GraphicUsed by:271
Symbol 261 GraphicUsed by:271
Symbol 262 GraphicUsed by:271
Symbol 263 GraphicUsed by:271
Symbol 264 GraphicUsed by:271
Symbol 265 GraphicUsed by:271
Symbol 266 GraphicUsed by:271
Symbol 267 GraphicUsed by:271
Symbol 268 GraphicUsed by:271
Symbol 269 GraphicUsed by:271
Symbol 270 GraphicUsed by:271
Symbol 271 MovieClipUses:256 257 259 260 261 262 263 264 265 266 267 268 269 270Used by:309
Symbol 272 GraphicUsed by:308
Symbol 273 GraphicUsed by:308
Symbol 274 GraphicUsed by:308
Symbol 275 GraphicUsed by:308
Symbol 276 GraphicUsed by:308
Symbol 277 GraphicUsed by:308
Symbol 278 GraphicUsed by:308
Symbol 279 GraphicUsed by:308
Symbol 280 GraphicUsed by:308
Symbol 281 GraphicUsed by:308
Symbol 282 GraphicUsed by:308
Symbol 283 GraphicUsed by:308
Symbol 284 GraphicUsed by:308
Symbol 285 GraphicUsed by:308
Symbol 286 GraphicUsed by:308
Symbol 287 GraphicUsed by:308
Symbol 288 GraphicUsed by:308
Symbol 289 GraphicUsed by:308
Symbol 290 GraphicUsed by:308
Symbol 291 GraphicUsed by:303
Symbol 292 GraphicUsed by:303
Symbol 293 GraphicUsed by:303
Symbol 294 GraphicUsed by:303
Symbol 295 GraphicUsed by:303
Symbol 296 GraphicUsed by:303
Symbol 297 GraphicUsed by:303
Symbol 298 GraphicUsed by:303
Symbol 299 GraphicUsed by:303
Symbol 300 GraphicUsed by:303
Symbol 301 GraphicUsed by:303
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:291 292 293 294 295 296 297 298 299 300 301 302Used by:308
Symbol 304 GraphicUsed by:308
Symbol 305 GraphicUsed by:308
Symbol 306 GraphicUsed by:308
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClip {StarSplash_OML_fla.meduse_spring_311}Uses:256 272 258 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 303 304 305 306 307Used by:309
Symbol 309 MovieClip {StarSplash_OML_fla.meduse_clip_308}Uses:271 308Used by:310
Symbol 310 MovieClip {Meduse}Uses:255 309
Symbol 311 GraphicUsed by:312
Symbol 312 MovieClipUses:311Used by:317
Symbol 313 GraphicUsed by:314
Symbol 314 MovieClipUses:313Used by:317
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:315Used by:317
Symbol 317 MovieClipUses:312 314 316Used by:318 320 511 519 870
Symbol 318 MovieClip {Espace}Uses:317
Symbol 319 MovieClip {EtoileTrans}Uses:218
Symbol 320 MovieClip {EtoileJaune}Uses:317
Symbol 321 GraphicUsed by:336
Symbol 322 GraphicUsed by:336
Symbol 323 GraphicUsed by:336
Symbol 324 GraphicUsed by:336
Symbol 325 GraphicUsed by:336
Symbol 326 GraphicUsed by:336
Symbol 327 GraphicUsed by:336
Symbol 328 GraphicUsed by:336
Symbol 329 GraphicUsed by:336
Symbol 330 GraphicUsed by:336
Symbol 331 GraphicUsed by:336
Symbol 332 GraphicUsed by:336
Symbol 333 GraphicUsed by:336
Symbol 334 GraphicUsed by:336
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClip {StarSplash_OML_fla.splash_298}Uses:321 322 323 324 325 326 327 328 329 330 331 332 333 334 335Used by:337 342
Symbol 337 MovieClip {TiSplash1}Uses:336
Symbol 338 GraphicUsed by:339
Symbol 339 MovieClipUses:338Used by:340
Symbol 340 MovieClip {StarSplash_OML_fla.bulle_296}Uses:339Used by:341
Symbol 341 MovieClip {StarSplash_OML_fla.bulle_c_295}Uses:340Used by:342
Symbol 342 MovieClip {Splash1}Uses:341 336
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClipUses:343Used by:345
Symbol 345 MovieClipUses:344Used by:346
Symbol 346 MovieClip {StarSplash_OML_fla.sonar_clip_grossi_291}Uses:345Used by:347
Symbol 347 MovieClip {Sonar}Uses:346
Symbol 348 MovieClip {spill.localisation.LocalizedTextField}Uses:134Used by:510 515 523 531 554 555 556 557 559 563 572 573 575 577 728 729 765 768 771 774 795 841 843 845 847 859 860 868 869 872 873 874 875 883 884 896 897 900 901 903 904 907 908 912 913 916 917 922 923 927 929 931 934 935 936
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClipUses:349Used by:Timeline
Symbol 351 GraphicUsed by:Timeline
Symbol 352 GraphicUsed by:362
Symbol 353 ShapeTweeningUsed by:362
Symbol 354 GraphicUsed by:359
Symbol 355 GraphicUsed by:359
Symbol 356 GraphicUsed by:357
Symbol 357 MovieClipUses:356Used by:358
Symbol 358 MovieClip {StarSplash_OML_fla.preloader_barre_tite_c_5}Uses:357Used by:359
Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4}Uses:354 355 358Used by:362
Symbol 360 GraphicUsed by:362
Symbol 361 GraphicUsed by:362
Symbol 362 MovieClip {StarSplash_OML_fla.preloader_3}Uses:352 353 359 360 361Used by:389
Symbol 363 GraphicUsed by:364
Symbol 364 MovieClipUses:363Used by:389
Symbol 365 GraphicUsed by:375
Symbol 366 FontUsed by:367 368 369 370 371 372 373 374 400 596 597 599 600 602 603 604 605 606 609 610 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 631 632
Symbol 367 TextUses:366Used by:375
Symbol 368 TextUses:366Used by:375
Symbol 369 TextUses:366Used by:375
Symbol 370 TextUses:366Used by:375
Symbol 371 TextUses:366Used by:375
Symbol 372 TextUses:366Used by:375
Symbol 373 TextUses:366Used by:375
Symbol 374 TextUses:366Used by:375
Symbol 375 MovieClipUses:365 367 368 369 370 371 372 373 374Used by:389 520
Symbol 376 FontUsed by:377 397 504 571 767 770 773 775 776 778 781 784 787 790 799 802 805 808 829 830 831 832 833 834 836
Symbol 377 TextUses:376Used by:389
Symbol 378 GraphicUsed by:389
Symbol 379 MovieClipUses:144Used by:389
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:380Used by:388 511 564
Symbol 382 GraphicUsed by:388 564
Symbol 383 FontUsed by:384 396 727 730
Symbol 384 TextUses:383Used by:388
Symbol 385 GraphicUsed by:388 511 564
Symbol 386 GraphicUsed by:388 511 564
Symbol 387 GraphicUsed by:388 511 564
Symbol 388 MovieClip {StarSplash_OML_fla.menu_btnStart_10}Uses:381 382 384 385 386 387Used by:389
Symbol 389 MovieClip {StarSplash_OML_fla.preloader_c_2}Uses:362 364 375 377 378 379 388Used by:Timeline
Symbol 390 EditableTextUses:175 392Used by:Timeline
Symbol 391 EditableTextUses:142 394Used by:Timeline
Symbol 392 FontUsed by:390 393 406 920 924
Symbol 393 EditableTextUses:175 392Used by:Timeline
Symbol 394 FontUsed by:391 395 410 434 435 436 437
Symbol 395 EditableTextUses:142 394Used by:Timeline
Symbol 396 EditableTextUses:383Used by:Timeline
Symbol 397 EditableTextUses:226 376Used by:Timeline
Symbol 398 FontUsed by:399 558 560 561
Symbol 399 EditableTextUses:398Used by:Timeline
Symbol 400 EditableTextUses:366Used by:Timeline
Symbol 401 Sound {mus_Menu}Used by:Timeline
Symbol 402 Sound {mus_lvl1}Used by:Timeline
Symbol 403 Sound {mus_lvl2}Used by:Timeline
Symbol 404 Sound {mus_lvl3}Used by:Timeline
Symbol 405 GraphicUsed by:Timeline
Symbol 406 TextUses:392Used by:407
Symbol 407 MovieClipUses:406Used by:Timeline
Symbol 408 GraphicUsed by:409
Symbol 409 ButtonUses:408Used by:432
Symbol 410 TextUses:394Used by:431
Symbol 411 FontUsed by:412 413 414 415 416 417 418 419
Symbol 412 TextUses:411Used by:431
Symbol 413 TextUses:411Used by:431
Symbol 414 TextUses:411Used by:431
Symbol 415 TextUses:411Used by:431
Symbol 416 TextUses:411Used by:431
Symbol 417 TextUses:411Used by:431
Symbol 418 TextUses:411Used by:431
Symbol 419 TextUses:411Used by:431
Symbol 420 GraphicUsed by:431
Symbol 421 GraphicUsed by:431
Symbol 422 GraphicUsed by:431
Symbol 423 GraphicUsed by:431
Symbol 424 GraphicUsed by:431
Symbol 425 GraphicUsed by:431
Symbol 426 GraphicUsed by:431
Symbol 427 GraphicUsed by:431
Symbol 428 GraphicUsed by:431
Symbol 429 GraphicUsed by:431
Symbol 430 GraphicUsed by:431
Symbol 431 MovieClip {StarSplash_OML_fla.snailsanimation_15}Uses:410 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430Used by:432
Symbol 432 MovieClip {StarSplash_OML_fla.SnailsAnimation_splash_13}Uses:144 409 431Used by:Timeline
Symbol 433 ButtonUsed by:439
Symbol 434 EditableTextUses:394Used by:438
Symbol 435 EditableTextUses:394Used by:438
Symbol 436 EditableTextUses:394Used by:438
Symbol 437 EditableTextUses:394Used by:438
Symbol 438 MovieClip {StarSplash_OML_fla.qualitee_clip_text_18}Uses:434 435 436 437Used by:439
Symbol 439 MovieClip {StarSplash_OML_fla.qualitee_clip_16}Uses:433 438Used by:Timeline
Symbol 440 MovieClipUses:171Used by:Timeline
Symbol 441 GraphicUsed by:Timeline
Symbol 442 GraphicUsed by:500
Symbol 443 GraphicUsed by:444
Symbol 444 MovieClipUses:443Used by:450
Symbol 445 GraphicUsed by:446
Symbol 446 MovieClipUses:445Used by:450
Symbol 447 GraphicUsed by:450
Symbol 448 GraphicUsed by:450
Symbol 449 GraphicUsed by:450
Symbol 450 MovieClip {StarSplash_OML_fla.bg_nuages_lv1_22}Uses:444 446 447 448 449Used by:451 693
Symbol 451 MovieClipUses:450Used by:500
Symbol 452 GraphicUsed by:453
Symbol 453 MovieClipUses:452Used by:454
Symbol 454 MovieClipUses:453Used by:458 500 635 723
Symbol 455 GraphicUsed by:458
Symbol 456 GraphicUsed by:458
Symbol 457 GraphicUsed by:458
Symbol 458 MovieClip {StarSplash_OML_fla.eau_bg_25}Uses:454 455 456 457Used by:500 635 723
Symbol 459 GraphicUsed by:460
Symbol 460 MovieClip {StarSplash_OML_fla.hitBox_30}Uses:459Used by:469 491 562
Symbol 461 GraphicUsed by:469
Symbol 462 GraphicUsed by:469
Symbol 463 GraphicUsed by:469
Symbol 464 GraphicUsed by:469
Symbol 465 GraphicUsed by:469
Symbol 466 GraphicUsed by:469
Symbol 467 GraphicUsed by:469
Symbol 468 GraphicUsed by:469
Symbol 469 MovieClip {StarSplash_OML_fla.dauphin_nage_29}Uses:460 461 462 463 464 465 466 467 468Used by:492
Symbol 470 GraphicUsed by:471
Symbol 471 MovieClipUses:470Used by:491
Symbol 472 GraphicUsed by:473
Symbol 473 MovieClipUses:472Used by:491
Symbol 474 GraphicUsed by:475
Symbol 475 MovieClipUses:474Used by:491
Symbol 476 GraphicUsed by:477
Symbol 477 MovieClipUses:476Used by:491
Symbol 478 GraphicUsed by:479
Symbol 479 MovieClipUses:478Used by:491
Symbol 480 GraphicUsed by:481
Symbol 481 MovieClipUses:480Used by:491
Symbol 482 GraphicUsed by:483
Symbol 483 MovieClipUses:482Used by:491
Symbol 484 GraphicUsed by:491
Symbol 485 GraphicUsed by:491
Symbol 486 GraphicUsed by:487
Symbol 487 MovieClipUses:486Used by:491
Symbol 488 GraphicUsed by:491
Symbol 489 GraphicUsed by:491
Symbol 490 GraphicUsed by:491
Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31}Uses:460 471 473 475 477 479 481 483 484 485 487 488 489 490Used by:492
Symbol 492 MovieClip {StarSplash_OML_fla.dauphin_28}Uses:469 491Used by:500 635 723
Symbol 493 GraphicUsed by:500 695
Symbol 494 GraphicUsed by:497
Symbol 495 GraphicUsed by:497
Symbol 496 GraphicUsed by:497
Symbol 497 MovieClip {StarSplash_OML_fla.ligne_eau_41}Uses:494 495 496Used by:498
Symbol 498 MovieClip {StarSplash_OML_fla.ligne_eau_c_40}Uses:497Used by:500 635 723
Symbol 499 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_moves_42}Used by:500
Symbol 500 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_20}Uses:442 451 458 492 454 493 498 499Used by:Timeline
Symbol 501 TextUses:142Used by:503
Symbol 502 TextUses:142Used by:503
Symbol 503 MovieClip {StarSplash_OML_fla.copyright_43}Uses:255 501 502Used by:Timeline
Symbol 504 TextUses:376Used by:505
Symbol 505 MovieClipUses:504Used by:520
Symbol 506 BitmapUsed by:507
Symbol 507 GraphicUses:506Used by:508
Symbol 508 MovieClipUses:507Used by:520
Symbol 509 GraphicUsed by:511
Symbol 510 MovieClip {StarSplash_OML_fla.menu_btnPlayText_49}Uses:348Used by:511
Symbol 511 MovieClip {StarSplash_OML_fla.menu_btnPlay_48}Uses:381 509 510 385 386 317 387Used by:520
Symbol 512 GraphicUsed by:513
Symbol 513 MovieClipUses:512Used by:519 574 576 578 844 846 930 932
Symbol 514 GraphicUsed by:519 574 576 578 844 846 930 932
Symbol 515 MovieClip {StarSplash_OML_fla.menu_btnCreditsText_58}Uses:348Used by:519
Symbol 516 GraphicUsed by:519 574 576 578 844 846 930 932
Symbol 517 GraphicUsed by:519 574 576 578 844 846 930 932
Symbol 518 GraphicUsed by:519 574 576 578 844 846 930 932
Symbol 519 MovieClip {StarSplash_OML_fla.menu_btnCredits_56}Uses:513 514 515 516 517 317 518Used by:520
Symbol 520 MovieClip {StarSplash_OML_fla.menu_menu_45}Uses:505 508 375 511 519Used by:Timeline
Symbol 521 GraphicUsed by:522
Symbol 522 MovieClipUses:521Used by:528
Symbol 523 MovieClip {StarSplash_OML_fla.btn_music_texte_62}Uses:348Used by:524
Symbol 524 MovieClip {StarSplash_OML_fla.btn_music_61}Uses:255 523Used by:528
Symbol 525 GraphicUsed by:526
Symbol 526 MovieClipUses:525Used by:528 533
Symbol 527 GraphicUsed by:528 533
Symbol 528 MovieClip {StarSplash_OML_fla.musique_c_59}Uses:522 524 526 527Used by:Timeline
Symbol 529 GraphicUsed by:530
Symbol 530 MovieClipUses:529Used by:533
Symbol 531 MovieClip {StarSplash_OML_fla.btn_sons_texte_67}Uses:348Used by:532
Symbol 532 MovieClip {StarSplash_OML_fla.btn_sons_66}Uses:255 531Used by:533
Symbol 533 MovieClip {StarSplash_OML_fla.son_c_64}Uses:530 532 526 527Used by:Timeline
Symbol 534 GraphicUsed by:552
Symbol 535 GraphicUsed by:552
Symbol 536 GraphicUsed by:552
Symbol 537 GraphicUsed by:552
Symbol 538 GraphicUsed by:552
Symbol 539 GraphicUsed by:552
Symbol 540 GraphicUsed by:552
Symbol 541 GraphicUsed by:552
Symbol 542 GraphicUsed by:552
Symbol 543 GraphicUsed by:552
Symbol 544 GraphicUsed by:552
Symbol 545 GraphicUsed by:552
Symbol 546 GraphicUsed by:552
Symbol 547 GraphicUsed by:552
Symbol 548 GraphicUsed by:552
Symbol 549 GraphicUsed by:552
Symbol 550 GraphicUsed by:552
Symbol 551 GraphicUsed by:552
Symbol 552 MovieClip {StarSplash_OML_fla.fondu_fadeIn_68}Uses:534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551Used by:Timeline
Symbol 553 GraphicUsed by:566
Symbol 554 MovieClip {StarSplash_OML_fla.menu_creditsDevText_71}Uses:348Used by:566
Symbol 555 MovieClip {StarSplash_OML_fla.menu_creditsSponsorText_72}Uses:348Used by:566
Symbol 556 MovieClip {StarSplash_OML_fla.menu_creditsMusicText_73}Uses:348Used by:566
Symbol 557 MovieClip {StarSplash_OML_fla.menu_creditsSoundsText_74}Uses:348Used by:566
Symbol 558 TextUses:398Used by:566
Symbol 559 MovieClip {StarSplash_OML_fla.menu_creditsText_75}Uses:348Used by:566
Symbol 560 TextUses:398Used by:562
Symbol 561 TextUses:398Used by:562
Symbol 562 MovieClip {StarSplash_OML_fla.menu_credits_snails_76}Uses:460 560 561Used by:566
Symbol 563 MovieClip {StarSplash_OML_fla.menu_btnBackText_78}Uses:348Used by:564
Symbol 564 MovieClip {StarSplash_OML_fla.menu_btnBack_77}Uses:381 382 563 385 386 387Used by:566
Symbol 565 GraphicUsed by:566 579 766 870 928
Symbol 566 MovieClip {StarSplash_OML_fla.menu_credits_70}Uses:553 554 555 556 557 558 559 562 564 565Used by:567
Symbol 567 MovieClip {StarSplash_OML_fla.menu_credits_c_69}Uses:566Used by:Timeline
Symbol 568 GraphicUsed by:579
Symbol 569 GraphicUsed by:579
Symbol 570 GraphicUsed by:579
Symbol 571 EditableTextUses:376Used by:579
Symbol 572 MovieClip {StarSplash_OML_fla.menu_result2Text_81}Uses:348Used by:579
Symbol 573 MovieClip {StarSplash_OML_fla.menu_btnMenuText_83}Uses:348Used by:574
Symbol 574 MovieClip {StarSplash_OML_fla.menu_btnMenu_82}Uses:513 514 573 516 517 518Used by:579
Symbol 575 MovieClip {StarSplash_OML_fla.menu_btnTryAgainText_85}Uses:348Used by:576
Symbol 576 MovieClip {StarSplash_OML_fla.menu_btnTryAgain_84}Uses:513 514 575 516 517 518Used by:579
Symbol 577 MovieClip {StarSplash_OML_fla.menu_btnSubmitText_87}Uses:348Used by:578
Symbol 578 MovieClip {StarSplash_OML_fla.menu_btnSubmit_86}Uses:513 514 577 516 517 518Used by:579
Symbol 579 MovieClip {StarSplash_OML_fla.menu_result2_80}Uses:568 569 570 571 572 574 576 565 578Used by:580
Symbol 580 MovieClip {StarSplash_OML_fla.menu_result_c_79}Uses:579Used by:Timeline
Symbol 581 GraphicUsed by:591 642
Symbol 582 GraphicUsed by:583
Symbol 583 MovieClipUses:582Used by:591 642
Symbol 584 GraphicUsed by:585
Symbol 585 MovieClip {StarSplash_OML_fla.etoile_clip_93}Uses:584Used by:586
Symbol 586 MovieClipUses:585Used by:587 590 938
Symbol 587 MovieClipUses:586Used by:591 642
Symbol 588 GraphicUsed by:589
Symbol 589 MovieClipUses:588Used by:591 642
Symbol 590 MovieClipUses:586Used by:591 642
Symbol 591 MovieClip {StarSplash_OML_fla.ciel_fin_89}Uses:581 583 587 589 590Used by:635
Symbol 592 GraphicUsed by:635 695
Symbol 593 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_moves_FIN_96}Used by:635
Symbol 594 GraphicUsed by:634
Symbol 595 GraphicUsed by:611
Symbol 596 TextUses:366Used by:611
Symbol 597 TextUses:366Used by:611
Symbol 598 FontUsed by:599 600 603 617
Symbol 599 TextUses:366 598Used by:611
Symbol 600 TextUses:366 598Used by:611
Symbol 601 GraphicUsed by:611
Symbol 602 TextUses:366Used by:611
Symbol 603 TextUses:366 598Used by:611
Symbol 604 TextUses:366Used by:611
Symbol 605 TextUses:366Used by:611
Symbol 606 TextUses:366Used by:611
Symbol 607 FontUsed by:608 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 906 909
Symbol 608 TextUses:607Used by:611
Symbol 609 TextUses:366Used by:611
Symbol 610 TextUses:366Used by:611
Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98}Uses:595 596 597 599 600 601 602 603 604 605 606 608 609 610Used by:634
Symbol 612 TextUses:607 366Used by:633
Symbol 613 TextUses:366 607Used by:633
Symbol 614 TextUses:607 366Used by:633
Symbol 615 TextUses:366 607Used by:633
Symbol 616 TextUses:607 366Used by:633
Symbol 617 TextUses:366 598 607Used by:633
Symbol 618 TextUses:607 366Used by:633
Symbol 619 TextUses:366 607Used by:633
Symbol 620 TextUses:607 366Used by:633
Symbol 621 TextUses:366 607Used by:633
Symbol 622 TextUses:607 366Used by:633
Symbol 623 TextUses:366 607Used by:633
Symbol 624 TextUses:607 366Used by:633
Symbol 625 TextUses:607 366Used by:633
Symbol 626 TextUses:366 607Used by:633
Symbol 627 TextUses:607 366Used by:633
Symbol 628 TextUses:366 607Used by:633
Symbol 629 TextUses:607Used by:633
Symbol 630 TextUses:607Used by:633
Symbol 631 TextUses:366 607Used by:633
Symbol 632 TextUses:366 607Used by:633
Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99}Uses:612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632Used by:634
Symbol 634 MovieClip {StarSplash_OML_fla.congratulations_clip_97}Uses:594 611 633Used by:635
Symbol 635 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_fin_88}Uses:591 458 492 454 592 498 593 634Used by:Timeline
Symbol 636 GraphicUsed by:637
Symbol 637 MovieClipUses:636Used by:638
Symbol 638 MovieClipUses:637Used by:639 939
Symbol 639 MovieClip {StarSplash_OML_fla.trans_etoile_fin_100}Uses:638Used by:Timeline
Symbol 640 GraphicUsed by:642
Symbol 641 GraphicUsed by:642
Symbol 642 MovieClip {StarSplash_OML_fla.ciel_104}Uses:640 641 581 583 587 589 590Used by:723
Symbol 643 GraphicUsed by:644
Symbol 644 MovieClipUses:643Used by:647
Symbol 645 GraphicUsed by:646
Symbol 646 MovieClipUses:645Used by:647
Symbol 647 MovieClip {StarSplash_OML_fla.bg2_lv1_106}Uses:644 646Used by:693
Symbol 648 GraphicUsed by:649
Symbol 649 MovieClipUses:648Used by:652
Symbol 650 GraphicUsed by:651
Symbol 651 MovieClipUses:650Used by:652
Symbol 652 MovieClip {StarSplash_OML_fla.bg3_lv1_109}Uses:649 651Used by:693
Symbol 653 GraphicUsed by:654
Symbol 654 MovieClipUses:653Used by:657
Symbol 655 GraphicUsed by:656
Symbol 656 MovieClipUses:655Used by:657 660
Symbol 657 MovieClip {StarSplash_OML_fla.bg_nuages_lv2a_c_113}Uses:654 656Used by:661
Symbol 658 GraphicUsed by:659
Symbol 659 MovieClipUses:658Used by:660 661
Symbol 660 MovieClip {StarSplash_OML_fla.bg_nuages_lv2c_c_117}Uses:656 659Used by:661
Symbol 661 MovieClip {StarSplash_OML_fla.bg_nuages_lv2_112}Uses:657 659 660Used by:693
Symbol 662 GraphicUsed by:663
Symbol 663 MovieClipUses:662Used by:671
Symbol 664 GraphicUsed by:670
Symbol 665 GraphicUsed by:666
Symbol 666 MovieClipUses:665Used by:670
Symbol 667 GraphicUsed by:670
Symbol 668 GraphicUsed by:669
Symbol 669 MovieClipUses:668Used by:670
Symbol 670 MovieClipUses:664 666 667 669Used by:671
Symbol 671 MovieClip {StarSplash_OML_fla.bg2_lv2_118}Uses:663 670Used by:693
Symbol 672 GraphicUsed by:673
Symbol 673 MovieClipUses:672Used by:678
Symbol 674 GraphicUsed by:675
Symbol 675 MovieClipUses:674Used by:678
Symbol 676 GraphicUsed by:677
Symbol 677 MovieClipUses:676Used by:678
Symbol 678 MovieClip {StarSplash_OML_fla.bg3_lv2_123}Uses:673 675 677Used by:693
Symbol 679 GraphicUsed by:680
Symbol 680 MovieClipUses:679Used by:683
Symbol 681 GraphicUsed by:682
Symbol 682 MovieClipUses:681Used by:683
Symbol 683 MovieClip {StarSplash_OML_fla.bg2_lv3_127}Uses:680 682Used by:693
Symbol 684 GraphicUsed by:685
Symbol 685 MovieClipUses:684Used by:692
Symbol 686 GraphicUsed by:687
Symbol 687 MovieClipUses:686Used by:692
Symbol 688 GraphicUsed by:689
Symbol 689 MovieClipUses:688Used by:692
Symbol 690 GraphicUsed by:691
Symbol 691 MovieClipUses:690Used by:692
Symbol 692 MovieClip {StarSplash_OML_fla.bg3_lv3_130}Uses:685 687 689 691Used by:693
Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105}Uses:450 647 652 661 671 678 683 692Used by:723
Symbol 694 GraphicUsed by:695
Symbol 695 MovieClip {StarSplash_OML_fla.eau_alpha_135}Uses:493 694 592Used by:723
Symbol 696 MovieClip {StarSplash_OML_fla.1_tableau1_136}Used by:723
Symbol 697 MovieClip {StarSplash_OML_fla.1_tableau2_137}Used by:723
Symbol 698 MovieClip {StarSplash_OML_fla.1_tableau4_138}Used by:723
Symbol 699 MovieClip {StarSplash_OML_fla.1_tableau5_139}Used by:723
Symbol 700 MovieClip {StarSplash_OML_fla.1_tableau8_140}Used by:723
Symbol 701 MovieClip {StarSplash_OML_fla.1_tableau6_141}Used by:723
Symbol 702 MovieClip {StarSplash_OML_fla.1_tableau7_142}Used by:723
Symbol 703 MovieClip {StarSplash_OML_fla.1_tableau3_143}Used by:723
Symbol 704 MovieClip {StarSplash_OML_fla.1_tableau9_144}Used by:723
Symbol 705 MovieClip {StarSplash_OML_fla.1_tableau10_145}Used by:723
Symbol 706 MovieClip {StarSplash_OML_fla.1_tableau11_146}Used by:723
Symbol 707 MovieClip {StarSplash_OML_fla.1_tableau12_147}Used by:723
Symbol 708 MovieClip {StarSplash_OML_fla.1_tableau13_148}Used by:723
Symbol 709 MovieClip {StarSplash_OML_fla.1_tableau14_149}Used by:723
Symbol 710 MovieClip {StarSplash_OML_fla.1_tableau15_150}Used by:723
Symbol 711 MovieClip {StarSplash_OML_fla.1_tableau16_151}Used by:723
Symbol 712 MovieClip {StarSplash_OML_fla.1_tableau17_152}Used by:723
Symbol 713 MovieClip {StarSplash_OML_fla.1_tableau18_153}Used by:723
Symbol 714 MovieClip {StarSplash_OML_fla.1_tableau19_154}Used by:723
Symbol 715 MovieClip {StarSplash_OML_fla.1_tableau20_155}Used by:723
Symbol 716 MovieClip {StarSplash_OML_fla.1_tableau_x1_156}Used by:723
Symbol 717 MovieClip {StarSplash_OML_fla.1_tableau_x2_157}Used by:723
Symbol 718 MovieClip {StarSplash_OML_fla.1_tableau_x3_158}Used by:723
Symbol 719 MovieClip {StarSplash_OML_fla.1_tableau_x3b_159}Used by:723
Symbol 720 MovieClip {StarSplash_OML_fla.1_tableau_x4b_160}Used by:723
Symbol 721 GraphicUsed by:722
Symbol 722 MovieClipUses:721Used by:723
Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103}Uses:642 693 458 492 454 695 498 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 722Used by:Timeline
Symbol 724 GraphicUsed by:941
Symbol 725 EditableTextUses:226Used by:941
Symbol 726 EditableTextUses:226Used by:941
Symbol 727 TextUses:383Used by:941
Symbol 728 MovieClip {StarSplash_OML_fla.menuJeu_scoreText_163}Uses:348Used by:941
Symbol 729 MovieClip {StarSplash_OML_fla.menuJeu_starsText_164}Uses:348Used by:941
Symbol 730 TextUses:383Used by:941
Symbol 731 GraphicUsed by:732
Symbol 732 ButtonUses:731Used by:941
Symbol 733 GraphicUsed by:736
Symbol 734 GraphicUsed by:736
Symbol 735 GraphicUsed by:736
Symbol 736 MovieClip {StarSplash_OML_fla.menu_barre_fonds_167}Uses:733 734 735Used by:749
Symbol 737 GraphicUsed by:738
Symbol 738 MovieClipUses:737Used by:749
Symbol 739 GraphicUsed by:743
Symbol 740 GraphicUsed by:743
Symbol 741 GraphicUsed by:742
Symbol 742 MovieClipUses:741Used by:743
Symbol 743 MovieClipUses:739 740 742 171Used by:749
Symbol 744 GraphicUsed by:749 794
Symbol 745 GraphicUsed by:746
Symbol 746 MovieClipUses:745Used by:749
Symbol 747 GraphicUsed by:749
Symbol 748 MovieClip {StarSplash_OML_fla.menu_barre_calculateur_172}Used by:749
Symbol 749 MovieClip {StarSplash_OML_fla.menu_barre_166}Uses:736 738 743 744 746 747 748Used by:941
Symbol 750 GraphicUsed by:941
Symbol 751 ButtonUses:138Used by:755
Symbol 752 GraphicUsed by:755
Symbol 753 GraphicUsed by:755 758
Symbol 754 GraphicUsed by:755 758
Symbol 755 MovieClip {StarSplash_OML_fla.musique_c2_173}Uses:751 752 753 754Used by:941
Symbol 756 ButtonUses:138Used by:758
Symbol 757 GraphicUsed by:758
Symbol 758 MovieClip {StarSplash_OML_fla.son_c2_175}Uses:756 757 753 754Used by:941
Symbol 759 GraphicUsed by:760
Symbol 760 MovieClipUses:759Used by:761
Symbol 761 MovieClip {StarSplash_OML_fla.noir_alpha_clip_177}Uses:760Used by:941
Symbol 762 GraphicUsed by:766
Symbol 763 GraphicUsed by:766
Symbol 764 GraphicUsed by:766 870
Symbol 765 MovieClip {StarSplash_OML_fla.menu_resultTitreText_182}Uses:348Used by:766
Symbol 766 MovieClip {StarSplash_OML_fla.menu_result_181}Uses:762 763 764 765 565Used by:865
Symbol 767 EditableTextUses:376Used by:769
Symbol 768 MovieClip {StarSplash_OML_fla.pres_result_l1_starsText_184}Uses:348Used by:769
Symbol 769 MovieClip {StarSplash_OML_fla.pres_result_l1_183}Uses:767 768Used by:865
Symbol 770 EditableTextUses:376Used by:772
Symbol 771 MovieClip {StarSplash_OML_fla.pres_result_l1_neededText_186}Uses:348Used by:772
Symbol 772 MovieClip {StarSplash_OML_fla.pres_result_l2_185}Uses:770 771Used by:865
Symbol 773 EditableTextUses:376Used by:777
Symbol 774 MovieClip {StarSplash_OML_fla.pres_result_l1_collectedText_188}Uses:348Used by:777
Symbol 775 EditableTextUses:376Used by:777
Symbol 776 EditableTextUses:376Used by:777
Symbol 777 MovieClip {StarSplash_OML_fla.pres_result_l3_187}Uses:773 774 775 776Used by:865
Symbol 778 TextUses:376Used by:779
Symbol 779 MovieClipUses:778Used by:780
Symbol 780 MovieClip {StarSplash_OML_fla.menu_pres_S_c_192}Uses:779Used by:793
Symbol 781 TextUses:376Used by:782
Symbol 782 MovieClipUses:781Used by:783
Symbol 783 MovieClip {StarSplash_OML_fla.menu_pres_U_c_194}Uses:782Used by:793
Symbol 784 TextUses:376Used by:785
Symbol 785 MovieClipUses:784Used by:786
Symbol 786 MovieClip {StarSplash_OML_fla.menu_pres_C_c_196}Uses:785Used by:793 828
Symbol 787 TextUses:376Used by:788
Symbol 788 MovieClipUses:787Used by:789
Symbol 789 MovieClip {StarSplash_OML_fla.menu_pres_E_c_198}Uses:788Used by:793 828
Symbol 790 TextUses:376Used by:791
Symbol 791 MovieClipUses:790Used by:792
Symbol 792 MovieClip {StarSplash_OML_fla.menu_pres__200}Uses:791Used by:793 828
Symbol 793 MovieClip {StarSplash_OML_fla.menu_pres_passed_191}Uses:780 783 786 789 792Used by:798
Symbol 794 MovieClipUses:744Used by:797 839
Symbol 795 MovieClip {StarSplash_OML_fla.menu_pres_passed_sousTitreText_205}Uses:348Used by:796
Symbol 796 MovieClipUses:795Used by:797
Symbol 797 MovieClip {StarSplash_OML_fla.menu_pres_passed2_202}Uses:794 796Used by:798
Symbol 798 MovieClip {StarSplash_OML_fla.menu_pres_passed_c_190}Uses:793 797Used by:864
Symbol 799 TextUses:376Used by:800
Symbol 800 MovieClipUses:799Used by:801
Symbol 801 MovieClip {StarSplash_OML_fla.menu_pres_P_c_208}Uses:800Used by:828
Symbol 802 TextUses:376Used by:803
Symbol 803 MovieClipUses:802Used by:804
Symbol 804 MovieClip {StarSplash_OML_fla.menu_pres_R_c_210}Uses:803Used by:828
Symbol 805 TextUses:376Used by:806
Symbol 806 MovieClipUses:805Used by:807
Symbol 807 MovieClip {StarSplash_OML_fla.menu_pres_F_c_212}Uses:806Used by:828
Symbol 808 TextUses:376Used by:809
Symbol 809 MovieClipUses:808Used by:810
Symbol 810 MovieClip {StarSplash_OML_fla.menu_pres_T_c_214}Uses:809Used by:828
Symbol 811 GraphicUsed by:826
Symbol 812 GraphicUsed by:813
Symbol 813 MovieClipUses:812Used by:826
Symbol 814 GraphicUsed by:826
Symbol 815 GraphicUsed by:826
Symbol 816 GraphicUsed by:826
Symbol 817 GraphicUsed by:826
Symbol 818 GraphicUsed by:826
Symbol 819 GraphicUsed by:820
Symbol 820 MovieClipUses:819Used by:826
Symbol 821 GraphicUsed by:826
Symbol 822 GraphicUsed by:826
Symbol 823 GraphicUsed by:826
Symbol 824 GraphicUsed by:826
Symbol 825 GraphicUsed by:826
Symbol 826 MovieClip {StarSplash_OML_fla.feux_g_217}Uses:811 813 814 815 816 817 818 820 821 822 823 824 825Used by:827
Symbol 827 MovieClip {StarSplash_OML_fla.feux_c_216}Uses:826Used by:828 839
Symbol 828 MovieClip {StarSplash_OML_fla.menu_pres_perfect_207}Uses:801 789 804 807 786 810 792 827Used by:840
Symbol 829 TextUses:376Used by:837
Symbol 830 TextUses:376Used by:837
Symbol 831 TextUses:376Used by:837
Symbol 832 TextUses:376Used by:837
Symbol 833 TextUses:376Used by:837
Symbol 834 TextUses:376Used by:837
Symbol 835 TextUses:175Used by:837
Symbol 836 TextUses:376Used by:837
Symbol 837 MovieClip {StarSplash_OML_fla.menu_pres_perfect_sousTitreText_222}Uses:829 830 831 832 833 834 835 836Used by:838
Symbol 838 MovieClipUses:837Used by:839
Symbol 839 MovieClip {StarSplash_OML_fla.menu_pres_perfect2_220}Uses:794 838 827Used by:840
Symbol 840 MovieClip {StarSplash_OML_fla.menu_pres_perfect_c_206}Uses:828 839Used by:864
Symbol 841 MovieClip {StarSplash_OML_fla.menu_pres_gameover_text_TEXT_225}Uses:348Used by:842
Symbol 842 MovieClipUses:841Used by:858
Symbol 843 MovieClip {StarSplash_OML_fla.menu_btnContinueText_227}Uses:348Used by:844
Symbol 844 MovieClip {StarSplash_OML_fla.menu_btnContinue_226}Uses:513 514 843 516 517 518Used by:858
Symbol 845 MovieClip {StarSplash_OML_fla.menu_btnEndGameText_229}Uses:348Used by:846
Symbol 846 MovieClip {StarSplash_OML_fla.menu_btnEndGame_228}Uses:513 514 845 516 517 518Used by:858
Symbol 847 MovieClip {StarSplash_OML_fla.menu_pres_gameover_titext_230}Uses:348Used by:858
Symbol 848 GraphicUsed by:857
Symbol 849 GraphicUsed by:857
Symbol 850 GraphicUsed by:857
Symbol 851 GraphicUsed by:857
Symbol 852 GraphicUsed by:857
Symbol 853 GraphicUsed by:857
Symbol 854 GraphicUsed by:857
Symbol 855 GraphicUsed by:857
Symbol 856 GraphicUsed by:857
Symbol 857 MovieClip {StarSplash_OML_fla.fondu_fadeOut_231}Uses:848 849 850 851 852 853 854 855 856Used by:858
Symbol 858 MovieClip {StarSplash_OML_fla.menu_pres_gameover_223}Uses:842 844 846 847 857Used by:864
Symbol 859 MovieClip {StarSplash_OML_fla.menu_pres_welldone_g2_text_235}Uses:348Used by:861
Symbol 860 MovieClip {StarSplash_OML_fla.menu_pres_welldone_g2_text2_236}Uses:348Used by:861
Symbol 861 MovieClip {StarSplash_OML_fla.menu_press_welldone_g2_234}Uses:859 860Used by:862
Symbol 862 MovieClipUses:861Used by:863
Symbol 863 MovieClip {StarSplash_OML_fla.menu_pres_welldone_232}Uses:862Used by:864
Symbol 864 MovieClip {StarSplash_OML_fla.menu_pres_passed_189}Uses:798 840 858 863Used by:865
Symbol 865 MovieClip {StarSplash_OML_fla.pres_result_180}Uses:766 769 772 777 864Used by:940
Symbol 866 GraphicUsed by:870
Symbol 867 GraphicUsed by:870
Symbol 868 MovieClip {StarSplash_OML_fla.menu_levelText_239}Uses:348Used by:870
Symbol 869 MovieClip {StarSplash_OML_fla.menu_level_starsText_240}Uses:348Used by:870
Symbol 870 MovieClip {StarSplash_OML_fla.menu_level_238}Uses:866 867 764 317 868 869 565Used by:933
Symbol 871 GraphicUsed by:928
Symbol 872 MovieClip {StarSplash_OML_fla.t2_242}Uses:348Used by:928
Symbol 873 MovieClip {StarSplash_OML_fla.t5_243}Uses:348Used by:928
Symbol 874 MovieClip {StarSplash_OML_fla.t8_244}Uses:348Used by:928
Symbol 875 MovieClip {StarSplash_OML_fla.menu_moves_bg_InWaterText_245}Uses:348Used by:928
Symbol 876 GraphicUsed by:894
Symbol 877 GraphicUsed by:880 881 882
Symbol 878 GraphicUsed by:879
Symbol 879 MovieClipUses:878Used by:880 881 882
Symbol 880 MovieClip {StarSplash_OML_fla.fleche_UP_247}Uses:877 879Used by:894 899 910 915
Symbol 881 MovieClip {StarSplash_OML_fla.fleche_DOWN_249}Uses:877 879Used by:894 905 918
Symbol 882 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT_250}Uses:877 879Used by:894 902 915 918
Symbol 883 MovieClip {StarSplash_OML_fla.menu_moves_swimText2_251}Uses:348Used by:894
Symbol 884 MovieClip {StarSplash_OML_fla.menu_moves_swimText_252}Uses:348Used by:894
Symbol 885 GraphicUsed by:886
Symbol 886 MovieClip {StarSplash_OML_fla.fleche_UP2_253}Uses:885Used by:894 899 910 915
Symbol 887 GraphicUsed by:888
Symbol 888 MovieClip {StarSplash_OML_fla.fleche_DOWN2_254}Uses:887Used by:894 905 918
Symbol 889 GraphicUsed by:890
Symbol 890 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT2_255}Uses:889Used by:894 902 915 918
Symbol 891 GraphicUsed by:894
Symbol 892 FontUsed by:893
Symbol 893 TextUses:892Used by:894
Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246}Uses:876 880 881 882 883 884 886 888 890 891 893Used by:928
Symbol 895 GraphicUsed by:899 902 905 910 915 918 926
Symbol 896 MovieClip {StarSplash_OML_fla.menu_moves_doubleJumpText2_257}Uses:348Used by:899
Symbol 897 MovieClip {StarSplash_OML_fla.menu_moves_doubleJumpText_258}Uses:348Used by:899
Symbol 898 GraphicUsed by:899 902 905 910 915 918 926
Symbol 899 MovieClip {StarSplash_OML_fla.menu_moves_doubleJump_256}Uses:895 880 896 897 886 898Used by:928
Symbol 900 MovieClip {StarSplash_OML_fla.menu_moves_doubleBoostText2_260}Uses:348Used by:902
Symbol 901 MovieClip {StarSplash_OML_fla.menu_moves_boostText_261}Uses:348Used by:902
Symbol 902 MovieClip {StarSplash_OML_fla.menu_moves_boost_259}Uses:895 882 900 901 890 898Used by:928
Symbol 903 MovieClip {StarSplash_OML_fla.menu_moves_diveText2_263}Uses:348Used by:905
Symbol 904 MovieClip {StarSplash_OML_fla.menu_moves_diveText_264}Uses:348Used by:905
Symbol 905 MovieClip {StarSplash_OML_fla.menu_moves_dive_262}Uses:895 881 903 904 888 898Used by:928
Symbol 906 TextUses:607Used by:910
Symbol 907 MovieClip {StarSplash_OML_fla.menu_moves_tripleJumpText2_266}Uses:348Used by:910
Symbol 908 MovieClip {StarSplash_OML_fla.menu_moves_tripleJumpText_267}Uses:348Used by:910
Symbol 909 TextUses:607Used by:910
Symbol 910 MovieClip {StarSplash_OML_fla.menu_moves_tripleJump_265}Uses:895 880 906 907 908 886 909 898Used by:928
Symbol 911 TextUses:142Used by:915 918
Symbol 912 MovieClip {StarSplash_OML_fla.menu_moves_deadLeafText2_269}Uses:348Used by:915
Symbol 913 MovieClip {StarSplash_OML_fla.menu_moves_deadLeafText_270}Uses:348Used by:915
Symbol 914 TextUses:142Used by:915 918
Symbol 915 MovieClip {StarSplash_OML_fla.menu_moves_deadLeaf_268}Uses:895 882 880 911 912 913 890 886 914 898Used by:928
Symbol 916 MovieClip {StarSplash_OML_fla.menu_moves_roundDiveText2_272}Uses:348Used by:918
Symbol 917 MovieClip {StarSplash_OML_fla.menu_moves_RoundDiveText_273}Uses:348Used by:918
Symbol 918 MovieClip {StarSplash_OML_fla.menu_moves_roundDive_271}Uses:895 882 881 911 916 917 890 888 914 898Used by:928
Symbol 919 GraphicUsed by:921 925
Symbol 920 TextUses:392Used by:921
Symbol 921 MovieClip {StarSplash_OML_fla.fleche_SPACE_275}Uses:919 920Used by:926
Symbol 922 MovieClip {StarSplash_OML_fla.menu_moves_sonarText2_276}Uses:348Used by:926
Symbol 923 MovieClip {StarSplash_OML_fla.menu_moves_sonarText_277}Uses:348Used by:926
Symbol 924 TextUses:392Used by:925
Symbol 925 MovieClip {StarSplash_OML_fla.fleche_SPACE2_278}Uses:919 924Used by:926
Symbol 926 MovieClip {StarSplash_OML_fla.menu_moves_sonar_274}Uses:895 921 922 923 925 898Used by:928
Symbol 927 MovieClip {StarSplash_OML_fla.menu_moves_bg_titreText_279}Uses:348Used by:928
Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241}Uses:871 872 873 874 875 894 899 902 905 910 915 918 926 565 927Used by:933
Symbol 929 MovieClip {StarSplash_OML_fla.menu_btnReadyText_281}Uses:348Used by:930
Symbol 930 MovieClip {StarSplash_OML_fla.menu_btnReady_280}Uses:513 514 929 516 517 518Used by:933
Symbol 931 MovieClip {StarSplash_OML_fla.menu_btnPracticeText_283}Uses:348Used by:932
Symbol 932 MovieClip {StarSplash_OML_fla.menu_btnPractice_282}Uses:513 514 931 516 517 518Used by:933
Symbol 933 MovieClip {StarSplash_OML_fla.pres_tableau_anime_237}Uses:870 928 930 932Used by:940
Symbol 934 MovieClip {StarSplash_OML_fla.pres_transition_text_EasyText_286}Uses:348Used by:937
Symbol 935 MovieClip {StarSplash_OML_fla.pres_transition_text_MediumText_287}Uses:348Used by:937
Symbol 936 MovieClip {StarSplash_OML_fla.pres_transition_text_AdvanceText_288}Uses:348Used by:937
Symbol 937 MovieClip {StarSplash_OML_fla.pres_transition_text_285}Uses:934 935 936Used by:939
Symbol 938 MovieClipUses:586Used by:939
Symbol 939 MovieClip {StarSplash_OML_fla.pres_transition_284}Uses:638 171 937 938Used by:940
Symbol 940 MovieClip {StarSplash_OML_fla.pres_tableau_179}Uses:865 933 939Used by:941
Symbol 941 MovieClip {StarSplash_OML_fla.menuJeu_162}Uses:724 725 726 727 728 729 730 732 749 750 755 758 761 940Used by:Timeline

Instance Names

"preloader"Frame 2Symbol 389 MovieClip {StarSplash_OML_fla.preloader_c_2}
"Notice"Frame 14Symbol 407 MovieClip
"qualitee"Frame 16Symbol 439 MovieClip {StarSplash_OML_fla.qualitee_clip_16}
"qualitee"Frame 21Symbol 439 MovieClip {StarSplash_OML_fla.qualitee_clip_16}
"sceneMenu"Frame 22Symbol 500 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_20}
"snails"Frame 22Symbol 503 MovieClip {StarSplash_OML_fla.copyright_43}
"Menu_c"Frame 22Symbol 520 MovieClip {StarSplash_OML_fla.menu_menu_45}
"mus_c"Frame 22Symbol 528 MovieClip {StarSplash_OML_fla.musique_c_59}
"son_c"Frame 22Symbol 533 MovieClip {StarSplash_OML_fla.son_c_64}
"fondu"Frame 22Symbol 552 MovieClip {StarSplash_OML_fla.fondu_fadeIn_68}
"Menu_c"Frame 30Symbol 567 MovieClip {StarSplash_OML_fla.menu_credits_c_69}
"Menu_c"Frame 40Symbol 580 MovieClip {StarSplash_OML_fla.menu_result_c_79}
"fondu"Frame 40Symbol 552 MovieClip {StarSplash_OML_fla.fondu_fadeIn_68}
"fondu"Frame 51Symbol 552 MovieClip {StarSplash_OML_fla.fondu_fadeIn_68}
"lv"Frame 52Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103}
"menuJeu"Frame 52Symbol 941 MovieClip {StarSplash_OML_fla.menuJeu_162}
"fondu"Frame 52Symbol 552 MovieClip {StarSplash_OML_fla.fondu_fadeIn_68}
"qualitee"Frame 52Symbol 439 MovieClip {StarSplash_OML_fla.qualitee_clip_16}
"languageName_text"Symbol 170 MovieClip {spill.localisation.LanguageSelectBox_mc} Frame 1Symbol 143 EditableText
"flag"Symbol 170 MovieClip {spill.localisation.LanguageSelectBox_mc} Frame 1Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341}
"flag"Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339} Frame 1Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341}
"text"Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339} Frame 1Symbol 176 EditableText
"l_de"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_en_us"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_fr"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_it"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_nl"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_pl"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_es_mx"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_br"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_cn"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_en_uk"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_es"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_id"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_jp"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_pt"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_ar"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_in"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_es_ar"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_se"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"l_ru"Symbol 180 MovieClip {spill.localisation.LanguageSelectPopup_mc} Frame 1Symbol 177 MovieClip {StarSplash_OML_fla.l_br_339}
"m_Menu"Symbol 182 MovieClip {musicMC_clip} Frame 2Symbol 181 MovieClip
"m_lvl1"Symbol 182 MovieClip {musicMC_clip} Frame 3Symbol 181 MovieClip
"m_lvl2"Symbol 182 MovieClip {musicMC_clip} Frame 4Symbol 181 MovieClip
"m_lvl3"Symbol 182 MovieClip {musicMC_clip} Frame 5Symbol 181 MovieClip
"m_lvl4"Symbol 182 MovieClip {musicMC_clip} Frame 6Symbol 181 MovieClip
"m_Erreurs"Symbol 182 MovieClip {musicMC_clip} Frame 7Symbol 181 MovieClip
"etoile"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 184 MovieClip {StarSplash_OML_fla.1_son_etoile_323}
"boost"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 186 MovieClip {StarSplash_OML_fla.1_son_boost_324}
"boing"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 188 MovieClip {StarSplash_OML_fla.1_son_boing_325}
"sonar"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 190 MovieClip {StarSplash_OML_fla.1_son_sonar_326}
"triple"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 192 MovieClip {StarSplash_OML_fla.1_son_triple_327}
"splash"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 196 MovieClip {StarSplash_OML_fla.1_son_splash_328}
"splashOut"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 198 MovieClip {StarSplash_OML_fla.1_son_splashOut_329}
"passed"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 200 MovieClip {StarSplash_OML_fla.1_son_passed_330}
"perfect"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 202 MovieClip {StarSplash_OML_fla.1_son_perfect_331}
"wellDone"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 204 MovieClip {StarSplash_OML_fla.1_son_wellDone_332}
"needPractice"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 206 MovieClip {StarSplash_OML_fla.1_son_needPractice_333}
"gameOver"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 208 MovieClip {StarSplash_OML_fla.1_son_gameOver_334}
"zonePassed"Symbol 211 MovieClip {sonMC_clip} Frame 1Symbol 210 MovieClip {StarSplash_OML_fla.1_son_zonePassed_335}
"tourne"Symbol 220 MovieClip {EtoileTrans2} Frame 1Symbol 219 MovieClip
"coquillages"Symbol 224 MovieClip {StarSplash_OML_fla.bouee_corde_315} Frame 1Symbol 223 MovieClip
"lv"Symbol 228 MovieClip {StarSplash_OML_fla.bouee_drapeau_level_319} Frame 1Symbol 227 EditableText
"g"Symbol 248 MovieClip {StarSplash_OML_fla.bouee_drapeau_318} Frame 1Symbol 228 MovieClip {StarSplash_OML_fla.bouee_drapeau_level_319}
"drapeau"Symbol 252 MovieClip {StarSplash_OML_fla.bouee_tete_317} Frame 1Symbol 248 MovieClip {StarSplash_OML_fla.bouee_drapeau_318}
"passe"Symbol 252 MovieClip {StarSplash_OML_fla.bouee_tete_317} Frame 1Symbol 250 EditableText
"corde"Symbol 253 MovieClip {StarSplash_OML_fla.bouee_g_314} Frame 1Symbol 224 MovieClip {StarSplash_OML_fla.bouee_corde_315}
"tete"Symbol 253 MovieClip {StarSplash_OML_fla.bouee_g_314} Frame 1Symbol 252 MovieClip {StarSplash_OML_fla.bouee_tete_317}
"b"Symbol 254 MovieClip {Bouée} Frame 1Symbol 253 MovieClip {StarSplash_OML_fla.bouee_g_314}
"hit"Symbol 310 MovieClip {Meduse} Frame 1Symbol 255 MovieClip
"m"Symbol 310 MovieClip {Meduse} Frame 1Symbol 309 MovieClip {StarSplash_OML_fla.meduse_clip_308}
"splash"Symbol 337 MovieClip {TiSplash1} Frame 3Symbol 336 MovieClip {StarSplash_OML_fla.splash_298}
"b1"Symbol 341 MovieClip {StarSplash_OML_fla.bulle_c_295} Frame 1Symbol 340 MovieClip {StarSplash_OML_fla.bulle_296}
"b2"Symbol 341 MovieClip {StarSplash_OML_fla.bulle_c_295} Frame 1Symbol 340 MovieClip {StarSplash_OML_fla.bulle_296}
"b3"Symbol 341 MovieClip {StarSplash_OML_fla.bulle_c_295} Frame 5Symbol 340 MovieClip {StarSplash_OML_fla.bulle_296}
"b4"Symbol 341 MovieClip {StarSplash_OML_fla.bulle_c_295} Frame 10Symbol 340 MovieClip {StarSplash_OML_fla.bulle_296}
"b5"Symbol 341 MovieClip {StarSplash_OML_fla.bulle_c_295} Frame 15Symbol 340 MovieClip {StarSplash_OML_fla.bulle_296}
"b6"Symbol 341 MovieClip {StarSplash_OML_fla.bulle_c_295} Frame 15Symbol 340 MovieClip {StarSplash_OML_fla.bulle_296}
"b7"Symbol 341 MovieClip {StarSplash_OML_fla.bulle_c_295} Frame 20Symbol 340 MovieClip {StarSplash_OML_fla.bulle_296}
"bulles"Symbol 342 MovieClip {Splash1} Frame 1Symbol 341 MovieClip {StarSplash_OML_fla.bulle_c_295}
"splash"Symbol 342 MovieClip {Splash1} Frame 1Symbol 336 MovieClip {StarSplash_OML_fla.splash_298}
"b8"Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4} Frame 1Symbol 358 MovieClip {StarSplash_OML_fla.preloader_barre_tite_c_5}
"b7"Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4} Frame 1Symbol 358 MovieClip {StarSplash_OML_fla.preloader_barre_tite_c_5}
"b6"Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4} Frame 1Symbol 358 MovieClip {StarSplash_OML_fla.preloader_barre_tite_c_5}
"b5"Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4} Frame 1Symbol 358 MovieClip {StarSplash_OML_fla.preloader_barre_tite_c_5}
"b4"Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4} Frame 1Symbol 358 MovieClip {StarSplash_OML_fla.preloader_barre_tite_c_5}
"b3"Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4} Frame 1Symbol 358 MovieClip {StarSplash_OML_fla.preloader_barre_tite_c_5}
"b2"Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4} Frame 1Symbol 358 MovieClip {StarSplash_OML_fla.preloader_barre_tite_c_5}
"b1"Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4} Frame 1Symbol 358 MovieClip {StarSplash_OML_fla.preloader_barre_tite_c_5}
"bx"Symbol 362 MovieClip {StarSplash_OML_fla.preloader_3} Frame 1Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4}
"bx"Symbol 362 MovieClip {StarSplash_OML_fla.preloader_3} Frame 100Symbol 359 MovieClip {StarSplash_OML_fla.preloader_barre_4}
"hit"Symbol 388 MovieClip {StarSplash_OML_fla.menu_btnStart_10} Frame 1Symbol 381 MovieClip
"BAR"Symbol 389 MovieClip {StarSplash_OML_fla.preloader_c_2} Frame 1Symbol 362 MovieClip {StarSplash_OML_fla.preloader_3}
"adBox"Symbol 389 MovieClip {StarSplash_OML_fla.preloader_c_2} Frame 2Symbol 379 MovieClip
"btn_start"Symbol 389 MovieClip {StarSplash_OML_fla.preloader_c_2} Frame 110Symbol 388 MovieClip {StarSplash_OML_fla.menu_btnStart_10}
"snails"Symbol 432 MovieClip {StarSplash_OML_fla.SnailsAnimation_splash_13} Frame 1Symbol 409 Button
"q_text"Symbol 439 MovieClip {StarSplash_OML_fla.qualitee_clip_16} Frame 1Symbol 438 MovieClip {StarSplash_OML_fla.qualitee_clip_text_18}
"bg1"Symbol 450 MovieClip {StarSplash_OML_fla.bg_nuages_lv1_22} Frame 1Symbol 444 MovieClip
"bg2"Symbol 450 MovieClip {StarSplash_OML_fla.bg_nuages_lv1_22} Frame 2Symbol 446 MovieClip
"masque1"Symbol 458 MovieClip {StarSplash_OML_fla.eau_bg_25} Frame 1Symbol 454 MovieClip
"hit"Symbol 469 MovieClip {StarSplash_OML_fla.dauphin_nage_29} Frame 1Symbol 460 MovieClip {StarSplash_OML_fla.hitBox_30}
"hit"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 1Symbol 460 MovieClip {StarSplash_OML_fla.hitBox_30}
"hit2"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 10Symbol 460 MovieClip {StarSplash_OML_fla.hitBox_30}
"hit2"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 35Symbol 460 MovieClip {StarSplash_OML_fla.hitBox_30}
"hit2"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 55Symbol 460 MovieClip {StarSplash_OML_fla.hitBox_30}
"hit2"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 119Symbol 460 MovieClip {StarSplash_OML_fla.hitBox_30}
"hit2"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 130Symbol 460 MovieClip {StarSplash_OML_fla.hitBox_30}
"nage"Symbol 492 MovieClip {StarSplash_OML_fla.dauphin_28} Frame 1Symbol 469 MovieClip {StarSplash_OML_fla.dauphin_nage_29}
"saute"Symbol 492 MovieClip {StarSplash_OML_fla.dauphin_28} Frame 2Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31}
"c1"Symbol 498 MovieClip {StarSplash_OML_fla.ligne_eau_c_40} Frame 1Symbol 497 MovieClip {StarSplash_OML_fla.ligne_eau_41}
"eau_bg"Symbol 500 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_20} Frame 1Symbol 458 MovieClip {StarSplash_OML_fla.eau_bg_25}
"dauphin"Symbol 500 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_20} Frame 1Symbol 492 MovieClip {StarSplash_OML_fla.dauphin_28}
"masque2"Symbol 500 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_20} Frame 1Symbol 454 MovieClip
"hit"Symbol 503 MovieClip {StarSplash_OML_fla.copyright_43} Frame 1Symbol 255 MovieClip
"texte"Symbol 510 MovieClip {StarSplash_OML_fla.menu_btnPlayText_49} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 511 MovieClip {StarSplash_OML_fla.menu_btnPlay_48} Frame 1Symbol 381 MovieClip
"__id0_"Symbol 515 MovieClip {StarSplash_OML_fla.menu_btnCreditsText_58} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 519 MovieClip {StarSplash_OML_fla.menu_btnCredits_56} Frame 1Symbol 513 MovieClip
"btnPlay"Symbol 520 MovieClip {StarSplash_OML_fla.menu_menu_45} Frame 26Symbol 511 MovieClip {StarSplash_OML_fla.menu_btnPlay_48}
"btnCredits"Symbol 520 MovieClip {StarSplash_OML_fla.menu_menu_45} Frame 33Symbol 519 MovieClip {StarSplash_OML_fla.menu_btnCredits_56}
"__id1_"Symbol 523 MovieClip {StarSplash_OML_fla.btn_music_texte_62} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 524 MovieClip {StarSplash_OML_fla.btn_music_61} Frame 1Symbol 255 MovieClip
"texte"Symbol 524 MovieClip {StarSplash_OML_fla.btn_music_61} Frame 1Symbol 523 MovieClip {StarSplash_OML_fla.btn_music_texte_62}
"hit_btn"Symbol 528 MovieClip {StarSplash_OML_fla.musique_c_59} Frame 1Symbol 524 MovieClip {StarSplash_OML_fla.btn_music_61}
"t1"Symbol 531 MovieClip {StarSplash_OML_fla.btn_sons_texte_67} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 532 MovieClip {StarSplash_OML_fla.btn_sons_66} Frame 1Symbol 255 MovieClip
"texte"Symbol 532 MovieClip {StarSplash_OML_fla.btn_sons_66} Frame 1Symbol 531 MovieClip {StarSplash_OML_fla.btn_sons_texte_67}
"hit_btn"Symbol 533 MovieClip {StarSplash_OML_fla.son_c_64} Frame 1Symbol 532 MovieClip {StarSplash_OML_fla.btn_sons_66}
"__id2_"Symbol 554 MovieClip {StarSplash_OML_fla.menu_creditsDevText_71} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id3_"Symbol 555 MovieClip {StarSplash_OML_fla.menu_creditsSponsorText_72} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id4_"Symbol 556 MovieClip {StarSplash_OML_fla.menu_creditsMusicText_73} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id5_"Symbol 557 MovieClip {StarSplash_OML_fla.menu_creditsSoundsText_74} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id6_"Symbol 559 MovieClip {StarSplash_OML_fla.menu_creditsText_75} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 562 MovieClip {StarSplash_OML_fla.menu_credits_snails_76} Frame 1Symbol 460 MovieClip {StarSplash_OML_fla.hitBox_30}
"__id7_"Symbol 563 MovieClip {StarSplash_OML_fla.menu_btnBackText_78} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 564 MovieClip {StarSplash_OML_fla.menu_btnBack_77} Frame 1Symbol 381 MovieClip
"snails"Symbol 566 MovieClip {StarSplash_OML_fla.menu_credits_70} Frame 1Symbol 562 MovieClip {StarSplash_OML_fla.menu_credits_snails_76}
"btnBack"Symbol 566 MovieClip {StarSplash_OML_fla.menu_credits_70} Frame 1Symbol 564 MovieClip {StarSplash_OML_fla.menu_btnBack_77}
"m"Symbol 567 MovieClip {StarSplash_OML_fla.menu_credits_c_69} Frame 1Symbol 566 MovieClip {StarSplash_OML_fla.menu_credits_70}
"__id8_"Symbol 572 MovieClip {StarSplash_OML_fla.menu_result2Text_81} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id9_"Symbol 573 MovieClip {StarSplash_OML_fla.menu_btnMenuText_83} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 574 MovieClip {StarSplash_OML_fla.menu_btnMenu_82} Frame 1Symbol 513 MovieClip
"__id10_"Symbol 575 MovieClip {StarSplash_OML_fla.menu_btnTryAgainText_85} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 576 MovieClip {StarSplash_OML_fla.menu_btnTryAgain_84} Frame 1Symbol 513 MovieClip
"__id11_"Symbol 577 MovieClip {StarSplash_OML_fla.menu_btnSubmitText_87} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 578 MovieClip {StarSplash_OML_fla.menu_btnSubmit_86} Frame 1Symbol 513 MovieClip
"score"Symbol 579 MovieClip {StarSplash_OML_fla.menu_result2_80} Frame 1Symbol 571 EditableText
"btnMenu"Symbol 579 MovieClip {StarSplash_OML_fla.menu_result2_80} Frame 1Symbol 574 MovieClip {StarSplash_OML_fla.menu_btnMenu_82}
"btnPlayAgain"Symbol 579 MovieClip {StarSplash_OML_fla.menu_result2_80} Frame 1Symbol 576 MovieClip {StarSplash_OML_fla.menu_btnTryAgain_84}
"btnSubmit"Symbol 579 MovieClip {StarSplash_OML_fla.menu_result2_80} Frame 2Symbol 578 MovieClip {StarSplash_OML_fla.menu_btnSubmit_86}
"m"Symbol 580 MovieClip {StarSplash_OML_fla.menu_result_c_79} Frame 1Symbol 579 MovieClip {StarSplash_OML_fla.menu_result2_80}
"eau_bg"Symbol 635 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_fin_88} Frame 1Symbol 458 MovieClip {StarSplash_OML_fla.eau_bg_25}
"dauphin"Symbol 635 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_fin_88} Frame 1Symbol 492 MovieClip {StarSplash_OML_fla.dauphin_28}
"masque2"Symbol 635 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_fin_88} Frame 1Symbol 454 MovieClip
"ligne_eau"Symbol 635 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_fin_88} Frame 1Symbol 498 MovieClip {StarSplash_OML_fla.ligne_eau_c_40}
"congrats"Symbol 635 MovieClip {StarSplash_OML_fla.menu_scene_dauphin_fin_88} Frame 1Symbol 634 MovieClip {StarSplash_OML_fla.congratulations_clip_97}
"bg1"Symbol 647 MovieClip {StarSplash_OML_fla.bg2_lv1_106} Frame 1Symbol 644 MovieClip
"bg2"Symbol 647 MovieClip {StarSplash_OML_fla.bg2_lv1_106} Frame 2Symbol 646 MovieClip
"bg1"Symbol 652 MovieClip {StarSplash_OML_fla.bg3_lv1_109} Frame 1Symbol 649 MovieClip
"bg2"Symbol 652 MovieClip {StarSplash_OML_fla.bg3_lv1_109} Frame 2Symbol 651 MovieClip
"bg1a"Symbol 657 MovieClip {StarSplash_OML_fla.bg_nuages_lv2a_c_113} Frame 1Symbol 654 MovieClip
"bg1b"Symbol 657 MovieClip {StarSplash_OML_fla.bg_nuages_lv2a_c_113} Frame 1Symbol 656 MovieClip
"bg3a"Symbol 660 MovieClip {StarSplash_OML_fla.bg_nuages_lv2c_c_117} Frame 1Symbol 656 MovieClip
"bg3b"Symbol 660 MovieClip {StarSplash_OML_fla.bg_nuages_lv2c_c_117} Frame 1Symbol 659 MovieClip
"bg1"Symbol 661 MovieClip {StarSplash_OML_fla.bg_nuages_lv2_112} Frame 1Symbol 657 MovieClip {StarSplash_OML_fla.bg_nuages_lv2a_c_113}
"bg2"Symbol 661 MovieClip {StarSplash_OML_fla.bg_nuages_lv2_112} Frame 2Symbol 659 MovieClip
"bg3"Symbol 661 MovieClip {StarSplash_OML_fla.bg_nuages_lv2_112} Frame 3Symbol 660 MovieClip {StarSplash_OML_fla.bg_nuages_lv2c_c_117}
"bg1"Symbol 671 MovieClip {StarSplash_OML_fla.bg2_lv2_118} Frame 1Symbol 663 MovieClip
"bg2"Symbol 671 MovieClip {StarSplash_OML_fla.bg2_lv2_118} Frame 2Symbol 670 MovieClip
"bg1"Symbol 678 MovieClip {StarSplash_OML_fla.bg3_lv2_123} Frame 1Symbol 673 MovieClip
"bg2"Symbol 678 MovieClip {StarSplash_OML_fla.bg3_lv2_123} Frame 2Symbol 675 MovieClip
"bg3"Symbol 678 MovieClip {StarSplash_OML_fla.bg3_lv2_123} Frame 3Symbol 677 MovieClip
"bg1"Symbol 683 MovieClip {StarSplash_OML_fla.bg2_lv3_127} Frame 1Symbol 680 MovieClip
"bg2"Symbol 683 MovieClip {StarSplash_OML_fla.bg2_lv3_127} Frame 2Symbol 682 MovieClip
"bg1"Symbol 692 MovieClip {StarSplash_OML_fla.bg3_lv3_130} Frame 1Symbol 685 MovieClip
"bg2"Symbol 692 MovieClip {StarSplash_OML_fla.bg3_lv3_130} Frame 2Symbol 687 MovieClip
"bg3"Symbol 692 MovieClip {StarSplash_OML_fla.bg3_lv3_130} Frame 3Symbol 689 MovieClip
"bg4"Symbol 692 MovieClip {StarSplash_OML_fla.bg3_lv3_130} Frame 4Symbol 691 MovieClip
"bg1"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 1Symbol 450 MovieClip {StarSplash_OML_fla.bg_nuages_lv1_22}
"bg2"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 1Symbol 647 MovieClip {StarSplash_OML_fla.bg2_lv1_106}
"bg3"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 1Symbol 652 MovieClip {StarSplash_OML_fla.bg3_lv1_109}
"bg1"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 3Symbol 661 MovieClip {StarSplash_OML_fla.bg_nuages_lv2_112}
"bg2"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 3Symbol 671 MovieClip {StarSplash_OML_fla.bg2_lv2_118}
"bg3"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 3Symbol 678 MovieClip {StarSplash_OML_fla.bg3_lv2_123}
"bg2"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 5Symbol 683 MovieClip {StarSplash_OML_fla.bg2_lv3_127}
"bg3"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 5Symbol 692 MovieClip {StarSplash_OML_fla.bg3_lv3_130}
"ciel"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 642 MovieClip {StarSplash_OML_fla.ciel_104}
"bg"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105}
"eau_bg"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 458 MovieClip {StarSplash_OML_fla.eau_bg_25}
"dauphin"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 492 MovieClip {StarSplash_OML_fla.dauphin_28}
"masque2"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 454 MovieClip
"eau_over"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 695 MovieClip {StarSplash_OML_fla.eau_alpha_135}
"ligne_eau"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 498 MovieClip {StarSplash_OML_fla.ligne_eau_c_40}
"tableau1"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 696 MovieClip {StarSplash_OML_fla.1_tableau1_136}
"tableau2"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 697 MovieClip {StarSplash_OML_fla.1_tableau2_137}
"tableau4"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 698 MovieClip {StarSplash_OML_fla.1_tableau4_138}
"tableau3"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 699 MovieClip {StarSplash_OML_fla.1_tableau5_139}
"tableau10"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 700 MovieClip {StarSplash_OML_fla.1_tableau8_140}
"tableau5"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 701 MovieClip {StarSplash_OML_fla.1_tableau6_141}
"tableau9"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 702 MovieClip {StarSplash_OML_fla.1_tableau7_142}
"tableau6"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 703 MovieClip {StarSplash_OML_fla.1_tableau3_143}
"tableau8"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 704 MovieClip {StarSplash_OML_fla.1_tableau9_144}
"tableau15"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 705 MovieClip {StarSplash_OML_fla.1_tableau10_145}
"tableau20"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 706 MovieClip {StarSplash_OML_fla.1_tableau11_146}
"tableau13"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 707 MovieClip {StarSplash_OML_fla.1_tableau12_147}
"tableau17"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 708 MovieClip {StarSplash_OML_fla.1_tableau13_148}
"tableau21"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 709 MovieClip {StarSplash_OML_fla.1_tableau14_149}
"tableau14"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 710 MovieClip {StarSplash_OML_fla.1_tableau15_150}
"tableau11"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 711 MovieClip {StarSplash_OML_fla.1_tableau16_151}
"tableau19"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 712 MovieClip {StarSplash_OML_fla.1_tableau17_152}
"tableau16"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 713 MovieClip {StarSplash_OML_fla.1_tableau18_153}
"tableau12"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 714 MovieClip {StarSplash_OML_fla.1_tableau19_154}
"tableau18"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 715 MovieClip {StarSplash_OML_fla.1_tableau20_155}
"tableau3x"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 716 MovieClip {StarSplash_OML_fla.1_tableau_x1_156}
"tableau6x"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 717 MovieClip {StarSplash_OML_fla.1_tableau_x2_157}
"tableau9x"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 718 MovieClip {StarSplash_OML_fla.1_tableau_x3_158}
"tableau10x"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 719 MovieClip {StarSplash_OML_fla.1_tableau_x3b_159}
"tableau7"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 1Symbol 720 MovieClip {StarSplash_OML_fla.1_tableau_x4b_160}
"lignes"Symbol 723 MovieClip {StarSplash_OML_fla.lv1_103} Frame 2Symbol 722 MovieClip
"__id12_"Symbol 728 MovieClip {StarSplash_OML_fla.menuJeu_scoreText_163} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id13_"Symbol 729 MovieClip {StarSplash_OML_fla.menuJeu_starsText_164} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"fond"Symbol 749 MovieClip {StarSplash_OML_fla.menu_barre_166} Frame 1Symbol 736 MovieClip {StarSplash_OML_fla.menu_barre_fonds_167}
"hit_btn"Symbol 755 MovieClip {StarSplash_OML_fla.musique_c2_173} Frame 1Symbol 751 Button
"hit_btn"Symbol 758 MovieClip {StarSplash_OML_fla.son_c2_175} Frame 1Symbol 756 Button
"noir"Symbol 761 MovieClip {StarSplash_OML_fla.noir_alpha_clip_177} Frame 2Symbol 760 MovieClip
"texte"Symbol 765 MovieClip {StarSplash_OML_fla.menu_resultTitreText_182} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"titre"Symbol 766 MovieClip {StarSplash_OML_fla.menu_result_181} Frame 1Symbol 765 MovieClip {StarSplash_OML_fla.menu_resultTitreText_182}
"__id14_"Symbol 768 MovieClip {StarSplash_OML_fla.pres_result_l1_starsText_184} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"stars"Symbol 769 MovieClip {StarSplash_OML_fla.pres_result_l1_183} Frame 1Symbol 767 EditableText
"__id15_"Symbol 771 MovieClip {StarSplash_OML_fla.pres_result_l1_neededText_186} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"needed"Symbol 772 MovieClip {StarSplash_OML_fla.pres_result_l2_185} Frame 1Symbol 770 EditableText
"__id16_"Symbol 774 MovieClip {StarSplash_OML_fla.pres_result_l1_collectedText_188} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"collected"Symbol 777 MovieClip {StarSplash_OML_fla.pres_result_l3_187} Frame 1Symbol 773 EditableText
"collected"Symbol 777 MovieClip {StarSplash_OML_fla.pres_result_l3_187} Frame 2Symbol 775 EditableText
"collected"Symbol 777 MovieClip {StarSplash_OML_fla.pres_result_l3_187} Frame 3Symbol 776 EditableText
"t1"Symbol 795 MovieClip {StarSplash_OML_fla.menu_pres_passed_sousTitreText_205} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"texte"Symbol 797 MovieClip {StarSplash_OML_fla.menu_pres_passed2_202} Frame 1Symbol 796 MovieClip
"f1"Symbol 827 MovieClip {StarSplash_OML_fla.feux_c_216} Frame 1Symbol 826 MovieClip {StarSplash_OML_fla.feux_g_217}
"feux"Symbol 828 MovieClip {StarSplash_OML_fla.menu_pres_perfect_207} Frame 20Symbol 827 MovieClip {StarSplash_OML_fla.feux_c_216}
"texte"Symbol 839 MovieClip {StarSplash_OML_fla.menu_pres_perfect2_220} Frame 1Symbol 838 MovieClip
"feux"Symbol 839 MovieClip {StarSplash_OML_fla.menu_pres_perfect2_220} Frame 25Symbol 827 MovieClip {StarSplash_OML_fla.feux_c_216}
"__id17_"Symbol 841 MovieClip {StarSplash_OML_fla.menu_pres_gameover_text_TEXT_225} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id18_"Symbol 843 MovieClip {StarSplash_OML_fla.menu_btnContinueText_227} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 844 MovieClip {StarSplash_OML_fla.menu_btnContinue_226} Frame 1Symbol 513 MovieClip
"__id19_"Symbol 845 MovieClip {StarSplash_OML_fla.menu_btnEndGameText_229} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 846 MovieClip {StarSplash_OML_fla.menu_btnEndGame_228} Frame 1Symbol 513 MovieClip
"__id20_"Symbol 847 MovieClip {StarSplash_OML_fla.menu_pres_gameover_titext_230} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id21_"Symbol 847 MovieClip {StarSplash_OML_fla.menu_pres_gameover_titext_230} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"btnContinue"Symbol 858 MovieClip {StarSplash_OML_fla.menu_pres_gameover_223} Frame 43Symbol 844 MovieClip {StarSplash_OML_fla.menu_btnContinue_226}
"btnEndGame"Symbol 858 MovieClip {StarSplash_OML_fla.menu_pres_gameover_223} Frame 43Symbol 846 MovieClip {StarSplash_OML_fla.menu_btnEndGame_228}
"__id22_"Symbol 859 MovieClip {StarSplash_OML_fla.menu_pres_welldone_g2_text_235} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id23_"Symbol 860 MovieClip {StarSplash_OML_fla.menu_pres_welldone_g2_text2_236} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"titre"Symbol 865 MovieClip {StarSplash_OML_fla.pres_result_180} Frame 1Symbol 766 MovieClip {StarSplash_OML_fla.menu_result_181}
"l1"Symbol 865 MovieClip {StarSplash_OML_fla.pres_result_180} Frame 15Symbol 769 MovieClip {StarSplash_OML_fla.pres_result_l1_183}
"l2"Symbol 865 MovieClip {StarSplash_OML_fla.pres_result_180} Frame 25Symbol 772 MovieClip {StarSplash_OML_fla.pres_result_l2_185}
"l3"Symbol 865 MovieClip {StarSplash_OML_fla.pres_result_180} Frame 35Symbol 777 MovieClip {StarSplash_OML_fla.pres_result_l3_187}
"texte"Symbol 868 MovieClip {StarSplash_OML_fla.menu_levelText_239} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"texte"Symbol 869 MovieClip {StarSplash_OML_fla.menu_level_starsText_240} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"vague"Symbol 870 MovieClip {StarSplash_OML_fla.menu_level_238} Frame 1Symbol 868 MovieClip {StarSplash_OML_fla.menu_levelText_239}
"collect"Symbol 870 MovieClip {StarSplash_OML_fla.menu_level_238} Frame 1Symbol 869 MovieClip {StarSplash_OML_fla.menu_level_starsText_240}
"__id24_"Symbol 872 MovieClip {StarSplash_OML_fla.t2_242} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id25_"Symbol 873 MovieClip {StarSplash_OML_fla.t5_243} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id26_"Symbol 874 MovieClip {StarSplash_OML_fla.t8_244} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id27_"Symbol 875 MovieClip {StarSplash_OML_fla.menu_moves_bg_InWaterText_245} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id28_"Symbol 883 MovieClip {StarSplash_OML_fla.menu_moves_swimText2_251} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"t1"Symbol 884 MovieClip {StarSplash_OML_fla.menu_moves_swimText_252} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"b_up"Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246} Frame 1Symbol 880 MovieClip {StarSplash_OML_fla.fleche_UP_247}
"b_down"Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246} Frame 1Symbol 881 MovieClip {StarSplash_OML_fla.fleche_DOWN_249}
"b_right"Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246} Frame 1Symbol 882 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT_250}
"b_left"Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246} Frame 1Symbol 882 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT_250}
"texte"Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246} Frame 1Symbol 884 MovieClip {StarSplash_OML_fla.menu_moves_swimText_252}
"b_up"Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246} Frame 2Symbol 886 MovieClip {StarSplash_OML_fla.fleche_UP2_253}
"b_down"Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246} Frame 2Symbol 888 MovieClip {StarSplash_OML_fla.fleche_DOWN2_254}
"b_right"Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246} Frame 2Symbol 890 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT2_255}
"b_left"Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246} Frame 2Symbol 890 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT2_255}
"__id29_"Symbol 896 MovieClip {StarSplash_OML_fla.menu_moves_doubleJumpText2_257} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"t1"Symbol 897 MovieClip {StarSplash_OML_fla.menu_moves_doubleJumpText_258} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"b_up"Symbol 899 MovieClip {StarSplash_OML_fla.menu_moves_doubleJump_256} Frame 1Symbol 880 MovieClip {StarSplash_OML_fla.fleche_UP_247}
"texte"Symbol 899 MovieClip {StarSplash_OML_fla.menu_moves_doubleJump_256} Frame 1Symbol 897 MovieClip {StarSplash_OML_fla.menu_moves_doubleJumpText_258}
"b_up"Symbol 899 MovieClip {StarSplash_OML_fla.menu_moves_doubleJump_256} Frame 2Symbol 886 MovieClip {StarSplash_OML_fla.fleche_UP2_253}
"__id30_"Symbol 900 MovieClip {StarSplash_OML_fla.menu_moves_doubleBoostText2_260} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"t1"Symbol 901 MovieClip {StarSplash_OML_fla.menu_moves_boostText_261} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"b_up"Symbol 902 MovieClip {StarSplash_OML_fla.menu_moves_boost_259} Frame 1Symbol 882 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT_250}
"texte"Symbol 902 MovieClip {StarSplash_OML_fla.menu_moves_boost_259} Frame 1Symbol 901 MovieClip {StarSplash_OML_fla.menu_moves_boostText_261}
"b_up"Symbol 902 MovieClip {StarSplash_OML_fla.menu_moves_boost_259} Frame 2Symbol 890 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT2_255}
"__id31_"Symbol 903 MovieClip {StarSplash_OML_fla.menu_moves_diveText2_263} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"t1"Symbol 904 MovieClip {StarSplash_OML_fla.menu_moves_diveText_264} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"b_up"Symbol 905 MovieClip {StarSplash_OML_fla.menu_moves_dive_262} Frame 1Symbol 881 MovieClip {StarSplash_OML_fla.fleche_DOWN_249}
"texte"Symbol 905 MovieClip {StarSplash_OML_fla.menu_moves_dive_262} Frame 1Symbol 904 MovieClip {StarSplash_OML_fla.menu_moves_diveText_264}
"b_up"Symbol 905 MovieClip {StarSplash_OML_fla.menu_moves_dive_262} Frame 2Symbol 888 MovieClip {StarSplash_OML_fla.fleche_DOWN2_254}
"__id32_"Symbol 907 MovieClip {StarSplash_OML_fla.menu_moves_tripleJumpText2_266} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"t1"Symbol 908 MovieClip {StarSplash_OML_fla.menu_moves_tripleJumpText_267} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"b_up"Symbol 910 MovieClip {StarSplash_OML_fla.menu_moves_tripleJump_265} Frame 1Symbol 880 MovieClip {StarSplash_OML_fla.fleche_UP_247}
"b_up"Symbol 910 MovieClip {StarSplash_OML_fla.menu_moves_tripleJump_265} Frame 1Symbol 880 MovieClip {StarSplash_OML_fla.fleche_UP_247}
"texte"Symbol 910 MovieClip {StarSplash_OML_fla.menu_moves_tripleJump_265} Frame 1Symbol 908 MovieClip {StarSplash_OML_fla.menu_moves_tripleJumpText_267}
"b_up"Symbol 910 MovieClip {StarSplash_OML_fla.menu_moves_tripleJump_265} Frame 2Symbol 886 MovieClip {StarSplash_OML_fla.fleche_UP2_253}
"b_up"Symbol 910 MovieClip {StarSplash_OML_fla.menu_moves_tripleJump_265} Frame 2Symbol 886 MovieClip {StarSplash_OML_fla.fleche_UP2_253}
"__id33_"Symbol 912 MovieClip {StarSplash_OML_fla.menu_moves_deadLeafText2_269} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"t1"Symbol 913 MovieClip {StarSplash_OML_fla.menu_moves_deadLeafText_270} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"b_up"Symbol 915 MovieClip {StarSplash_OML_fla.menu_moves_deadLeaf_268} Frame 1Symbol 882 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT_250}
"b_up"Symbol 915 MovieClip {StarSplash_OML_fla.menu_moves_deadLeaf_268} Frame 1Symbol 880 MovieClip {StarSplash_OML_fla.fleche_UP_247}
"texte"Symbol 915 MovieClip {StarSplash_OML_fla.menu_moves_deadLeaf_268} Frame 1Symbol 913 MovieClip {StarSplash_OML_fla.menu_moves_deadLeafText_270}
"b_up"Symbol 915 MovieClip {StarSplash_OML_fla.menu_moves_deadLeaf_268} Frame 2Symbol 890 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT2_255}
"b_up"Symbol 915 MovieClip {StarSplash_OML_fla.menu_moves_deadLeaf_268} Frame 2Symbol 886 MovieClip {StarSplash_OML_fla.fleche_UP2_253}
"t1"Symbol 916 MovieClip {StarSplash_OML_fla.menu_moves_roundDiveText2_272} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"t1"Symbol 917 MovieClip {StarSplash_OML_fla.menu_moves_RoundDiveText_273} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"b_up"Symbol 918 MovieClip {StarSplash_OML_fla.menu_moves_roundDive_271} Frame 1Symbol 882 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT_250}
"b_up"Symbol 918 MovieClip {StarSplash_OML_fla.menu_moves_roundDive_271} Frame 1Symbol 881 MovieClip {StarSplash_OML_fla.fleche_DOWN_249}
"texte"Symbol 918 MovieClip {StarSplash_OML_fla.menu_moves_roundDive_271} Frame 1Symbol 917 MovieClip {StarSplash_OML_fla.menu_moves_RoundDiveText_273}
"b_up"Symbol 918 MovieClip {StarSplash_OML_fla.menu_moves_roundDive_271} Frame 2Symbol 890 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT2_255}
"b_up"Symbol 918 MovieClip {StarSplash_OML_fla.menu_moves_roundDive_271} Frame 2Symbol 888 MovieClip {StarSplash_OML_fla.fleche_DOWN2_254}
"t1"Symbol 922 MovieClip {StarSplash_OML_fla.menu_moves_sonarText2_276} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"t1"Symbol 923 MovieClip {StarSplash_OML_fla.menu_moves_sonarText_277} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"b_up"Symbol 926 MovieClip {StarSplash_OML_fla.menu_moves_sonar_274} Frame 1Symbol 921 MovieClip {StarSplash_OML_fla.fleche_SPACE_275}
"texte"Symbol 926 MovieClip {StarSplash_OML_fla.menu_moves_sonar_274} Frame 1Symbol 923 MovieClip {StarSplash_OML_fla.menu_moves_sonarText_277}
"b_up"Symbol 926 MovieClip {StarSplash_OML_fla.menu_moves_sonar_274} Frame 2Symbol 925 MovieClip {StarSplash_OML_fla.fleche_SPACE2_278}
"__id34_"Symbol 927 MovieClip {StarSplash_OML_fla.menu_moves_bg_titreText_279} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"t2"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 872 MovieClip {StarSplash_OML_fla.t2_242}
"t5"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 873 MovieClip {StarSplash_OML_fla.t5_243}
"t8"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 874 MovieClip {StarSplash_OML_fla.t8_244}
"b1"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 894 MovieClip {StarSplash_OML_fla.menu_moves_swim_246}
"b2"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 899 MovieClip {StarSplash_OML_fla.menu_moves_doubleJump_256}
"b3"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 902 MovieClip {StarSplash_OML_fla.menu_moves_boost_259}
"b4"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 905 MovieClip {StarSplash_OML_fla.menu_moves_dive_262}
"b5"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 910 MovieClip {StarSplash_OML_fla.menu_moves_tripleJump_265}
"b6"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 915 MovieClip {StarSplash_OML_fla.menu_moves_deadLeaf_268}
"b7"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 918 MovieClip {StarSplash_OML_fla.menu_moves_roundDive_271}
"b8"Symbol 928 MovieClip {StarSplash_OML_fla.menu_moves_bg_241} Frame 1Symbol 926 MovieClip {StarSplash_OML_fla.menu_moves_sonar_274}
"__id35_"Symbol 929 MovieClip {StarSplash_OML_fla.menu_btnReadyText_281} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 930 MovieClip {StarSplash_OML_fla.menu_btnReady_280} Frame 1Symbol 513 MovieClip
"__id36_"Symbol 931 MovieClip {StarSplash_OML_fla.menu_btnPracticeText_283} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"hit"Symbol 932 MovieClip {StarSplash_OML_fla.menu_btnPractice_282} Frame 1Symbol 513 MovieClip
"btnNext"Symbol 933 MovieClip {StarSplash_OML_fla.pres_tableau_anime_237} Frame 23Symbol 930 MovieClip {StarSplash_OML_fla.menu_btnReady_280}
"btnPractice"Symbol 933 MovieClip {StarSplash_OML_fla.pres_tableau_anime_237} Frame 23Symbol 932 MovieClip {StarSplash_OML_fla.menu_btnPractice_282}
"btnReady"Symbol 933 MovieClip {StarSplash_OML_fla.pres_tableau_anime_237} Frame 39Symbol 930 MovieClip {StarSplash_OML_fla.menu_btnReady_280}
"__id37_"Symbol 934 MovieClip {StarSplash_OML_fla.pres_transition_text_EasyText_286} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id38_"Symbol 935 MovieClip {StarSplash_OML_fla.pres_transition_text_MediumText_287} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"__id39_"Symbol 936 MovieClip {StarSplash_OML_fla.pres_transition_text_AdvanceText_288} Frame 1Symbol 348 MovieClip {spill.localisation.LocalizedTextField}
"etMask"Symbol 939 MovieClip {StarSplash_OML_fla.pres_transition_284} Frame 1Symbol 638 MovieClip
"score"Symbol 941 MovieClip {StarSplash_OML_fla.menuJeu_162} Frame 1Symbol 725 EditableText
"itemsC"Symbol 941 MovieClip {StarSplash_OML_fla.menuJeu_162} Frame 1Symbol 726 EditableText
"btnMoreGames"Symbol 941 MovieClip {StarSplash_OML_fla.menuJeu_162} Frame 1Symbol 732 Button
"progression"Symbol 941 MovieClip {StarSplash_OML_fla.menuJeu_162} Frame 1Symbol 749 MovieClip {StarSplash_OML_fla.menu_barre_166}
"m_mus"Symbol 941 MovieClip {StarSplash_OML_fla.menuJeu_162} Frame 1Symbol 755 MovieClip {StarSplash_OML_fla.musique_c2_173}
"m_son"Symbol 941 MovieClip {StarSplash_OML_fla.menuJeu_162} Frame 1Symbol 758 MovieClip {StarSplash_OML_fla.son_c2_175}
"noir"Symbol 941 MovieClip {StarSplash_OML_fla.menuJeu_162} Frame 1Symbol 761 MovieClip {StarSplash_OML_fla.noir_alpha_clip_177}
"presTableau"Symbol 941 MovieClip {StarSplash_OML_fla.menuJeu_162} Frame 1Symbol 940 MovieClip {StarSplash_OML_fla.pres_tableau_179}

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata not present, AS3.

Labels

"splash"Frame 13
"menu"Frame 22
"credits"Frame 30
"result"Frame 40
"fin"Frame 51
"jeu"Frame 52
"www.agame.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 1
"www.game.com.cn"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 2
"www.zapjuegos.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 3
"www.spel.nl"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 4
"www.jeu.fr"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 5
"www.spielen.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 6
"www.clickjogos.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 7
"www.giocaregratis.it"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 8
"www.spel.se"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 9
"www.mygames.co.uk"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 10
"www.flashgames.ru"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 11
"www.game.co.in"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 12
"www.games.co.id"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 13
"www.minigry.pl"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 14
"www.asoyun.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 15
"www.game.com.my"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 16
"www.gamesgames.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 17
"www.spelletjes.nl"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 18
"www.jeux.fr"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 19
"www.jetztspielen.de"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 20
"www.gry.pl"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 21
"www.spela.se"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 22
"www.gioco.it"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 23
"www.juegos.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 24
"www.juegos.mx"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 25
"www.juegos.com.ar"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 26
"www.ojogos.com.br"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 27
"www.ourgames.ru"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 28
"www.games.co.uk"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 29
"www.oyunlar123.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 30
"www.girlsgogames.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 31
"www.girlsgogames.in"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 32
"www.girlsgogamestr.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 33
"www.girlsgogames.com.br"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 34
"www.girlsgogames.fr"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 35
"www.girlsgogames.co.uk"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 36
"www.girlsgogames.de"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 37
"www.girlsgogames.pl"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 38
"www.girlsgogames.ru"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 39
"www.juegosdechicas.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 40
"www.juegosdechicas.com.ar"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 41
"www.juegosdechicas.mx"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 42
"www.girlsgogames.it"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 43
"www.girlsgogames.es"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 44
"www.girlsgogames.nl"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 45
"www.girlsgogames.se"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 46
"www.ojogos.pt"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 47
"www.laro.com.ph"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 48
"www.egames.jp"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 49
"www.a10.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 50
"www.dailygame.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 51
"www.zapapa.com"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 52
"www.zapapa.nl"Symbol 132 MovieClip {spill.localisation.BrandingLogo} Frame 53
"br"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 1
"nl"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 2
"cn"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 3
"de"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 4
"es"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 5
"fr"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 6
"in"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 7
"it"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 8
"jp"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 9
"my"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 10
"ph"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 11
"pl"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 12
"pt"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 13
"ru"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 14
"se"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 15
"tr"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 16
"en_uk"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 17
"en_us"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 18
"id"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 19
"ar"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 20
"es_mx"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 21
"es_ar"Symbol 169 MovieClip {StarSplash_OML_fla.flag_icon_341} Frame 22
"Menu"Symbol 182 MovieClip {musicMC_clip} Frame 2
"lvl1"Symbol 182 MovieClip {musicMC_clip} Frame 3
"lvl2"Symbol 182 MovieClip {musicMC_clip} Frame 4
"lvl3"Symbol 182 MovieClip {musicMC_clip} Frame 5
"lvl4"Symbol 182 MovieClip {musicMC_clip} Frame 6
"Erreurs"Symbol 182 MovieClip {musicMC_clip} Frame 7
"mute"Symbol 211 MovieClip {sonMC_clip} Frame 2
"idle"Symbol 309 MovieClip {StarSplash_OML_fla.meduse_clip_308} Frame 1
"spring"Symbol 309 MovieClip {StarSplash_OML_fla.meduse_clip_308} Frame 2
"_up"Symbol 388 MovieClip {StarSplash_OML_fla.menu_btnStart_10} Frame 1
"_over"Symbol 388 MovieClip {StarSplash_OML_fla.menu_btnStart_10} Frame 2
"_down"Symbol 388 MovieClip {StarSplash_OML_fla.menu_btnStart_10} Frame 3
"pas_pub"Symbol 389 MovieClip {StarSplash_OML_fla.preloader_c_2} Frame 1
"pub"Symbol 389 MovieClip {StarSplash_OML_fla.preloader_c_2} Frame 2
"fini"Symbol 389 MovieClip {StarSplash_OML_fla.preloader_c_2} Frame 3
"medium"Symbol 438 MovieClip {StarSplash_OML_fla.qualitee_clip_text_18} Frame 2
"high"Symbol 438 MovieClip {StarSplash_OML_fla.qualitee_clip_text_18} Frame 16
"best"Symbol 438 MovieClip {StarSplash_OML_fla.qualitee_clip_text_18} Frame 31
"low"Symbol 438 MovieClip {StarSplash_OML_fla.qualitee_clip_text_18} Frame 46
"fin"Symbol 450 MovieClip {StarSplash_OML_fla.bg_nuages_lv1_22} Frame 3
"port"Symbol 458 MovieClip {StarSplash_OML_fla.eau_bg_25} Frame 2
"nuit"Symbol 458 MovieClip {StarSplash_OML_fla.eau_bg_25} Frame 3
"1"Symbol 469 MovieClip {StarSplash_OML_fla.dauphin_nage_29} Frame 1
"2"Symbol 469 MovieClip {StarSplash_OML_fla.dauphin_nage_29} Frame 5
"3"Symbol 469 MovieClip {StarSplash_OML_fla.dauphin_nage_29} Frame 9
"2b"Symbol 469 MovieClip {StarSplash_OML_fla.dauphin_nage_29} Frame 13
"saute1"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 1
"saute2"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 25
"2a"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 50
"boost"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 50
"3a"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 58
"meduseSaut"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 75
"plonge"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 130
"splash"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 150
"3b"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 151
"2b"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 152
"1b"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 153
"splash2"Symbol 491 MovieClip {StarSplash_OML_fla.dauphin_saute_31} Frame 160
"nage"Symbol 492 MovieClip {StarSplash_OML_fla.dauphin_28} Frame 1
"saute"Symbol 492 MovieClip {StarSplash_OML_fla.dauphin_28} Frame 2
"tropical"Symbol 497 MovieClip {StarSplash_OML_fla.ligne_eau_41} Frame 1
"port"Symbol 497 MovieClip {StarSplash_OML_fla.ligne_eau_41} Frame 2
"nuit"Symbol 497 MovieClip {StarSplash_OML_fla.ligne_eau_41} Frame 3
"_up"Symbol 503 MovieClip {StarSplash_OML_fla.copyright_43} Frame 1
"_over"Symbol 503 MovieClip {StarSplash_OML_fla.copyright_43} Frame 2
"_down"Symbol 503 MovieClip {StarSplash_OML_fla.copyright_43} Frame 3
"_up"Symbol 511 MovieClip {StarSplash_OML_fla.menu_btnPlay_48} Frame 1
"_over"Symbol 511 MovieClip {StarSplash_OML_fla.menu_btnPlay_48} Frame 2
"_down"Symbol 511 MovieClip {StarSplash_OML_fla.menu_btnPlay_48} Frame 3
"_up"Symbol 519 MovieClip {StarSplash_OML_fla.menu_btnCredits_56} Frame 1
"_over"Symbol 519 MovieClip {StarSplash_OML_fla.menu_btnCredits_56} Frame 2
"_down"Symbol 519 MovieClip {StarSplash_OML_fla.menu_btnCredits_56} Frame 3
"_up"Symbol 524 MovieClip {StarSplash_OML_fla.btn_music_61} Frame 1
"_over"Symbol 524 MovieClip {StarSplash_OML_fla.btn_music_61} Frame 2
"_down"Symbol 524 MovieClip {StarSplash_OML_fla.btn_music_61} Frame 3
"_up"Symbol 532 MovieClip {StarSplash_OML_fla.btn_sons_66} Frame 1
"_over"Symbol 532 MovieClip {StarSplash_OML_fla.btn_sons_66} Frame 2
"_down"Symbol 532 MovieClip {StarSplash_OML_fla.btn_sons_66} Frame 3
"fadeOut"Symbol 552 MovieClip {StarSplash_OML_fla.fondu_fadeIn_68} Frame 2
"fadeIn"Symbol 552 MovieClip {StarSplash_OML_fla.fondu_fadeIn_68} Frame 15
"_up"Symbol 562 MovieClip {StarSplash_OML_fla.menu_credits_snails_76} Frame 1
"_over"Symbol 562 MovieClip {StarSplash_OML_fla.menu_credits_snails_76} Frame 2
"_down"Symbol 562 MovieClip {StarSplash_OML_fla.menu_credits_snails_76} Frame 3
"_up"Symbol 564 MovieClip {StarSplash_OML_fla.menu_btnBack_77} Frame 1
"_over"Symbol 564 MovieClip {StarSplash_OML_fla.menu_btnBack_77} Frame 2
"_down"Symbol 564 MovieClip {StarSplash_OML_fla.menu_btnBack_77} Frame 3
"_up"Symbol 574 MovieClip {StarSplash_OML_fla.menu_btnMenu_82} Frame 1
"_over"Symbol 574 MovieClip {StarSplash_OML_fla.menu_btnMenu_82} Frame 2
"_down"Symbol 574 MovieClip {StarSplash_OML_fla.menu_btnMenu_82} Frame 3
"_up"Symbol 576 MovieClip {StarSplash_OML_fla.menu_btnTryAgain_84} Frame 1
"_over"Symbol 576 MovieClip {StarSplash_OML_fla.menu_btnTryAgain_84} Frame 2
"_down"Symbol 576 MovieClip {StarSplash_OML_fla.menu_btnTryAgain_84} Frame 3
"_up"Symbol 578 MovieClip {StarSplash_OML_fla.menu_btnSubmit_86} Frame 1
"_over"Symbol 578 MovieClip {StarSplash_OML_fla.menu_btnSubmit_86} Frame 2
"_down"Symbol 578 MovieClip {StarSplash_OML_fla.menu_btnSubmit_86} Frame 3
"nuit"Symbol 591 MovieClip {StarSplash_OML_fla.ciel_fin_89} Frame 1
"en"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 1
"nl"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 2
"fr"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 3
"de"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 4
"es"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 5
"pt"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 6
"it"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 7
"se"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 8
"pl"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 9
"ru"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 10
"id"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 11
"es2"Symbol 611 MovieClip {StarSplash_OML_fla.congratulations_texte_98} Frame 12
"en"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 1
"nl"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 2
"fr"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 3
"de"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 4
"es"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 5
"pt"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 6
"it"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 7
"se"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 8
"pl"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 9
"ru"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 10
"id"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 11
"es2"Symbol 633 MovieClip {StarSplash_OML_fla.congratulations_texte_completed_99} Frame 12
"tropical"Symbol 642 MovieClip {StarSplash_OML_fla.ciel_104} Frame 1
"port"Symbol 642 MovieClip {StarSplash_OML_fla.ciel_104} Frame 2
"nuit"Symbol 642 MovieClip {StarSplash_OML_fla.ciel_104} Frame 3
"fin"Symbol 647 MovieClip {StarSplash_OML_fla.bg2_lv1_106} Frame 3
"fin"Symbol 652 MovieClip {StarSplash_OML_fla.bg3_lv1_109} Frame 3
"fin"Symbol 661 MovieClip {StarSplash_OML_fla.bg_nuages_lv2_112} Frame 4
"fin"Symbol 671 MovieClip {StarSplash_OML_fla.bg2_lv2_118} Frame 3
"fin"Symbol 678 MovieClip {StarSplash_OML_fla.bg3_lv2_123} Frame 4
"fin"Symbol 683 MovieClip {StarSplash_OML_fla.bg2_lv3_127} Frame 3
"fin"Symbol 692 MovieClip {StarSplash_OML_fla.bg3_lv3_130} Frame 5
"tropical"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 1
"port"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 3
"nuit"Symbol 693 MovieClip {StarSplash_OML_fla.bg_clip_105} Frame 5
"tropical"Symbol 695 MovieClip {StarSplash_OML_fla.eau_alpha_135} Frame 1
"port"Symbol 695 MovieClip {StarSplash_OML_fla.eau_alpha_135} Frame 2
"nuit"Symbol 695 MovieClip {StarSplash_OML_fla.eau_alpha_135} Frame 3
"tropical"Symbol 736 MovieClip {StarSplash_OML_fla.menu_barre_fonds_167} Frame 1
"port"Symbol 736 MovieClip {StarSplash_OML_fla.menu_barre_fonds_167} Frame 2
"nuit"Symbol 736 MovieClip {StarSplash_OML_fla.menu_barre_fonds_167} Frame 3
"perfect"Symbol 777 MovieClip {StarSplash_OML_fla.pres_result_l3_187} Frame 2
"en"Symbol 798 MovieClip {StarSplash_OML_fla.menu_pres_passed_c_190} Frame 1
"autres"Symbol 798 MovieClip {StarSplash_OML_fla.menu_pres_passed_c_190} Frame 2
"fr"Symbol 837 MovieClip {StarSplash_OML_fla.menu_pres_perfect_sousTitreText_222} Frame 1
"de"Symbol 837 MovieClip {StarSplash_OML_fla.menu_pres_perfect_sousTitreText_222} Frame 2
"es"Symbol 837 MovieClip {StarSplash_OML_fla.menu_pres_perfect_sousTitreText_222} Frame 3
"pt"Symbol 837 MovieClip {StarSplash_OML_fla.menu_pres_perfect_sousTitreText_222} Frame 4
"it"Symbol 837 MovieClip {StarSplash_OML_fla.menu_pres_perfect_sousTitreText_222} Frame 5
"pl"Symbol 837 MovieClip {StarSplash_OML_fla.menu_pres_perfect_sousTitreText_222} Frame 6
"ru"Symbol 837 MovieClip {StarSplash_OML_fla.menu_pres_perfect_sousTitreText_222} Frame 7
"id"Symbol 837 MovieClip {StarSplash_OML_fla.menu_pres_perfect_sousTitreText_222} Frame 8
"en"Symbol 840 MovieClip {StarSplash_OML_fla.menu_pres_perfect_c_206} Frame 1
"autres"Symbol 840 MovieClip {StarSplash_OML_fla.menu_pres_perfect_c_206} Frame 2
"_up"Symbol 844 MovieClip {StarSplash_OML_fla.menu_btnContinue_226} Frame 1
"_over"Symbol 844 MovieClip {StarSplash_OML_fla.menu_btnContinue_226} Frame 2
"_down"Symbol 844 MovieClip {StarSplash_OML_fla.menu_btnContinue_226} Frame 3
"_up"Symbol 846 MovieClip {StarSplash_OML_fla.menu_btnEndGame_228} Frame 1
"_over"Symbol 846 MovieClip {StarSplash_OML_fla.menu_btnEndGame_228} Frame 2
"_down"Symbol 846 MovieClip {StarSplash_OML_fla.menu_btnEndGame_228} Frame 3
"passed"Symbol 864 MovieClip {StarSplash_OML_fla.menu_pres_passed_189} Frame 2
"perfect"Symbol 864 MovieClip {StarSplash_OML_fla.menu_pres_passed_189} Frame 3
"failed"Symbol 864 MovieClip {StarSplash_OML_fla.menu_pres_passed_189} Frame 4
"practice"Symbol 864 MovieClip {StarSplash_OML_fla.menu_pres_passed_189} Frame 5
"up"Symbol 880 MovieClip {StarSplash_OML_fla.fleche_UP_247} Frame 1
"up"Symbol 881 MovieClip {StarSplash_OML_fla.fleche_DOWN_249} Frame 1
"up"Symbol 882 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT_250} Frame 1
"up"Symbol 886 MovieClip {StarSplash_OML_fla.fleche_UP2_253} Frame 1
"up"Symbol 888 MovieClip {StarSplash_OML_fla.fleche_DOWN2_254} Frame 1
"up"Symbol 890 MovieClip {StarSplash_OML_fla.fleche_LEFT_RIGHT2_255} Frame 1
"up"Symbol 921 MovieClip {StarSplash_OML_fla.fleche_SPACE_275} Frame 1
"up"Symbol 925 MovieClip {StarSplash_OML_fla.fleche_SPACE2_278} Frame 1
"_up"Symbol 930 MovieClip {StarSplash_OML_fla.menu_btnReady_280} Frame 1
"_over"Symbol 930 MovieClip {StarSplash_OML_fla.menu_btnReady_280} Frame 2
"_down"Symbol 930 MovieClip {StarSplash_OML_fla.menu_btnReady_280} Frame 3
"_up"Symbol 932 MovieClip {StarSplash_OML_fla.menu_btnPractice_282} Frame 1
"_over"Symbol 932 MovieClip {StarSplash_OML_fla.menu_btnPractice_282} Frame 2
"_down"Symbol 932 MovieClip {StarSplash_OML_fla.menu_btnPractice_282} Frame 3
"fini"Symbol 939 MovieClip {StarSplash_OML_fla.pres_transition_284} Frame 111
"noir_in"Symbol 940 MovieClip {StarSplash_OML_fla.pres_tableau_179} Frame 5
"result"Symbol 940 MovieClip {StarSplash_OML_fla.pres_tableau_179} Frame 15
"pres"Symbol 940 MovieClip {StarSplash_OML_fla.pres_tableau_179} Frame 20
"trans"Symbol 940 MovieClip {StarSplash_OML_fla.pres_tableau_179} Frame 25
"noir_out"Symbol 940 MovieClip {StarSplash_OML_fla.pres_tableau_179} Frame 30




http://swfchan.com/21/100650/info.shtml
Created: 21/3 -2019 04:43:41 Last modified: 21/3 -2019 04:43:41 Server time: 27/04 -2024 04:45:21