| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354 |
- window.skins=window.skins||{};
- var __extends = this && this.__extends|| function (d, b) {
- for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
- function __() {
- this.constructor = d;
- }
- __.prototype = b.prototype;
- d.prototype = new __();
- };
- window.generateEUI = window.generateEUI||{};
- generateEUI.paths = generateEUI.paths||{};
- generateEUI.styles = undefined;
- generateEUI.skins = {"eui.Button":"resource/eui_skins/ButtonSkin.exml","eui.CheckBox":"resource/eui_skins/CheckBoxSkin.exml","eui.HScrollBar":"resource/eui_skins/HScrollBarSkin.exml","eui.HSlider":"resource/eui_skins/HSliderSkin.exml","eui.Panel":"resource/eui_skins/PanelSkin.exml","eui.TextInput":"resource/eui_skins/TextInputSkin.exml","eui.ProgressBar":"resource/eui_skins/ProgressBarSkin.exml","eui.RadioButton":"resource/eui_skins/RadioButtonSkin.exml","eui.Scroller":"resource/eui_skins/ScrollerSkin.exml","eui.ToggleSwitch":"resource/eui_skins/ToggleSwitchSkin.exml","eui.VScrollBar":"resource/eui_skins/VScrollBarSkin.exml","eui.VSlider":"resource/eui_skins/VSliderSkin.exml","eui.ItemRenderer":"resource/eui_skins/ItemRendererSkin.exml","MainGame":"resource/eui_skins/MainGame.exml","HomePage":"resource/eui_skins/HomePage.exml","InGame":"resource/eui_skins/InGame.exml","EndPage":"resource/eui_skins/EndPage.exml","ToumingBg":"resource/eui_skins/ToumingBg.exml","ToumingBtn":"resource/eui_skins/ToumingBtn.exml","ChouPage":"resource/eui_skins/ChouPage.exml","PrizePage":"resource/eui_skins/PrizePage.exml","ChouNoTimePage":"resource/eui_skins/ChouNoTimePage.exml","DiaBoy":"resource/eui_skins/DiaBoy.exml","RedPoint":"resource/eui_skins/RedPoint.exml","ResultPage":"resource/eui_skins/ResultPage.exml","TestPage":"resource/eui_skins/TestPage.exml","BigMap":"resource/eui_skins/BigMap.exml","IconMc":"resource/eui_skins/IconMc.exml","Deng":"resource/eui_skins/Deng.exml","QrPage":"resource/eui_skins/QrPage.exml","RankPage":"resource/eui_skins/RankPage.exml","RankBar":"resource/eui_skins/RankBar.exml","RankMe":"resource/eui_skins/RankMe.exml","InfoPage":"resource/eui_skins/InfoPage.exml","RankBarNew":"resource/eui_skins/RankBarNew.exml"};generateEUI.paths['resource/eui_skins/BigMap.exml'] = window.BigMapSkin = (function (_super) {
- __extends(BigMapSkin, _super);
- function BigMapSkin() {
- _super.call(this);
- this.skinParts = ["gBigMap","a1","a2","a3","a4","x51","a6","a7","a8","a9","a10","a11","a12","a13","a14","a15","x31","x32","a5","imgYu1","imgYu2","imgPeng","boat","boatLine","imgDagu","imgYan"];
-
- this.elementsContent = [this._Group1_i()];
- }
- var _proto = BigMapSkin.prototype;
- _proto._Group1_i = function () {
- var t = new eui.Group();
- t.elementsContent = [this.gBigMap_i(),this.a1_i(),this.a2_i(),this.a3_i(),this.a4_i(),this.x51_i(),this.a6_i(),this.a7_i(),this.a8_i(),this.a9_i(),this.a10_i(),this.a11_i(),this.a12_i(),this.a13_i(),this.a14_i(),this.a15_i(),this.x31_i(),this.x32_i(),this.a5_i(),this.imgYu1_i(),this.imgYu2_i(),this.imgPeng_i(),this._Deng1_i(),this._Deng2_i(),this._Deng3_i(),this.boat_i(),this.boatLine_i(),this.imgDagu_i(),this.imgYan_i()];
- return t;
- };
- _proto.gBigMap_i = function () {
- var t = new eui.Group();
- this.gBigMap = t;
- t.visible = false;
- t.layout = this._TileLayout1_i();
- t.elementsContent = [this._Image1_i(),this._Image2_i(),this._Image3_i(),this._Image4_i(),this._Image5_i(),this._Image6_i(),this._Image7_i(),this._Image8_i(),this._Image9_i(),this._Image10_i(),this._Image11_i(),this._Image12_i()];
- return t;
- };
- _proto._TileLayout1_i = function () {
- var t = new eui.TileLayout();
- t.horizontalGap = 0;
- t.orientation = "rows";
- t.requestedColumnCount = 4;
- t.requestedRowCount = 3;
- t.verticalGap = 0;
- return t;
- };
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s1_jpg";
- t.x = 92;
- t.y = 225.00000000000003;
- return t;
- };
- _proto._Image2_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s2_jpg";
- t.x = 102;
- t.y = 235.00000000000003;
- return t;
- };
- _proto._Image3_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s3_jpg";
- t.x = 112;
- t.y = 245.00000000000003;
- return t;
- };
- _proto._Image4_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s4_jpg";
- t.x = 122;
- t.y = 255.00000000000003;
- return t;
- };
- _proto._Image5_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s5_jpg";
- t.x = 132;
- t.y = 265;
- return t;
- };
- _proto._Image6_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s6_jpg";
- t.x = 142;
- t.y = 275;
- return t;
- };
- _proto._Image7_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s7_jpg";
- t.x = 152;
- t.y = 285;
- return t;
- };
- _proto._Image8_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s8_jpg";
- t.x = 162;
- t.y = 295;
- return t;
- };
- _proto._Image9_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s9_jpg";
- t.x = 172;
- t.y = 305;
- return t;
- };
- _proto._Image10_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s10_jpg";
- t.x = 182;
- t.y = 315;
- return t;
- };
- _proto._Image11_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s11_jpg";
- t.x = 102;
- t.y = 235.00000000000003;
- return t;
- };
- _proto._Image12_i = function () {
- var t = new eui.Image();
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "s12_jpg";
- t.x = 112;
- t.y = 245.00000000000003;
- return t;
- };
- _proto.a1_i = function () {
- var t = new eui.Image();
- this.a1 = t;
- t.anchorOffsetX = 160;
- t.anchorOffsetY = 172;
- t.source = "a1_png";
- t.x = 1461.94;
- t.y = 4515.59;
- return t;
- };
- _proto.a2_i = function () {
- var t = new eui.Image();
- this.a2 = t;
- t.anchorOffsetX = 144;
- t.anchorOffsetY = 124;
- t.source = "a2_png";
- t.x = 2991.43;
- t.y = 2221.36;
- return t;
- };
- _proto.a3_i = function () {
- var t = new eui.Image();
- this.a3 = t;
- t.anchorOffsetX = 51.52;
- t.anchorOffsetY = 151.52;
- t.source = "a3_png";
- t.x = 2418.04;
- t.y = 3884.71;
- return t;
- };
- _proto.a4_i = function () {
- var t = new eui.Image();
- this.a4 = t;
- t.anchorOffsetX = 89.76;
- t.anchorOffsetY = 84.36;
- t.source = "a4_png";
- t.x = 5132.76;
- t.y = 1142.86;
- return t;
- };
- _proto.x51_i = function () {
- var t = new eui.Image();
- this.x51 = t;
- t.anchorOffsetX = 200;
- t.anchorOffsetY = 112;
- t.source = "a5_png";
- t.x = 5499.91;
- t.y = 2672.31;
- return t;
- };
- _proto.a6_i = function () {
- var t = new eui.Image();
- this.a6 = t;
- t.anchorOffsetX = 86;
- t.anchorOffsetY = 80;
- t.source = "a6_png";
- t.x = 206.13;
- t.y = 6391.37;
- return t;
- };
- _proto.a7_i = function () {
- var t = new eui.Image();
- this.a7 = t;
- t.anchorOffsetX = 66.67;
- t.anchorOffsetY = 292.42;
- t.source = "a7_png";
- t.x = 3551.43;
- t.y = 3489.42;
- return t;
- };
- _proto.a8_i = function () {
- var t = new eui.Image();
- this.a8 = t;
- t.anchorOffsetX = 324.24;
- t.anchorOffsetY = 439.39;
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "a8_png";
- t.x = 982.88;
- t.y = 6688.76;
- return t;
- };
- _proto.a9_i = function () {
- var t = new eui.Image();
- this.a9 = t;
- t.anchorOffsetX = 48.85;
- t.anchorOffsetY = 54.12;
- t.source = "a9_png";
- t.x = 4339.14;
- t.y = 972.17;
- return t;
- };
- _proto.a10_i = function () {
- var t = new eui.Image();
- this.a10 = t;
- t.anchorOffsetX = 39.39;
- t.anchorOffsetY = 157.58;
- t.source = "a10_png";
- t.x = 4862.39;
- t.y = 3364.58;
- return t;
- };
- _proto.a11_i = function () {
- var t = new eui.Image();
- this.a11 = t;
- t.anchorOffsetX = 112.12;
- t.anchorOffsetY = 118.18;
- t.source = "a11_png";
- t.x = 8201.79;
- t.y = 4600.15;
- return t;
- };
- _proto.a12_i = function () {
- var t = new eui.Image();
- this.a12 = t;
- t.anchorOffsetX = 56;
- t.anchorOffsetY = 61.45;
- t.source = "a12_png";
- t.x = 2384.52;
- t.y = 3082.33;
- return t;
- };
- _proto.a13_i = function () {
- var t = new eui.Image();
- this.a13 = t;
- t.anchorOffsetX = 82;
- t.anchorOffsetY = 176;
- t.source = "a13_png";
- t.x = 3286.12;
- t.y = 2950.15;
- return t;
- };
- _proto.a14_i = function () {
- var t = new eui.Image();
- this.a14 = t;
- t.anchorOffsetX = 536;
- t.anchorOffsetY = 324;
- t.source = "a14_png";
- t.x = 3444.67;
- t.y = 1660.01;
- return t;
- };
- _proto.a15_i = function () {
- var t = new eui.Image();
- this.a15 = t;
- t.anchorOffsetX = 87.88;
- t.anchorOffsetY = 142.42;
- t.source = "a15_png";
- t.x = 2849.96;
- t.y = 5489.2;
- return t;
- };
- _proto.x31_i = function () {
- var t = new eui.Image();
- this.x31 = t;
- t.anchorOffsetX = 77.27;
- t.anchorOffsetY = 137.88;
- t.source = "x31_png";
- t.x = 4431.27;
- t.y = 3397.88;
- return t;
- };
- _proto.x32_i = function () {
- var t = new eui.Image();
- this.x32 = t;
- t.anchorOffsetX = 57.58;
- t.anchorOffsetY = 187.88;
- t.source = "x32_png";
- t.x = 5251.46;
- t.y = 951.88;
- return t;
- };
- _proto.a5_i = function () {
- var t = new eui.Image();
- this.a5 = t;
- t.anchorOffsetX = 200;
- t.anchorOffsetY = 124;
- t.source = "x51_png";
- t.x = 2580.3;
- t.y = 1799.99;
- return t;
- };
- _proto.imgYu1_i = function () {
- var t = new eui.Image();
- this.imgYu1 = t;
- t.source = "yu1_png";
- t.x = 3372.97;
- t.y = 3020.88;
- return t;
- };
- _proto.imgYu2_i = function () {
- var t = new eui.Image();
- this.imgYu2 = t;
- t.source = "yu1_png";
- t.x = 4778;
- t.y = 2208;
- return t;
- };
- _proto.imgPeng_i = function () {
- var t = new eui.Image();
- this.imgPeng = t;
- t.source = "peng1_png";
- t.x = 4148;
- t.y = 2729;
- return t;
- };
- _proto._Deng1_i = function () {
- var t = new Deng();
- t.x = 5240;
- t.y = 2505.99;
- return t;
- };
- _proto._Deng2_i = function () {
- var t = new Deng();
- t.x = 5338.3;
- t.y = 2572.96;
- return t;
- };
- _proto._Deng3_i = function () {
- var t = new Deng();
- t.x = 5452.33;
- t.y = 2647.32;
- return t;
- };
- _proto.boat_i = function () {
- var t = new eui.Image();
- this.boat = t;
- t.source = "boat_png";
- t.x = 5740;
- t.y = 5616.97;
- return t;
- };
- _proto.boatLine_i = function () {
- var t = new eui.Image();
- this.boatLine = t;
- t.anchorOffsetY = 540.12;
- t.source = "boatLine_png";
- t.x = 5995.03;
- t.y = 5644.73;
- return t;
- };
- _proto.imgDagu_i = function () {
- var t = new eui.Image();
- this.imgDagu = t;
- t.source = "dagu1_png";
- t.x = 4360.11;
- t.y = 4279.21;
- return t;
- };
- _proto.imgYan_i = function () {
- var t = new eui.Image();
- this.imgYan = t;
- t.source = "yan1_png";
- t.x = 4048.76;
- t.y = 401.56;
- return t;
- };
- return BigMapSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/ButtonSkin.exml'] = window.skins.ButtonSkin = (function (_super) {
- __extends(ButtonSkin, _super);
- function ButtonSkin() {
- _super.call(this);
- this.skinParts = ["labelDisplay","iconDisplay"];
-
- this.minHeight = 50;
- this.minWidth = 100;
- this.elementsContent = [this._Image1_i(),this.labelDisplay_i(),this.iconDisplay_i()];
- this.states = [
- new eui.State ("up",
- [
- ])
- ,
- new eui.State ("down",
- [
- new eui.SetProperty("_Image1","source","button_down_png")
- ])
- ,
- new eui.State ("disabled",
- [
- new eui.SetProperty("_Image1","alpha",0.5)
- ])
- ];
- }
- var _proto = ButtonSkin.prototype;
- _proto._Image1_i = function () {
- var t = new eui.Image();
- this._Image1 = t;
- t.percentHeight = 100;
- t.scale9Grid = new egret.Rectangle(1,3,8,8);
- t.source = "button_up_png";
- t.percentWidth = 100;
- return t;
- };
- _proto.labelDisplay_i = function () {
- var t = new eui.Label();
- this.labelDisplay = t;
- t.bottom = 8;
- t.left = 8;
- t.right = 8;
- t.size = 20;
- t.textAlign = "center";
- t.textColor = 0xFFFFFF;
- t.top = 8;
- t.verticalAlign = "middle";
- return t;
- };
- _proto.iconDisplay_i = function () {
- var t = new eui.Image();
- this.iconDisplay = t;
- t.horizontalCenter = 0;
- t.verticalCenter = 0;
- return t;
- };
- return ButtonSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/CheckBoxSkin.exml'] = window.skins.CheckBoxSkin = (function (_super) {
- __extends(CheckBoxSkin, _super);
- function CheckBoxSkin() {
- _super.call(this);
- this.skinParts = ["labelDisplay"];
-
- this.elementsContent = [this._Group1_i()];
- this.states = [
- new eui.State ("up",
- [
- ])
- ,
- new eui.State ("down",
- [
- new eui.SetProperty("_Image1","alpha",0.7)
- ])
- ,
- new eui.State ("disabled",
- [
- new eui.SetProperty("_Image1","alpha",0.5)
- ])
- ,
- new eui.State ("upAndSelected",
- [
- new eui.SetProperty("_Image1","source","checkbox_select_up_png")
- ])
- ,
- new eui.State ("downAndSelected",
- [
- new eui.SetProperty("_Image1","source","checkbox_select_down_png")
- ])
- ,
- new eui.State ("disabledAndSelected",
- [
- new eui.SetProperty("_Image1","source","checkbox_select_disabled_png")
- ])
- ];
- }
- var _proto = CheckBoxSkin.prototype;
- _proto._Group1_i = function () {
- var t = new eui.Group();
- t.percentHeight = 100;
- t.percentWidth = 100;
- t.layout = this._HorizontalLayout1_i();
- t.elementsContent = [this._Image1_i(),this.labelDisplay_i()];
- return t;
- };
- _proto._HorizontalLayout1_i = function () {
- var t = new eui.HorizontalLayout();
- t.verticalAlign = "middle";
- return t;
- };
- _proto._Image1_i = function () {
- var t = new eui.Image();
- this._Image1 = t;
- t.alpha = 1;
- t.fillMode = "scale";
- t.source = "checkbox_unselect_png";
- return t;
- };
- _proto.labelDisplay_i = function () {
- var t = new eui.Label();
- this.labelDisplay = t;
- t.fontFamily = "Tahoma";
- t.size = 20;
- t.textAlign = "center";
- t.textColor = 0x707070;
- t.verticalAlign = "middle";
- return t;
- };
- return CheckBoxSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/ChouNoTimePage.exml'] = window.ChouNoTimePageSkin = (function (_super) {
- __extends(ChouNoTimePageSkin, _super);
- function ChouNoTimePageSkin() {
- _super.call(this);
- this.skinParts = [];
-
- this.height = 1465;
- this.width = 750;
- }
- var _proto = ChouNoTimePageSkin.prototype;
- return ChouNoTimePageSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/ChouPage.exml'] = window.ChouPageSkin = (function (_super) {
- __extends(ChouPageSkin, _super);
- function ChouPageSkin() {
- _super.call(this);
- this.skinParts = ["chouBg","logo","chouPan","selBox","chouTxt","prizePic","chouBtn","closeBtn","ruleBtn","shareBtn","closeRuleBtn","gRule"];
-
- this.height = 1465;
- this.width = 750;
- this.elementsContent = [this.chouBg_i(),this.logo_i(),this.chouPan_i(),this.selBox_i(),this.chouTxt_i(),this.prizePic_i(),this.chouBtn_i(),this.closeBtn_i(),this.ruleBtn_i(),this.shareBtn_i(),this.gRule_i()];
- }
- var _proto = ChouPageSkin.prototype;
- _proto.chouBg_i = function () {
- var t = new eui.Image();
- this.chouBg = t;
- t.left = 0;
- t.source = "chouBg_jpg";
- t.top = 0;
- return t;
- };
- _proto.logo_i = function () {
- var t = new eui.Image();
- this.logo = t;
- t.horizontalCenter = 0;
- t.source = "logoBar_png";
- t.y = 150;
- return t;
- };
- _proto.chouPan_i = function () {
- var t = new eui.Image();
- this.chouPan = t;
- t.source = "chouPan_png";
- t.x = 56;
- t.y = 304.01;
- return t;
- };
- _proto.selBox_i = function () {
- var t = new eui.Image();
- this.selBox = t;
- t.source = "chouSelBox_png";
- t.x = 479;
- t.y = 539;
- return t;
- };
- _proto.chouTxt_i = function () {
- var t = new eui.Image();
- this.chouTxt = t;
- t.source = "chouTxt_png";
- t.x = 55;
- t.y = 304;
- return t;
- };
- _proto.prizePic_i = function () {
- var t = new eui.Image();
- this.prizePic = t;
- t.source = "chouJiangpin_png";
- t.x = 56;
- t.y = 304.01;
- return t;
- };
- _proto.chouBtn_i = function () {
- var t = new eui.Image();
- this.chouBtn = t;
- t.anchorOffsetX = 120;
- t.anchorOffsetY = 59.5;
- t.horizontalCenter = 0;
- t.source = "chouGoBtn_png";
- t.y = 982.45;
- return t;
- };
- _proto.closeBtn_i = function () {
- var t = new eui.Image();
- this.closeBtn = t;
- t.scaleX = 0.7;
- t.scaleY = 0.7;
- t.source = "closeBtn_png";
- t.x = 641.21;
- t.y = 216.36;
- return t;
- };
- _proto.ruleBtn_i = function () {
- var t = new eui.Image();
- this.ruleBtn = t;
- t.source = "chouRuleBtn_png";
- t.x = 140;
- t.y = 1101.21;
- return t;
- };
- _proto.shareBtn_i = function () {
- var t = new eui.Image();
- this.shareBtn = t;
- t.source = "goShareBtn_png";
- t.x = 404;
- t.y = 1101.21;
- return t;
- };
- _proto.gRule_i = function () {
- var t = new eui.Group();
- this.gRule = t;
- t.height = 1465;
- t.visible = false;
- t.width = 750;
- t.x = 0;
- t.y = 0;
- t.elementsContent = [this._ToumingBg1_i(),this._Image1_i(),this.closeRuleBtn_i()];
- return t;
- };
- _proto._ToumingBg1_i = function () {
- var t = new ToumingBg();
- t.percentHeight = 100;
- t.left = 0;
- t.top = 0;
- t.percentWidth = 100;
- return t;
- };
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.horizontalCenter = 0;
- t.source = "img/ruleBg.png";
- t.verticalCenter = -60;
- return t;
- };
- _proto.closeRuleBtn_i = function () {
- var t = new eui.Image();
- this.closeRuleBtn = t;
- t.horizontalCenter = 1;
- t.source = "closeBtn_png";
- t.y = 1094.35;
- return t;
- };
- return ChouPageSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/Deng.exml'] = window.DengSkin = (function (_super) {
- __extends(DengSkin, _super);
- function DengSkin() {
- _super.call(this);
- this.skinParts = ["dengLight"];
-
- this.height = 226;
- this.width = 108;
- this.elementsContent = [this._Image1_i(),this.dengLight_i()];
- }
- var _proto = DengSkin.prototype;
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.source = "dengDi_png";
- t.x = 35;
- t.y = 182;
- return t;
- };
- _proto.dengLight_i = function () {
- var t = new eui.Image();
- this.dengLight = t;
- t.anchorOffsetX = 18.5;
- t.anchorOffsetY = 172;
- t.source = "dengLight_png";
- t.x = 52.5;
- t.y = 188;
- return t;
- };
- return DengSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/DiaBoy.exml'] = window.DiaBoySkin = (function (_super) {
- __extends(DiaBoySkin, _super);
- function DiaBoySkin() {
- _super.call(this);
- this.skinParts = [];
-
- this.height = 1465;
- this.width = 750;
- }
- var _proto = DiaBoySkin.prototype;
- return DiaBoySkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/EndPage.exml'] = window.EndPageSkin = (function (_super) {
- __extends(EndPageSkin, _super);
- function EndPageSkin() {
- _super.call(this);
- this.skinParts = ["headBit","saveTip","findTxt","endBgImg","endTxtImg","endIcon","scanTip"];
-
- this.height = 1600;
- this.width = 750;
- this.elementsContent = [this._Image1_i(),this.headBit_i(),this.saveTip_i(),this.findTxt_i(),this.endBgImg_i(),this.endTxtImg_i(),this.endIcon_i(),this.scanTip_i()];
- }
- var _proto = EndPageSkin.prototype;
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.source = "endBg_jpg";
- t.x = 0;
- t.y = 0;
- return t;
- };
- _proto.headBit_i = function () {
- var t = new eui.Image();
- this.headBit = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 66;
- t.width = 66;
- t.x = 70.34;
- t.y = 236.66;
- return t;
- };
- _proto.saveTip_i = function () {
- var t = new eui.Image();
- this.saveTip = t;
- t.source = "img/saveTip.png";
- t.x = 571.98;
- t.y = 1248.55;
- return t;
- };
- _proto.findTxt_i = function () {
- var t = new eui.Label();
- this.findTxt = t;
- t.bold = true;
- t.height = 43;
- t.rotation = -5;
- t.text = "Label";
- t.textAlign = "center";
- t.textColor = 0x000000;
- t.verticalAlign = "middle";
- t.width = 163;
- t.x = 495;
- t.y = 258.34;
- return t;
- };
- _proto.endBgImg_i = function () {
- var t = new eui.Image();
- this.endBgImg = t;
- t.source = "";
- t.x = 67.1;
- t.y = 330.74;
- return t;
- };
- _proto.endTxtImg_i = function () {
- var t = new eui.Image();
- this.endTxtImg = t;
- t.source = "";
- t.x = 241.79;
- t.y = 1139.99;
- return t;
- };
- _proto.endIcon_i = function () {
- var t = new eui.Image();
- this.endIcon = t;
- t.source = "endIcon_png";
- t.visible = false;
- t.x = 579.11;
- t.y = 1137.89;
- return t;
- };
- _proto.scanTip_i = function () {
- var t = new eui.Image();
- this.scanTip = t;
- t.source = "scanTip_png";
- t.x = 556.34;
- t.y = 1136.08;
- return t;
- };
- return EndPageSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/HomePage.exml'] = window.HomePageSkin = (function (_super) {
- __extends(HomePageSkin, _super);
- function HomePageSkin() {
- _super.call(this);
- this.skinParts = ["anCar1","anCar2","yun0","yun1","qiqiu","car1","car2","tree","ship","startBtn","prizeBtn","tipImg","closeBtn","la0","lingquBtn0","bar0","la1","lingquBtn1","bar1","gPrize"];
-
- this.height = 1600;
- this.width = 750;
- this.anCar1_i();
- this.anCar2_i();
- this.elementsContent = [this._Image1_i(),this.yun0_i(),this.yun1_i(),this.qiqiu_i(),this.car1_i(),this.car2_i(),this.tree_i(),this.ship_i(),this.startBtn_i(),this.prizeBtn_i(),this.gPrize_i()];
-
- eui.Binding.$bindProperties(this, ["car1"],[0],this._TweenItem1,"target");
- eui.Binding.$bindProperties(this, [807.36],[],this._Object1,"y");
- eui.Binding.$bindProperties(this, [-49],[],this._Object2,"x");
- eui.Binding.$bindProperties(this, [1287.61],[],this._Object2,"y");
- eui.Binding.$bindProperties(this, ["car2"],[0],this._TweenItem2,"target");
- eui.Binding.$bindProperties(this, [-31.5],[],this._Object3,"x");
- eui.Binding.$bindProperties(this, [1248],[],this._Object3,"y");
- eui.Binding.$bindProperties(this, [784.85],[],this._Object4,"x");
- eui.Binding.$bindProperties(this, [778.36],[],this._Object4,"y");
- }
- var _proto = HomePageSkin.prototype;
- _proto.anCar1_i = function () {
- var t = new egret.tween.TweenGroup();
- this.anCar1 = t;
- t.items = [this._TweenItem1_i()];
- return t;
- };
- _proto._TweenItem1_i = function () {
- var t = new egret.tween.TweenItem();
- this._TweenItem1 = t;
- t.paths = [this._Set1_i(),this._To1_i()];
- return t;
- };
- _proto._Set1_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object1_i();
- return t;
- };
- _proto._Object1_i = function () {
- var t = {};
- this._Object1 = t;
- return t;
- };
- _proto._To1_i = function () {
- var t = new egret.tween.To();
- t.duration = 7500;
- t.props = this._Object2_i();
- return t;
- };
- _proto._Object2_i = function () {
- var t = {};
- this._Object2 = t;
- return t;
- };
- _proto.anCar2_i = function () {
- var t = new egret.tween.TweenGroup();
- this.anCar2 = t;
- t.items = [this._TweenItem2_i()];
- return t;
- };
- _proto._TweenItem2_i = function () {
- var t = new egret.tween.TweenItem();
- this._TweenItem2 = t;
- t.paths = [this._Set2_i(),this._To2_i()];
- return t;
- };
- _proto._Set2_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object3_i();
- return t;
- };
- _proto._Object3_i = function () {
- var t = {};
- this._Object3 = t;
- return t;
- };
- _proto._To2_i = function () {
- var t = new egret.tween.To();
- t.duration = 5000;
- t.props = this._Object4_i();
- return t;
- };
- _proto._Object4_i = function () {
- var t = {};
- this._Object4 = t;
- return t;
- };
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.source = "homeBg_jpg";
- t.x = 0;
- t.y = 0;
- return t;
- };
- _proto.yun0_i = function () {
- var t = new eui.Image();
- this.yun0 = t;
- t.source = "homeYun_png";
- t.x = 18.4;
- t.y = 136.3;
- return t;
- };
- _proto.yun1_i = function () {
- var t = new eui.Image();
- this.yun1 = t;
- t.source = "homeYun_png";
- t.x = 595.56;
- t.y = 37.82;
- return t;
- };
- _proto.qiqiu_i = function () {
- var t = new eui.Image();
- this.qiqiu = t;
- t.source = "homeQiqiu_png";
- t.x = 234.92;
- t.y = 218.33;
- return t;
- };
- _proto.car1_i = function () {
- var t = new eui.Image();
- this.car1 = t;
- t.anchorOffsetX = 45;
- t.anchorOffsetY = 38;
- t.source = "homeCar_png";
- t.x = 793.01;
- t.y = 811.36;
- return t;
- };
- _proto.car2_i = function () {
- var t = new eui.Image();
- this.car2 = t;
- t.anchorOffsetX = 35;
- t.anchorOffsetY = 23;
- t.source = "homeCar2_png";
- t.x = 653.52;
- t.y = 860.2;
- return t;
- };
- _proto.tree_i = function () {
- var t = new eui.Image();
- this.tree = t;
- t.source = "homeTree_png";
- t.x = 0;
- t.y = 893.5;
- return t;
- };
- _proto.ship_i = function () {
- var t = new eui.Image();
- this.ship = t;
- t.source = "homeBigChuan_png";
- t.x = 349.85;
- t.y = 968;
- return t;
- };
- _proto.startBtn_i = function () {
- var t = new eui.Image();
- this.startBtn = t;
- t.anchorOffsetX = 150;
- t.anchorOffsetY = 82;
- t.source = "startBtn_png";
- t.x = 376;
- t.y = 1327.61;
- return t;
- };
- _proto.prizeBtn_i = function () {
- var t = new eui.Image();
- this.prizeBtn = t;
- t.source = "homePrizeBtn_png";
- t.x = 620;
- t.y = 80;
- return t;
- };
- _proto.gPrize_i = function () {
- var t = new eui.Group();
- this.gPrize = t;
- t.height = 1600;
- t.visible = false;
- t.width = 750;
- t.x = 0;
- t.y = 0;
- t.elementsContent = [this.tipImg_i(),this._Rect1_i(),this._Image2_i(),this.closeBtn_i(),this._Group1_i()];
- return t;
- };
- _proto.tipImg_i = function () {
- var t = new eui.Image();
- this.tipImg = t;
- t.source = "img/tip01.jpg";
- t.visible = false;
- t.x = 0;
- t.y = 0;
- return t;
- };
- _proto._Rect1_i = function () {
- var t = new eui.Rect();
- t.bottom = 0;
- t.fillAlpha = 0.7;
- t.left = 0;
- t.right = 0;
- t.top = 0;
- return t;
- };
- _proto._Image2_i = function () {
- var t = new eui.Image();
- t.source = "img/myPrizeBg.png";
- t.x = 89;
- t.y = 260;
- return t;
- };
- _proto.closeBtn_i = function () {
- var t = new ToumingBtn();
- this.closeBtn = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 96;
- t.width = 92;
- t.x = 588;
- t.y = 262;
- return t;
- };
- _proto._Group1_i = function () {
- var t = new eui.Group();
- t.anchorOffsetY = 0;
- t.height = 645;
- t.width = 567;
- t.x = 91;
- t.y = 478;
- t.layout = this._VerticalLayout1_i();
- t.elementsContent = [this.bar0_i(),this.bar1_i()];
- return t;
- };
- _proto._VerticalLayout1_i = function () {
- var t = new eui.VerticalLayout();
- t.gap = 30;
- t.horizontalAlign = "center";
- t.verticalAlign = "top";
- return t;
- };
- _proto.bar0_i = function () {
- var t = new eui.Group();
- this.bar0 = t;
- t.scaleX = 1;
- t.scaleY = 1;
- t.x = 30.900000000000006;
- t.y = 20;
- t.layout = this._BasicLayout1_i();
- t.elementsContent = [this._Image3_i(),this.la0_i(),this.lingquBtn0_i()];
- return t;
- };
- _proto._BasicLayout1_i = function () {
- var t = new eui.BasicLayout();
- return t;
- };
- _proto._Image3_i = function () {
- var t = new eui.Image();
- t.source = "img/prizeBar.png";
- t.x = 0;
- t.y = 0;
- return t;
- };
- _proto.la0_i = function () {
- var t = new eui.Label();
- this.la0 = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 55.76;
- t.text = "Label";
- t.textColor = 0x000000;
- t.verticalAlign = "middle";
- t.width = 323.39;
- t.x = 33.96;
- t.y = 46.92;
- return t;
- };
- _proto.lingquBtn0_i = function () {
- var t = new eui.Image();
- this.lingquBtn0 = t;
- t.source = "img/lingquBtn.png";
- t.x = 391;
- t.y = 49.52;
- return t;
- };
- _proto.bar1_i = function () {
- var t = new eui.Group();
- this.bar1 = t;
- t.scaleX = 1;
- t.scaleY = 1;
- t.x = 30.900000000000006;
- t.y = 186;
- t.layout = this._BasicLayout2_i();
- t.elementsContent = [this._Image4_i(),this.la1_i(),this.lingquBtn1_i()];
- return t;
- };
- _proto._BasicLayout2_i = function () {
- var t = new eui.BasicLayout();
- return t;
- };
- _proto._Image4_i = function () {
- var t = new eui.Image();
- t.source = "img/prizeBar.png";
- t.x = 0;
- t.y = 0;
- return t;
- };
- _proto.la1_i = function () {
- var t = new eui.Label();
- this.la1 = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 55.76;
- t.text = "Label";
- t.textColor = 0x000000;
- t.verticalAlign = "middle";
- t.width = 330.39;
- t.x = 26.96;
- t.y = 46.92;
- return t;
- };
- _proto.lingquBtn1_i = function () {
- var t = new eui.Image();
- this.lingquBtn1 = t;
- t.source = "img/lingquBtn.png";
- t.x = 391;
- t.y = 49.52;
- return t;
- };
- return HomePageSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/HScrollBarSkin.exml'] = window.skins.HScrollBarSkin = (function (_super) {
- __extends(HScrollBarSkin, _super);
- function HScrollBarSkin() {
- _super.call(this);
- this.skinParts = ["thumb"];
-
- this.minHeight = 8;
- this.minWidth = 20;
- this.elementsContent = [this.thumb_i()];
- }
- var _proto = HScrollBarSkin.prototype;
- _proto.thumb_i = function () {
- var t = new eui.Image();
- this.thumb = t;
- t.height = 8;
- t.scale9Grid = new egret.Rectangle(3,3,2,2);
- t.source = "roundthumb_png";
- t.verticalCenter = 0;
- t.width = 30;
- return t;
- };
- return HScrollBarSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/HSliderSkin.exml'] = window.skins.HSliderSkin = (function (_super) {
- __extends(HSliderSkin, _super);
- function HSliderSkin() {
- _super.call(this);
- this.skinParts = ["track","thumb"];
-
- this.minHeight = 8;
- this.minWidth = 20;
- this.elementsContent = [this.track_i(),this.thumb_i()];
- }
- var _proto = HSliderSkin.prototype;
- _proto.track_i = function () {
- var t = new eui.Image();
- this.track = t;
- t.height = 6;
- t.scale9Grid = new egret.Rectangle(1,1,4,4);
- t.source = "track_sb_png";
- t.verticalCenter = 0;
- t.percentWidth = 100;
- return t;
- };
- _proto.thumb_i = function () {
- var t = new eui.Image();
- this.thumb = t;
- t.source = "thumb_png";
- t.verticalCenter = 0;
- return t;
- };
- return HSliderSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/IconMc.exml'] = window.IconMcSkin = (function (_super) {
- __extends(IconMcSkin, _super);
- function IconMcSkin() {
- _super.call(this);
- this.skinParts = ["iconBit","dan"];
-
- this.height = 90;
- this.width = 110;
- this.elementsContent = [this.iconBit_i(),this._Image1_i(),this.dan_i()];
- }
- var _proto = IconMcSkin.prototype;
- _proto.iconBit_i = function () {
- var t = new eui.Image();
- this.iconBit = t;
- t.source = "ic1_png";
- t.x = 1.98;
- t.y = 2.62;
- return t;
- };
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.source = "danShape_png";
- t.x = 68.96;
- t.y = 68.96;
- return t;
- };
- _proto.dan_i = function () {
- var t = new eui.Image();
- this.dan = t;
- t.anchorOffsetX = 24.67;
- t.anchorOffsetY = 44;
- t.source = "dan0_png";
- t.x = 87.32;
- t.y = 66;
- return t;
- };
- return IconMcSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/InfoPage.exml'] = window.InfoPageSkin = (function (_super) {
- __extends(InfoPageSkin, _super);
- function InfoPageSkin() {
- _super.call(this);
- this.skinParts = ["closeInfoBtn","tID","tName","tTel","tAdd","tijiaoBtn","gInfo"];
-
- this.height = 1600;
- this.width = 750;
- this.elementsContent = [this.gInfo_i()];
- }
- var _proto = InfoPageSkin.prototype;
- _proto.gInfo_i = function () {
- var t = new eui.Group();
- this.gInfo = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 1600;
- t.width = 750;
- t.x = 0;
- t.y = 0;
- t.elementsContent = [this._Rect1_i(),this._Image1_i(),this.closeInfoBtn_i(),this.tID_i(),this.tName_i(),this.tTel_i(),this.tAdd_i(),this.tijiaoBtn_i()];
- return t;
- };
- _proto._Rect1_i = function () {
- var t = new eui.Rect();
- t.bottom = 0;
- t.fillAlpha = 0.7;
- t.left = 0;
- t.right = 0;
- t.top = 0;
- return t;
- };
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.source = "img/infoBg.png";
- t.x = 89;
- t.y = 203;
- return t;
- };
- _proto.closeInfoBtn_i = function () {
- var t = new ToumingBtn();
- this.closeInfoBtn = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 81.39;
- t.width = 107.76;
- t.x = 576.45;
- t.y = 248.15;
- return t;
- };
- _proto.tID_i = function () {
- var t = new eui.Label();
- this.tID = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 50;
- t.size = 33;
- t.text = "xxxx";
- t.textAlign = "center";
- t.verticalAlign = "middle";
- t.width = 306;
- t.x = 312;
- t.y = 474;
- return t;
- };
- _proto.tName_i = function () {
- var t = new eui.EditableText();
- this.tName = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 54;
- t.text = "Label";
- t.textColor = 0x000000;
- t.verticalAlign = "middle";
- t.width = 462;
- t.x = 144;
- t.y = 630;
- return t;
- };
- _proto.tTel_i = function () {
- var t = new eui.EditableText();
- this.tTel = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 54;
- t.inputType = "tel";
- t.text = "Label";
- t.textColor = 0x000000;
- t.verticalAlign = "middle";
- t.width = 462;
- t.x = 144;
- t.y = 786;
- return t;
- };
- _proto.tAdd_i = function () {
- var t = new eui.EditableText();
- this.tAdd = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 134;
- t.lineSpacing = 20;
- t.multiline = true;
- t.text = "Label";
- t.textColor = 0x000000;
- t.verticalAlign = "top";
- t.width = 462;
- t.x = 144;
- t.y = 948;
- return t;
- };
- _proto.tijiaoBtn_i = function () {
- var t = new eui.Image();
- this.tijiaoBtn = t;
- t.source = "tijiaoBtn_png";
- t.x = 256;
- t.y = 1136;
- return t;
- };
- return InfoPageSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/InGame.exml'] = window.InGameSkin = (function (_super) {
- __extends(InGameSkin, _super);
- function InGameSkin() {
- _super.call(this);
- this.skinParts = ["qiyeDiaAn","gerenDiaAn","_bird","addBtn"];
-
- this.height = 1465;
- this.width = 750;
- this.qiyeDiaAn_i();
- this.gerenDiaAn_i();
- this.elementsContent = [this._bird_i(),this.addBtn_i()];
-
- eui.Binding.$bindProperties(this, ["hostComponent.dq1"],[0],this._TweenItem1,"target");
- eui.Binding.$bindProperties(this, [0],[],this._Object1,"alpha");
- eui.Binding.$bindProperties(this, [0],[],this._Object2,"alpha");
- eui.Binding.$bindProperties(this, [-0.01],[],this._Object2,"x");
- eui.Binding.$bindProperties(this, [1],[],this._Object3,"alpha");
- eui.Binding.$bindProperties(this, [58],[],this._Object3,"x");
- eui.Binding.$bindProperties(this, ["hostComponent.dq2"],[0],this._TweenItem2,"target");
- eui.Binding.$bindProperties(this, [0],[],this._Object4,"alpha");
- eui.Binding.$bindProperties(this, [0],[],this._Object5,"alpha");
- eui.Binding.$bindProperties(this, [0],[],this._Object6,"alpha");
- eui.Binding.$bindProperties(this, [32],[],this._Object6,"x");
- eui.Binding.$bindProperties(this, [1],[],this._Object7,"alpha");
- eui.Binding.$bindProperties(this, [0.24],[],this._Object7,"x");
- eui.Binding.$bindProperties(this, ["hostComponent.dq3"],[0],this._TweenItem3,"target");
- eui.Binding.$bindProperties(this, [0],[],this._Object8,"alpha");
- eui.Binding.$bindProperties(this, [0],[],this._Object9,"alpha");
- eui.Binding.$bindProperties(this, [0],[],this._Object10,"alpha");
- eui.Binding.$bindProperties(this, [132],[],this._Object10,"x");
- eui.Binding.$bindProperties(this, [1],[],this._Object11,"alpha");
- eui.Binding.$bindProperties(this, [-0.01],[],this._Object11,"x");
- eui.Binding.$bindProperties(this, ["hostComponent.dg1"],[0],this._TweenItem4,"target");
- eui.Binding.$bindProperties(this, [0],[],this._Object12,"alpha");
- eui.Binding.$bindProperties(this, [49.73],[],this._Object13,"x");
- eui.Binding.$bindProperties(this, [1],[],this._Object14,"alpha");
- eui.Binding.$bindProperties(this, [92.03],[],this._Object14,"x");
- eui.Binding.$bindProperties(this, ["hostComponent.dg2"],[0],this._TweenItem5,"target");
- eui.Binding.$bindProperties(this, [0],[],this._Object15,"alpha");
- eui.Binding.$bindProperties(this, [0],[],this._Object16,"alpha");
- eui.Binding.$bindProperties(this, [54],[],this._Object16,"x");
- eui.Binding.$bindProperties(this, [1],[],this._Object17,"alpha");
- eui.Binding.$bindProperties(this, [1.33],[],this._Object17,"x");
- eui.Binding.$bindProperties(this, ["hostComponent.dg3"],[0],this._TweenItem6,"target");
- eui.Binding.$bindProperties(this, [0],[],this._Object18,"alpha");
- eui.Binding.$bindProperties(this, [0],[],this._Object19,"alpha");
- eui.Binding.$bindProperties(this, [60],[],this._Object19,"x");
- eui.Binding.$bindProperties(this, [1],[],this._Object20,"alpha");
- eui.Binding.$bindProperties(this, [0],[],this._Object20,"x");
- }
- var _proto = InGameSkin.prototype;
- _proto.qiyeDiaAn_i = function () {
- var t = new egret.tween.TweenGroup();
- this.qiyeDiaAn = t;
- t.items = [this._TweenItem1_i(),this._TweenItem2_i(),this._TweenItem3_i()];
- return t;
- };
- _proto._TweenItem1_i = function () {
- var t = new egret.tween.TweenItem();
- this._TweenItem1 = t;
- t.paths = [this._Set1_i(),this._Wait1_i(),this._Set2_i(),this._To1_i()];
- return t;
- };
- _proto._Set1_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object1_i();
- return t;
- };
- _proto._Object1_i = function () {
- var t = {};
- this._Object1 = t;
- return t;
- };
- _proto._Wait1_i = function () {
- var t = new egret.tween.Wait();
- t.duration = 500;
- return t;
- };
- _proto._Set2_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object2_i();
- return t;
- };
- _proto._Object2_i = function () {
- var t = {};
- this._Object2 = t;
- return t;
- };
- _proto._To1_i = function () {
- var t = new egret.tween.To();
- t.duration = 450;
- t.ease = "sineOut";
- t.props = this._Object3_i();
- return t;
- };
- _proto._Object3_i = function () {
- var t = {};
- this._Object3 = t;
- return t;
- };
- _proto._TweenItem2_i = function () {
- var t = new egret.tween.TweenItem();
- this._TweenItem2 = t;
- t.paths = [this._Set3_i(),this._Wait2_i(),this._Set4_i(),this._To2_i(),this._To3_i()];
- return t;
- };
- _proto._Set3_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object4_i();
- return t;
- };
- _proto._Object4_i = function () {
- var t = {};
- this._Object4 = t;
- return t;
- };
- _proto._Wait2_i = function () {
- var t = new egret.tween.Wait();
- t.duration = 500;
- return t;
- };
- _proto._Set4_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object5_i();
- return t;
- };
- _proto._Object5_i = function () {
- var t = {};
- this._Object5 = t;
- return t;
- };
- _proto._To2_i = function () {
- var t = new egret.tween.To();
- t.duration = 450;
- t.props = this._Object6_i();
- return t;
- };
- _proto._Object6_i = function () {
- var t = {};
- this._Object6 = t;
- return t;
- };
- _proto._To3_i = function () {
- var t = new egret.tween.To();
- t.duration = 450;
- t.ease = "sineOut";
- t.props = this._Object7_i();
- return t;
- };
- _proto._Object7_i = function () {
- var t = {};
- this._Object7 = t;
- return t;
- };
- _proto._TweenItem3_i = function () {
- var t = new egret.tween.TweenItem();
- this._TweenItem3 = t;
- t.paths = [this._Set5_i(),this._Wait3_i(),this._Set6_i(),this._To4_i(),this._To5_i()];
- return t;
- };
- _proto._Set5_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object8_i();
- return t;
- };
- _proto._Object8_i = function () {
- var t = {};
- this._Object8 = t;
- return t;
- };
- _proto._Wait3_i = function () {
- var t = new egret.tween.Wait();
- t.duration = 500;
- return t;
- };
- _proto._Set6_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object9_i();
- return t;
- };
- _proto._Object9_i = function () {
- var t = {};
- this._Object9 = t;
- return t;
- };
- _proto._To4_i = function () {
- var t = new egret.tween.To();
- t.duration = 900;
- t.props = this._Object10_i();
- return t;
- };
- _proto._Object10_i = function () {
- var t = {};
- this._Object10 = t;
- return t;
- };
- _proto._To5_i = function () {
- var t = new egret.tween.To();
- t.duration = 450;
- t.ease = "sineOut";
- t.props = this._Object11_i();
- return t;
- };
- _proto._Object11_i = function () {
- var t = {};
- this._Object11 = t;
- return t;
- };
- _proto.gerenDiaAn_i = function () {
- var t = new egret.tween.TweenGroup();
- this.gerenDiaAn = t;
- t.items = [this._TweenItem4_i(),this._TweenItem5_i(),this._TweenItem6_i()];
- return t;
- };
- _proto._TweenItem4_i = function () {
- var t = new egret.tween.TweenItem();
- this._TweenItem4 = t;
- t.paths = [this._Set7_i(),this._Wait4_i(),this._Set8_i(),this._To6_i()];
- return t;
- };
- _proto._Set7_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object12_i();
- return t;
- };
- _proto._Object12_i = function () {
- var t = {};
- this._Object12 = t;
- return t;
- };
- _proto._Wait4_i = function () {
- var t = new egret.tween.Wait();
- t.duration = 500;
- return t;
- };
- _proto._Set8_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object13_i();
- return t;
- };
- _proto._Object13_i = function () {
- var t = {};
- this._Object13 = t;
- return t;
- };
- _proto._To6_i = function () {
- var t = new egret.tween.To();
- t.duration = 500;
- t.ease = "sineOut";
- t.props = this._Object14_i();
- return t;
- };
- _proto._Object14_i = function () {
- var t = {};
- this._Object14 = t;
- return t;
- };
- _proto._TweenItem5_i = function () {
- var t = new egret.tween.TweenItem();
- this._TweenItem5 = t;
- t.paths = [this._Set9_i(),this._Wait5_i(),this._Set10_i(),this._To7_i()];
- return t;
- };
- _proto._Set9_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object15_i();
- return t;
- };
- _proto._Object15_i = function () {
- var t = {};
- this._Object15 = t;
- return t;
- };
- _proto._Wait5_i = function () {
- var t = new egret.tween.Wait();
- t.duration = 1000;
- return t;
- };
- _proto._Set10_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object16_i();
- return t;
- };
- _proto._Object16_i = function () {
- var t = {};
- this._Object16 = t;
- return t;
- };
- _proto._To7_i = function () {
- var t = new egret.tween.To();
- t.duration = 500;
- t.ease = "sineOut";
- t.props = this._Object17_i();
- return t;
- };
- _proto._Object17_i = function () {
- var t = {};
- this._Object17 = t;
- return t;
- };
- _proto._TweenItem6_i = function () {
- var t = new egret.tween.TweenItem();
- this._TweenItem6 = t;
- t.paths = [this._Set11_i(),this._Wait6_i(),this._Set12_i(),this._To8_i()];
- return t;
- };
- _proto._Set11_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object18_i();
- return t;
- };
- _proto._Object18_i = function () {
- var t = {};
- this._Object18 = t;
- return t;
- };
- _proto._Wait6_i = function () {
- var t = new egret.tween.Wait();
- t.duration = 1500;
- return t;
- };
- _proto._Set12_i = function () {
- var t = new egret.tween.Set();
- t.props = this._Object19_i();
- return t;
- };
- _proto._Object19_i = function () {
- var t = {};
- this._Object19 = t;
- return t;
- };
- _proto._To8_i = function () {
- var t = new egret.tween.To();
- t.duration = 500;
- t.ease = "sineOut";
- t.props = this._Object20_i();
- return t;
- };
- _proto._Object20_i = function () {
- var t = {};
- this._Object20 = t;
- return t;
- };
- _proto._bird_i = function () {
- var t = new eui.Image();
- this._bird = t;
- t.anchorOffsetX = 500;
- t.scaleX = 1;
- t.source = "map3000_jpg";
- t.x = 375;
- t.y = 0;
- return t;
- };
- _proto.addBtn_i = function () {
- var t = new eui.Image();
- this.addBtn = t;
- t.source = "aloadingBar0_png";
- t.x = 288;
- t.y = 72;
- return t;
- };
- return InGameSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/ItemRendererSkin.exml'] = window.skins.ItemRendererSkin = (function (_super) {
- __extends(ItemRendererSkin, _super);
- function ItemRendererSkin() {
- _super.call(this);
- this.skinParts = ["labelDisplay"];
-
- this.minHeight = 50;
- this.minWidth = 100;
- this.elementsContent = [this._Image1_i(),this.labelDisplay_i()];
- this.states = [
- new eui.State ("up",
- [
- ])
- ,
- new eui.State ("down",
- [
- new eui.SetProperty("_Image1","source","button_down_png")
- ])
- ,
- new eui.State ("disabled",
- [
- new eui.SetProperty("_Image1","alpha",0.5)
- ])
- ];
-
- eui.Binding.$bindProperties(this, ["hostComponent.data"],[0],this.labelDisplay,"text");
- }
- var _proto = ItemRendererSkin.prototype;
- _proto._Image1_i = function () {
- var t = new eui.Image();
- this._Image1 = t;
- t.percentHeight = 100;
- t.scale9Grid = new egret.Rectangle(1,3,8,8);
- t.source = "button_up_png";
- t.percentWidth = 100;
- return t;
- };
- _proto.labelDisplay_i = function () {
- var t = new eui.Label();
- this.labelDisplay = t;
- t.bottom = 8;
- t.fontFamily = "Tahoma";
- t.left = 8;
- t.right = 8;
- t.size = 20;
- t.textAlign = "center";
- t.textColor = 0xFFFFFF;
- t.top = 8;
- t.verticalAlign = "middle";
- return t;
- };
- return ItemRendererSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/MainGame.exml'] = window.MainGameSkin = (function (_super) {
- __extends(MainGameSkin, _super);
- function MainGameSkin() {
- _super.call(this);
- this.skinParts = [];
-
- this.height = 1465;
- this.width = 750;
- }
- var _proto = MainGameSkin.prototype;
- return MainGameSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/PanelSkin.exml'] = window.skins.PanelSkin = (function (_super) {
- __extends(PanelSkin, _super);
- function PanelSkin() {
- _super.call(this);
- this.skinParts = ["titleDisplay","moveArea","closeButton"];
-
- this.minHeight = 230;
- this.minWidth = 450;
- this.elementsContent = [this._Image1_i(),this.moveArea_i(),this.closeButton_i()];
- }
- var _proto = PanelSkin.prototype;
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.bottom = 0;
- t.left = 0;
- t.right = 0;
- t.scale9Grid = new egret.Rectangle(2,2,12,12);
- t.source = "border_png";
- t.top = 0;
- return t;
- };
- _proto.moveArea_i = function () {
- var t = new eui.Group();
- this.moveArea = t;
- t.height = 45;
- t.left = 0;
- t.right = 0;
- t.top = 0;
- t.elementsContent = [this._Image2_i(),this.titleDisplay_i()];
- return t;
- };
- _proto._Image2_i = function () {
- var t = new eui.Image();
- t.bottom = 0;
- t.left = 0;
- t.right = 0;
- t.source = "header_png";
- t.top = 0;
- return t;
- };
- _proto.titleDisplay_i = function () {
- var t = new eui.Label();
- this.titleDisplay = t;
- t.fontFamily = "Tahoma";
- t.left = 15;
- t.right = 5;
- t.size = 20;
- t.textColor = 0xFFFFFF;
- t.verticalCenter = 0;
- t.wordWrap = false;
- return t;
- };
- _proto.closeButton_i = function () {
- var t = new eui.Button();
- this.closeButton = t;
- t.bottom = 5;
- t.horizontalCenter = 0;
- t.label = "close";
- return t;
- };
- return PanelSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/PrizePage.exml'] = window.PrizePageSkin = (function (_super) {
- __extends(PrizePageSkin, _super);
- function PrizePageSkin() {
- _super.call(this);
- this.skinParts = ["winBg","prizeBit","tName","tTel","tAdd","tijiaoBtn","gWin","youhuiBit","shareBtn","linkBtn","gLose","shareBtn2","homeBtn","gTijiaoOk"];
-
- this.height = 1465;
- this.width = 750;
- this.elementsContent = [this._Image1_i(),this._Image2_i(),this._Image3_i(),this._Image4_i(),this._ToumingBg1_i(),this.gWin_i(),this.gLose_i(),this.gTijiaoOk_i()];
- }
- var _proto = PrizePageSkin.prototype;
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.height = 1565;
- t.source = "homeBg_jpg";
- t.x = 0;
- t.y = -50;
- return t;
- };
- _proto._Image2_i = function () {
- var t = new eui.Image();
- t.horizontalCenter = 0.5;
- t.source = "homeTitle_png";
- t.y = 192;
- return t;
- };
- _proto._Image3_i = function () {
- var t = new eui.Image();
- t.source = "homeC1_png";
- t.x = 312;
- t.y = 436;
- return t;
- };
- _proto._Image4_i = function () {
- var t = new eui.Image();
- t.source = "homeC2_png";
- t.x = 508;
- t.y = 442;
- return t;
- };
- _proto._ToumingBg1_i = function () {
- var t = new ToumingBg();
- t.anchorOffsetY = 0;
- t.height = 1800;
- t.width = 750;
- t.x = 0;
- t.y = -150;
- return t;
- };
- _proto.gWin_i = function () {
- var t = new eui.Group();
- this.gWin = t;
- t.height = 1465;
- t.visible = false;
- t.width = 750;
- t.x = 0;
- t.y = 0;
- t.elementsContent = [this.winBg_i(),this.prizeBit_i(),this.tName_i(),this.tTel_i(),this.tAdd_i(),this.tijiaoBtn_i()];
- return t;
- };
- _proto.winBg_i = function () {
- var t = new eui.Image();
- this.winBg = t;
- t.horizontalCenter = 0;
- t.source = "getPrize_png";
- t.y = 184.82;
- return t;
- };
- _proto.prizeBit_i = function () {
- var t = new eui.Image();
- this.prizeBit = t;
- t.anchorOffsetX = 158;
- t.anchorOffsetY = 91;
- t.horizontalCenter = 0;
- t.source = "prize6_png";
- t.y = 540.81;
- return t;
- };
- _proto.tName_i = function () {
- var t = new eui.EditableText();
- this.tName = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.fontFamily = "SimHei";
- t.height = 68;
- t.prompt = "请输入您的姓名";
- t.promptColor = 0xffffff;
- t.size = 30;
- t.text = "";
- t.textAlign = "left";
- t.verticalAlign = "middle";
- t.width = 378;
- t.x = 181.66;
- t.y = 756.48;
- return t;
- };
- _proto.tTel_i = function () {
- var t = new eui.EditableText();
- this.tTel = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.fontFamily = "SimHei";
- t.height = 68;
- t.inputType = "tel";
- t.prompt = "请输入您的联系电话";
- t.promptColor = 0xffffff;
- t.size = 30;
- t.text = "";
- t.textAlign = "left";
- t.verticalAlign = "middle";
- t.width = 378;
- t.x = 181.66;
- t.y = 847.38;
- return t;
- };
- _proto.tAdd_i = function () {
- var t = new eui.EditableText();
- this.tAdd = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.fontFamily = "SimHei";
- t.height = 68;
- t.prompt = "请输入邮寄地址";
- t.promptColor = 0xffffff;
- t.size = 30;
- t.text = "";
- t.textAlign = "left";
- t.verticalAlign = "middle";
- t.width = 378;
- t.x = 181.66;
- t.y = 938.28;
- return t;
- };
- _proto.tijiaoBtn_i = function () {
- var t = new eui.Image();
- this.tijiaoBtn = t;
- t.anchorOffsetX = 101.5;
- t.anchorOffsetY = 38.5;
- t.scaleX = 1;
- t.scaleY = 1;
- t.source = "tijiaoBtn_png";
- t.x = 385;
- t.y = 1093.26;
- return t;
- };
- _proto.gLose_i = function () {
- var t = new eui.Group();
- this.gLose = t;
- t.height = 1465;
- t.width = 750;
- t.x = 0;
- t.y = 0;
- t.elementsContent = [this._Image5_i(),this.youhuiBit_i(),this.shareBtn_i(),this.linkBtn_i()];
- return t;
- };
- _proto._Image5_i = function () {
- var t = new eui.Image();
- t.horizontalCenter = 0;
- t.source = "prizeYouhuiBg_png";
- t.y = 185.14;
- return t;
- };
- _proto.youhuiBit_i = function () {
- var t = new eui.Image();
- this.youhuiBit = t;
- t.source = "";
- t.x = 138.97;
- t.y = 451.04;
- return t;
- };
- _proto.shareBtn_i = function () {
- var t = new eui.Image();
- this.shareBtn = t;
- t.source = "shareBtn_png";
- t.x = 146.4;
- t.y = 789.18;
- return t;
- };
- _proto.linkBtn_i = function () {
- var t = new eui.Image();
- this.linkBtn = t;
- t.source = "linkBtn_png";
- t.x = 416;
- t.y = 789.18;
- return t;
- };
- _proto.gTijiaoOk_i = function () {
- var t = new eui.Group();
- this.gTijiaoOk = t;
- t.height = 1465;
- t.visible = false;
- t.width = 750;
- t.x = 0;
- t.y = 0;
- t.elementsContent = [this._Image6_i(),this.shareBtn2_i(),this.homeBtn_i()];
- return t;
- };
- _proto._Image6_i = function () {
- var t = new eui.Image();
- t.horizontalCenter = 0;
- t.source = "tijiaoOk_png";
- t.y = 420;
- return t;
- };
- _proto.shareBtn2_i = function () {
- var t = new eui.Image();
- this.shareBtn2 = t;
- t.source = "shareBtn_png";
- t.x = 140;
- t.y = 800;
- return t;
- };
- _proto.homeBtn_i = function () {
- var t = new eui.Image();
- this.homeBtn = t;
- t.source = "homeBtn_png";
- t.x = 410;
- t.y = 800;
- return t;
- };
- return PrizePageSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/ProgressBarSkin.exml'] = window.skins.ProgressBarSkin = (function (_super) {
- __extends(ProgressBarSkin, _super);
- function ProgressBarSkin() {
- _super.call(this);
- this.skinParts = ["thumb","labelDisplay"];
-
- this.minHeight = 18;
- this.minWidth = 30;
- this.elementsContent = [this._Image1_i(),this.thumb_i(),this.labelDisplay_i()];
- }
- var _proto = ProgressBarSkin.prototype;
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.percentHeight = 100;
- t.scale9Grid = new egret.Rectangle(1,1,4,4);
- t.source = "track_pb_png";
- t.verticalCenter = 0;
- t.percentWidth = 100;
- return t;
- };
- _proto.thumb_i = function () {
- var t = new eui.Image();
- this.thumb = t;
- t.percentHeight = 100;
- t.source = "thumb_pb_png";
- t.percentWidth = 100;
- return t;
- };
- _proto.labelDisplay_i = function () {
- var t = new eui.Label();
- this.labelDisplay = t;
- t.fontFamily = "Tahoma";
- t.horizontalCenter = 0;
- t.size = 15;
- t.textAlign = "center";
- t.textColor = 0x707070;
- t.verticalAlign = "middle";
- t.verticalCenter = 0;
- return t;
- };
- return ProgressBarSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/QrPage.exml'] = window.QrPageSkin = (function (_super) {
- __extends(QrPageSkin, _super);
- function QrPageSkin() {
- _super.call(this);
- this.skinParts = [];
-
- this.height = 1600;
- this.width = 750;
- }
- var _proto = QrPageSkin.prototype;
- return QrPageSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/RadioButtonSkin.exml'] = window.skins.RadioButtonSkin = (function (_super) {
- __extends(RadioButtonSkin, _super);
- function RadioButtonSkin() {
- _super.call(this);
- this.skinParts = ["labelDisplay"];
-
- this.elementsContent = [this._Group1_i()];
- this.states = [
- new eui.State ("up",
- [
- ])
- ,
- new eui.State ("down",
- [
- new eui.SetProperty("_Image1","alpha",0.7)
- ])
- ,
- new eui.State ("disabled",
- [
- new eui.SetProperty("_Image1","alpha",0.5)
- ])
- ,
- new eui.State ("upAndSelected",
- [
- new eui.SetProperty("_Image1","source","radiobutton_select_up_png")
- ])
- ,
- new eui.State ("downAndSelected",
- [
- new eui.SetProperty("_Image1","source","radiobutton_select_down_png")
- ])
- ,
- new eui.State ("disabledAndSelected",
- [
- new eui.SetProperty("_Image1","source","radiobutton_select_disabled_png")
- ])
- ];
- }
- var _proto = RadioButtonSkin.prototype;
- _proto._Group1_i = function () {
- var t = new eui.Group();
- t.percentHeight = 100;
- t.percentWidth = 100;
- t.layout = this._HorizontalLayout1_i();
- t.elementsContent = [this._Image1_i(),this.labelDisplay_i()];
- return t;
- };
- _proto._HorizontalLayout1_i = function () {
- var t = new eui.HorizontalLayout();
- t.verticalAlign = "middle";
- return t;
- };
- _proto._Image1_i = function () {
- var t = new eui.Image();
- this._Image1 = t;
- t.alpha = 1;
- t.fillMode = "scale";
- t.source = "radiobutton_unselect_png";
- return t;
- };
- _proto.labelDisplay_i = function () {
- var t = new eui.Label();
- this.labelDisplay = t;
- t.fontFamily = "Tahoma";
- t.size = 20;
- t.textAlign = "center";
- t.textColor = 0x707070;
- t.verticalAlign = "middle";
- return t;
- };
- return RadioButtonSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/RankBar.exml'] = window.RankBarSkin = (function (_super) {
- __extends(RankBarSkin, _super);
- function RankBarSkin() {
- _super.call(this);
- this.skinParts = ["roundDi","head","ma","t","gold","rankTxt"];
-
- this.height = 80;
- this.width = 602;
- this.elementsContent = [this._Rect1_i(),this._Rect2_i(),this.roundDi_i(),this.head_i(),this.ma_i(),this.t_i(),this.gold_i(),this.rankTxt_i()];
- }
- var _proto = RankBarSkin.prototype;
- _proto._Rect1_i = function () {
- var t = new eui.Rect();
- t.fillColor = 0xffffff;
- t.height = 80;
- t.left = 0;
- t.right = 0;
- t.y = 0;
- return t;
- };
- _proto._Rect2_i = function () {
- var t = new eui.Rect();
- t.fillColor = 0xbbbbbb;
- t.height = 2;
- t.left = 0;
- t.right = 0;
- t.y = 78;
- return t;
- };
- _proto.roundDi_i = function () {
- var t = new eui.Rect();
- this.roundDi = t;
- t.anchorOffsetX = 25;
- t.anchorOffsetY = 25;
- t.ellipseHeight = 50;
- t.ellipseWidth = 50;
- t.fillColor = 0xffffff;
- t.height = 50;
- t.width = 50;
- t.x = 45;
- t.y = 40;
- return t;
- };
- _proto.head_i = function () {
- var t = new eui.Image();
- this.head = t;
- t.anchorOffsetX = 25;
- t.anchorOffsetY = 25;
- t.height = 50;
- t.width = 50;
- t.x = 45;
- t.y = 40;
- return t;
- };
- _proto.ma_i = function () {
- var t = new eui.Rect();
- this.ma = t;
- t.anchorOffsetX = 24;
- t.anchorOffsetY = 24;
- t.ellipseHeight = 48;
- t.ellipseWidth = 48;
- t.height = 48;
- t.width = 48;
- t.x = 45;
- t.y = 40;
- return t;
- };
- _proto.t_i = function () {
- var t = new eui.Label();
- this.t = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 44;
- t.size = 26;
- t.text = "";
- t.textColor = 0x000000;
- t.verticalAlign = "middle";
- t.width = 498.88;
- t.x = 91.45;
- t.y = 18;
- return t;
- };
- _proto.gold_i = function () {
- var t = new eui.Image();
- this.gold = t;
- t.source = "img/rankGold.png";
- t.x = -1151.03;
- t.y = 14;
- return t;
- };
- _proto.rankTxt_i = function () {
- var t = new eui.Label();
- this.rankTxt = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 44;
- t.size = 20;
- t.text = "1";
- t.textAlign = "center";
- t.textColor = 0xff0000;
- t.verticalAlign = "middle";
- t.width = 49.33;
- t.x = -1158.03;
- t.y = 21;
- return t;
- };
- return RankBarSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/RankBarNew.exml'] = window.RankBarNewSkin = (function (_super) {
- __extends(RankBarNewSkin, _super);
- function RankBarNewSkin() {
- _super.call(this);
- this.skinParts = ["head","ma","t"];
-
- this.height = 80;
- this.width = 600;
- this.elementsContent = [this._Rect1_i(),this._Rect2_i(),this.head_i(),this.ma_i(),this.t_i()];
- }
- var _proto = RankBarNewSkin.prototype;
- _proto._Rect1_i = function () {
- var t = new eui.Rect();
- t.fillColor = 0xFFFFFF;
- t.height = 80;
- t.left = 0;
- t.right = 0;
- t.y = 0;
- return t;
- };
- _proto._Rect2_i = function () {
- var t = new eui.Rect();
- t.fillColor = 0xBBBBBB;
- t.height = 2;
- t.left = 0;
- t.right = 0;
- t.y = 78;
- return t;
- };
- _proto.head_i = function () {
- var t = new eui.Image();
- this.head = t;
- t.anchorOffsetX = 25;
- t.anchorOffsetY = 25;
- t.height = 50;
- t.width = 50;
- t.x = 45;
- t.y = 40;
- return t;
- };
- _proto.ma_i = function () {
- var t = new eui.Rect();
- this.ma = t;
- t.anchorOffsetX = 24;
- t.anchorOffsetY = 24;
- t.ellipseHeight = 48;
- t.ellipseWidth = 48;
- t.height = 48;
- t.width = 48;
- t.x = 45;
- t.y = 40;
- return t;
- };
- _proto.t_i = function () {
- var t = new eui.Label();
- this.t = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 44;
- t.size = 26;
- t.text = "Label";
- t.textColor = 0x000000;
- t.verticalAlign = "middle";
- t.width = 499.33;
- t.x = 91;
- t.y = 18;
- return t;
- };
- return RankBarNewSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/RankMe.exml'] = window.RankMeSkin = (function (_super) {
- __extends(RankMeSkin, _super);
- function RankMeSkin() {
- _super.call(this);
- this.skinParts = ["head","ma","t"];
-
- this.height = 60;
- this.width = 602;
- this.elementsContent = [this._Rect1_i(),this.head_i(),this.ma_i(),this.t_i()];
- }
- var _proto = RankMeSkin.prototype;
- _proto._Rect1_i = function () {
- var t = new eui.Rect();
- t.anchorOffsetX = 27;
- t.anchorOffsetY = 27;
- t.ellipseHeight = 54;
- t.ellipseWidth = 54;
- t.fillColor = 0xffffff;
- t.height = 54;
- t.width = 54;
- t.x = 50;
- t.y = 30.9;
- return t;
- };
- _proto.head_i = function () {
- var t = new eui.Image();
- this.head = t;
- t.anchorOffsetX = 25;
- t.anchorOffsetY = 25;
- t.height = 50;
- t.width = 50;
- t.x = 50;
- t.y = 30.9;
- return t;
- };
- _proto.ma_i = function () {
- var t = new eui.Rect();
- this.ma = t;
- t.anchorOffsetX = 24;
- t.anchorOffsetY = 24;
- t.ellipseHeight = 48;
- t.ellipseWidth = 48;
- t.height = 48;
- t.width = 48;
- t.x = 50;
- t.y = 30.9;
- return t;
- };
- _proto.t_i = function () {
- var t = new eui.Label();
- this.t = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 44;
- t.size = 26;
- t.text = "";
- t.textColor = 0xffffff;
- t.verticalAlign = "middle";
- t.width = 496;
- t.x = 91;
- t.y = 7.4;
- return t;
- };
- return RankMeSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/RankPage.exml'] = window.RankPageSkin = (function (_super) {
- __extends(RankPageSkin, _super);
- function RankPageSkin() {
- _super.call(this);
- this.skinParts = ["tipImg","bar","closeBtn","btn0","btn1","rankMe","gTop","scTop","gNew","scNew"];
-
- this.height = 1600;
- this.width = 750;
- this.elementsContent = [this.tipImg_i(),this._Image1_i(),this.bar_i(),this.closeBtn_i(),this.btn0_i(),this.btn1_i(),this.rankMe_i(),this.scTop_i(),this.scNew_i()];
- }
- var _proto = RankPageSkin.prototype;
- _proto.tipImg_i = function () {
- var t = new eui.Image();
- this.tipImg = t;
- t.source = "img/tip01.jpg";
- t.visible = false;
- t.x = 0;
- t.y = 0;
- return t;
- };
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.source = "img/rankBg.png";
- t.x = 47;
- t.y = 150.62;
- return t;
- };
- _proto.bar_i = function () {
- var t = new eui.Image();
- this.bar = t;
- t.anchorOffsetX = 35.5;
- t.anchorOffsetY = 3;
- t.source = "img/rankBar.png";
- t.x = 240.59;
- t.y = 397.04;
- return t;
- };
- _proto.closeBtn_i = function () {
- var t = new ToumingBtn();
- this.closeBtn = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 105;
- t.width = 103;
- t.x = 614;
- t.y = 129.12;
- return t;
- };
- _proto.btn0_i = function () {
- var t = new ToumingBtn();
- this.btn0 = t;
- t.anchorOffsetX = 102.66;
- t.anchorOffsetY = 33.86;
- t.height = 65;
- t.width = 207;
- t.x = 240.25;
- t.y = 375.4;
- return t;
- };
- _proto.btn1_i = function () {
- var t = new ToumingBtn();
- this.btn1 = t;
- t.anchorOffsetX = 102.67;
- t.anchorOffsetY = 33.32;
- t.height = 66.34;
- t.width = 207;
- t.x = 507.58;
- t.y = 374.19;
- return t;
- };
- _proto.rankMe_i = function () {
- var t = new RankMe();
- this.rankMe = t;
- t.x = 78;
- t.y = 408.6;
- return t;
- };
- _proto.scTop_i = function () {
- var t = new eui.Scroller();
- this.scTop = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 937.88;
- t.scrollPolicyH = "off";
- t.scrollPolicyV = "on";
- t.width = 604.55;
- t.x = 74;
- t.y = 473.12;
- t.viewport = this.gTop_i();
- return t;
- };
- _proto.gTop_i = function () {
- var t = new eui.Group();
- this.gTop = t;
- t.layout = this._VerticalLayout1_i();
- return t;
- };
- _proto._VerticalLayout1_i = function () {
- var t = new eui.VerticalLayout();
- return t;
- };
- _proto.scNew_i = function () {
- var t = new eui.Scroller();
- this.scNew = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 937.88;
- t.scrollPolicyH = "off";
- t.scrollPolicyV = "on";
- t.width = 604.55;
- t.x = 74;
- t.y = 473.12;
- t.viewport = this.gNew_i();
- return t;
- };
- _proto.gNew_i = function () {
- var t = new eui.Group();
- this.gNew = t;
- t.layout = this._VerticalLayout2_i();
- return t;
- };
- _proto._VerticalLayout2_i = function () {
- var t = new eui.VerticalLayout();
- return t;
- };
- return RankPageSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/RedPoint.exml'] = window.RedPointSkin = (function (_super) {
- __extends(RedPointSkin, _super);
- function RedPointSkin() {
- _super.call(this);
- this.skinParts = ["r0","r1","r2"];
-
- this.height = 100;
- this.width = 100;
- this.elementsContent = [this.r0_i(),this.r1_i(),this.r2_i()];
- }
- var _proto = RedPointSkin.prototype;
- _proto.r0_i = function () {
- var t = new eui.Rect();
- this.r0 = t;
- t.anchorOffsetX = 25;
- t.anchorOffsetY = 25;
- t.ellipseWidth = 50;
- t.fillColor = 0xff5f2d;
- t.height = 50;
- t.horizontalCenter = 0;
- t.verticalCenter = 0;
- t.width = 50;
- return t;
- };
- _proto.r1_i = function () {
- var t = new eui.Rect();
- this.r1 = t;
- t.anchorOffsetX = 25;
- t.anchorOffsetY = 25;
- t.ellipseWidth = 50;
- t.fillColor = 0xFF5F2D;
- t.height = 50;
- t.horizontalCenter = 0;
- t.verticalCenter = 0;
- t.width = 50;
- return t;
- };
- _proto.r2_i = function () {
- var t = new eui.Rect();
- this.r2 = t;
- t.anchorOffsetX = 25;
- t.anchorOffsetY = 25;
- t.ellipseWidth = 50;
- t.fillColor = 0xFF5F2D;
- t.height = 50;
- t.horizontalCenter = 0;
- t.verticalCenter = 0;
- t.width = 50;
- return t;
- };
- return RedPointSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/ResultPage.exml'] = window.ResultPageSkin = (function (_super) {
- __extends(ResultPageSkin, _super);
- function ResultPageSkin() {
- _super.call(this);
- this.skinParts = ["haibaoBtn"];
-
- this.height = 1465;
- this.width = 750;
- this.elementsContent = [this._Image1_i(),this.haibaoBtn_i()];
- }
- var _proto = ResultPageSkin.prototype;
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.source = "img/resultBg10.jpg";
- t.x = 0;
- t.y = 0;
- return t;
- };
- _proto.haibaoBtn_i = function () {
- var t = new ToumingBtn();
- this.haibaoBtn = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 129.09;
- t.width = 513.94;
- t.x = 115;
- t.y = 1005.97;
- return t;
- };
- return ResultPageSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/ScrollerSkin.exml'] = window.skins.ScrollerSkin = (function (_super) {
- __extends(ScrollerSkin, _super);
- function ScrollerSkin() {
- _super.call(this);
- this.skinParts = ["horizontalScrollBar","verticalScrollBar"];
-
- this.minHeight = 20;
- this.minWidth = 20;
- this.elementsContent = [this.horizontalScrollBar_i(),this.verticalScrollBar_i()];
- }
- var _proto = ScrollerSkin.prototype;
- _proto.horizontalScrollBar_i = function () {
- var t = new eui.HScrollBar();
- this.horizontalScrollBar = t;
- t.bottom = 0;
- t.percentWidth = 100;
- return t;
- };
- _proto.verticalScrollBar_i = function () {
- var t = new eui.VScrollBar();
- this.verticalScrollBar = t;
- t.percentHeight = 100;
- t.right = 0;
- return t;
- };
- return ScrollerSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/TestPage.exml'] = window.TestPageSkin = (function (_super) {
- __extends(TestPageSkin, _super);
- function TestPageSkin() {
- _super.call(this);
- this.skinParts = ["endTxtImg","endBgImg","_bird","ingameCen","ingameTop","ingameDown","ma","recImg","recIcon","ruleBtn","shareBtn","secTxt","fangMc","icon1","icon2","icon3","icon4","icon5","icon6","icon7","icon8","icon9","icon10","icon11","icon12","icon13","icon14","icon15","gIcon","popImg","tianBtn","gPop","tipImg","gTip","closeRuleBtn","gRule","closeShareBtn","gShare","getImg","gGet"];
-
- this.height = 1600;
- this.width = 750;
- this.elementsContent = [this.endTxtImg_i(),this.endBgImg_i(),this._bird_i(),this.ingameCen_i(),this.ingameTop_i(),this.ingameDown_i(),this.ma_i(),this.recImg_i(),this.recIcon_i(),this.ruleBtn_i(),this.shareBtn_i(),this.secTxt_i(),this.fangMc_i(),this.gIcon_i(),this.gPop_i(),this.gTip_i(),this.gRule_i(),this.gShare_i(),this.gGet_i()];
- }
- var _proto = TestPageSkin.prototype;
- _proto.endTxtImg_i = function () {
- var t = new eui.Image();
- this.endTxtImg = t;
- t.height = 20;
- t.width = 20;
- t.x = 836;
- t.y = -82;
- return t;
- };
- _proto.endBgImg_i = function () {
- var t = new eui.Image();
- this.endBgImg = t;
- t.height = 20;
- t.width = 20;
- t.x = 846;
- t.y = -72;
- return t;
- };
- _proto._bird_i = function () {
- var t = new eui.Group();
- this._bird = t;
- t.scaleX = 0.5;
- t.scaleY = 0.5;
- return t;
- };
- _proto.ingameCen_i = function () {
- var t = new eui.Image();
- this.ingameCen = t;
- t.anchorOffsetY = 766;
- t.source = "ingameCen_png";
- t.x = 0;
- t.y = 1078;
- return t;
- };
- _proto.ingameTop_i = function () {
- var t = new eui.Image();
- this.ingameTop = t;
- t.source = "ingameTop_png";
- t.x = 0;
- t.y = 0;
- return t;
- };
- _proto.ingameDown_i = function () {
- var t = new eui.Image();
- this.ingameDown = t;
- t.source = "ingameDown_png";
- t.x = 0;
- t.y = 1078;
- return t;
- };
- _proto.ma_i = function () {
- var t = new eui.Rect();
- this.ma = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.fillAlpha = 0.5;
- t.fillColor = 0x17af00;
- t.height = 1002;
- t.width = 666.67;
- t.x = 43.18;
- t.y = 105;
- return t;
- };
- _proto.recImg_i = function () {
- var t = new eui.Image();
- this.recImg = t;
- t.source = "rec_png";
- t.x = 62;
- t.y = 306;
- return t;
- };
- _proto.recIcon_i = function () {
- var t = new eui.Rect();
- this.recIcon = t;
- t.ellipseHeight = 20;
- t.ellipseWidth = 20;
- t.fillColor = 0xff0000;
- t.height = 20;
- t.width = 20;
- t.x = 124.34;
- t.y = 307.66;
- return t;
- };
- _proto.ruleBtn_i = function () {
- var t = new eui.Image();
- this.ruleBtn = t;
- t.source = "ruleBtn_png";
- t.x = 61.32;
- t.y = 383.32;
- return t;
- };
- _proto.shareBtn_i = function () {
- var t = new eui.Image();
- this.shareBtn = t;
- t.source = "shareBtn_png";
- t.x = 59.99;
- t.y = 470;
- return t;
- };
- _proto.secTxt_i = function () {
- var t = new eui.Label();
- this.secTxt = t;
- t.fontFamily = "Microsoft YaHei";
- t.scaleX = 1;
- t.scaleY = 1;
- t.size = 26;
- t.stroke = 4;
- t.text = "120 s";
- t.textColor = 0xffcc56;
- t.width = 89;
- t.x = 64;
- t.y = 336.32;
- return t;
- };
- _proto.fangMc_i = function () {
- var t = new eui.Image();
- this.fangMc = t;
- t.source = "f1_png";
- t.x = 16;
- t.y = 1146;
- return t;
- };
- _proto.gIcon_i = function () {
- var t = new eui.Group();
- this.gIcon = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 293.94;
- t.width = 567.27;
- t.x = 181.76;
- t.y = 1145;
- t.layout = this._TileLayout1_i();
- t.elementsContent = [this.icon1_i(),this.icon2_i(),this.icon3_i(),this.icon4_i(),this.icon5_i(),this.icon6_i(),this.icon7_i(),this.icon8_i(),this.icon9_i(),this.icon10_i(),this.icon11_i(),this.icon12_i(),this.icon13_i(),this.icon14_i(),this.icon15_i()];
- return t;
- };
- _proto._TileLayout1_i = function () {
- var t = new eui.TileLayout();
- t.horizontalAlign = "left";
- t.horizontalGap = 0;
- t.orientation = "rows";
- t.requestedColumnCount = 5;
- t.requestedRowCount = 3;
- t.verticalAlign = "justify";
- t.verticalGap = 0;
- return t;
- };
- _proto.icon1_i = function () {
- var t = new IconMc();
- this.icon1 = t;
- t.x = 32;
- t.y = 35;
- return t;
- };
- _proto.icon2_i = function () {
- var t = new IconMc();
- this.icon2 = t;
- t.x = 42;
- t.y = 45;
- return t;
- };
- _proto.icon3_i = function () {
- var t = new IconMc();
- this.icon3 = t;
- t.x = 52;
- t.y = 55;
- return t;
- };
- _proto.icon4_i = function () {
- var t = new IconMc();
- this.icon4 = t;
- t.x = 62;
- t.y = 65;
- return t;
- };
- _proto.icon5_i = function () {
- var t = new IconMc();
- this.icon5 = t;
- t.x = 72;
- t.y = 75;
- return t;
- };
- _proto.icon6_i = function () {
- var t = new IconMc();
- this.icon6 = t;
- t.x = 82;
- t.y = 85;
- return t;
- };
- _proto.icon7_i = function () {
- var t = new IconMc();
- this.icon7 = t;
- t.x = 92;
- t.y = 95;
- return t;
- };
- _proto.icon8_i = function () {
- var t = new IconMc();
- this.icon8 = t;
- t.x = 102;
- t.y = 105;
- return t;
- };
- _proto.icon9_i = function () {
- var t = new IconMc();
- this.icon9 = t;
- t.x = 112;
- t.y = 115;
- return t;
- };
- _proto.icon10_i = function () {
- var t = new IconMc();
- this.icon10 = t;
- t.x = 122;
- t.y = 125;
- return t;
- };
- _proto.icon11_i = function () {
- var t = new IconMc();
- this.icon11 = t;
- t.x = 132;
- t.y = 135;
- return t;
- };
- _proto.icon12_i = function () {
- var t = new IconMc();
- this.icon12 = t;
- t.x = 142;
- t.y = 145;
- return t;
- };
- _proto.icon13_i = function () {
- var t = new IconMc();
- this.icon13 = t;
- t.x = 152;
- t.y = 155;
- return t;
- };
- _proto.icon14_i = function () {
- var t = new IconMc();
- this.icon14 = t;
- t.x = 162;
- t.y = 165;
- return t;
- };
- _proto.icon15_i = function () {
- var t = new IconMc();
- this.icon15 = t;
- t.x = 172;
- t.y = 175;
- return t;
- };
- _proto.gPop_i = function () {
- var t = new eui.Group();
- this.gPop = t;
- t.anchorOffsetX = 378.79;
- t.anchorOffsetY = 678.79;
- t.height = 1600;
- t.visible = false;
- t.width = 750;
- t.x = 378.79;
- t.y = 678.79;
- t.elementsContent = [this._Rect1_i(),this._Image1_i(),this.popImg_i(),this.tianBtn_i()];
- return t;
- };
- _proto._Rect1_i = function () {
- var t = new eui.Rect();
- t.anchorOffsetX = 378;
- t.anchorOffsetY = 716;
- t.bottom = 0;
- t.fillAlpha = 0.01;
- t.left = 0;
- t.right = 0;
- t.top = 0;
- return t;
- };
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.horizontalCenter = 0.5;
- t.source = "kuang_png";
- t.y = 501.1;
- return t;
- };
- _proto.popImg_i = function () {
- var t = new eui.Image();
- this.popImg = t;
- t.source = "p1_png";
- t.x = 256;
- t.y = 571.1;
- return t;
- };
- _proto.tianBtn_i = function () {
- var t = new eui.Image();
- this.tianBtn = t;
- t.anchorOffsetX = 119.09;
- t.anchorOffsetY = 46;
- t.horizontalCenter = 0.5;
- t.source = "tianBtn_png";
- t.y = 924.06;
- return t;
- };
- _proto.gTip_i = function () {
- var t = new eui.Group();
- this.gTip = t;
- t.height = 1600;
- t.visible = false;
- t.width = 750;
- t.x = 0;
- t.y = 0;
- t.elementsContent = [this._Rect2_i(),this.tipImg_i()];
- return t;
- };
- _proto._Rect2_i = function () {
- var t = new eui.Rect();
- t.bottom = 0;
- t.fillAlpha = 0.7;
- t.left = 0;
- t.right = 0;
- t.top = 0;
- return t;
- };
- _proto.tipImg_i = function () {
- var t = new eui.Image();
- this.tipImg = t;
- t.anchorOffsetX = 163.64;
- t.anchorOffsetY = 136.36;
- t.horizontalCenter = 0.5;
- t.source = "scaleTip_png";
- t.y = 681.36;
- return t;
- };
- _proto.gRule_i = function () {
- var t = new eui.Group();
- this.gRule = t;
- t.anchorOffsetX = 390.91;
- t.anchorOffsetY = 721.21;
- t.height = 1600;
- t.visible = false;
- t.width = 750;
- t.x = 390.91;
- t.y = 721.21;
- t.elementsContent = [this._Rect3_i(),this._Image2_i(),this.closeRuleBtn_i()];
- return t;
- };
- _proto._Rect3_i = function () {
- var t = new eui.Rect();
- t.bottom = 0;
- t.fillAlpha = 0.01;
- t.left = 0;
- t.right = 0;
- t.top = 0;
- return t;
- };
- _proto._Image2_i = function () {
- var t = new eui.Image();
- t.source = "img/ruleImg.png";
- t.x = 144;
- t.y = 384.41;
- return t;
- };
- _proto.closeRuleBtn_i = function () {
- var t = new ToumingBtn();
- this.closeRuleBtn = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 84.42;
- t.width = 97.58;
- t.x = 525;
- t.y = 375.41;
- return t;
- };
- _proto.gShare_i = function () {
- var t = new eui.Group();
- this.gShare = t;
- t.anchorOffsetX = 378;
- t.anchorOffsetY = 626;
- t.height = 1600;
- t.visible = false;
- t.width = 750;
- t.x = 378;
- t.y = 626;
- t.elementsContent = [this._Rect4_i(),this._Image3_i(),this.closeShareBtn_i()];
- return t;
- };
- _proto._Rect4_i = function () {
- var t = new eui.Rect();
- t.bottom = 0;
- t.fillAlpha = 0.01;
- t.left = 0;
- t.right = 0;
- t.top = 0;
- return t;
- };
- _proto._Image3_i = function () {
- var t = new eui.Image();
- t.source = "img/shareTip.png";
- t.x = 144;
- t.y = 545;
- return t;
- };
- _proto.closeShareBtn_i = function () {
- var t = new ToumingBtn();
- this.closeShareBtn = t;
- t.anchorOffsetX = 0;
- t.anchorOffsetY = 0;
- t.height = 199.57;
- t.width = 97.58;
- t.x = 540.15;
- t.y = 526.91;
- return t;
- };
- _proto.gGet_i = function () {
- var t = new eui.Group();
- this.gGet = t;
- t.height = 1600;
- t.visible = false;
- t.width = 750;
- t.x = 0;
- t.y = 0;
- t.elementsContent = [this._Rect5_i(),this.getImg_i()];
- return t;
- };
- _proto._Rect5_i = function () {
- var t = new eui.Rect();
- t.bottom = 0;
- t.fillAlpha = 0.7;
- t.left = 0;
- t.right = 0;
- t.top = 0;
- return t;
- };
- _proto.getImg_i = function () {
- var t = new eui.Image();
- this.getImg = t;
- t.anchorOffsetX = 221.21;
- t.anchorOffsetY = 169.7;
- t.source = "img/pop/1.png";
- t.x = 375.21;
- t.y = 740.8;
- return t;
- };
- return TestPageSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/TextInputSkin.exml'] = window.skins.TextInputSkin = (function (_super) {
- __extends(TextInputSkin, _super);
- function TextInputSkin() {
- _super.call(this);
- this.skinParts = ["textDisplay","promptDisplay"];
-
- this.minHeight = 40;
- this.minWidth = 300;
- this.elementsContent = [this._Image1_i(),this._Rect1_i(),this.textDisplay_i()];
- this.promptDisplay_i();
-
- this.states = [
- new eui.State ("normal",
- [
- ])
- ,
- new eui.State ("disabled",
- [
- new eui.SetProperty("textDisplay","textColor",0xff0000)
- ])
- ,
- new eui.State ("normalWithPrompt",
- [
- new eui.AddItems("promptDisplay","",1,"")
- ])
- ,
- new eui.State ("disabledWithPrompt",
- [
- new eui.AddItems("promptDisplay","",1,"")
- ])
- ];
- }
- var _proto = TextInputSkin.prototype;
- _proto._Image1_i = function () {
- var t = new eui.Image();
- t.percentHeight = 100;
- t.scale9Grid = new egret.Rectangle(1,3,8,8);
- t.source = "button_up_png";
- t.percentWidth = 100;
- return t;
- };
- _proto._Rect1_i = function () {
- var t = new eui.Rect();
- t.fillColor = 0xffffff;
- t.percentHeight = 100;
- t.percentWidth = 100;
- return t;
- };
- _proto.textDisplay_i = function () {
- var t = new eui.EditableText();
- this.textDisplay = t;
- t.height = 24;
- t.left = "10";
- t.right = "10";
- t.size = 20;
- t.textColor = 0x000000;
- t.verticalCenter = "0";
- t.percentWidth = 100;
- return t;
- };
- _proto.promptDisplay_i = function () {
- var t = new eui.Label();
- this.promptDisplay = t;
- t.height = 24;
- t.left = 10;
- t.right = 10;
- t.size = 20;
- t.textColor = 0xa9a9a9;
- t.touchEnabled = false;
- t.verticalCenter = 0;
- t.percentWidth = 100;
- return t;
- };
- return TextInputSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/ToggleSwitchSkin.exml'] = window.skins.ToggleSwitchSkin = (function (_super) {
- __extends(ToggleSwitchSkin, _super);
- function ToggleSwitchSkin() {
- _super.call(this);
- this.skinParts = [];
-
- this.elementsContent = [this._Image1_i(),this._Image2_i()];
- this.states = [
- new eui.State ("up",
- [
- new eui.SetProperty("_Image1","source","off_png")
- ])
- ,
- new eui.State ("down",
- [
- new eui.SetProperty("_Image1","source","off_png")
- ])
- ,
- new eui.State ("disabled",
- [
- new eui.SetProperty("_Image1","source","off_png")
- ])
- ,
- new eui.State ("upAndSelected",
- [
- new eui.SetProperty("_Image2","horizontalCenter",18)
- ])
- ,
- new eui.State ("downAndSelected",
- [
- new eui.SetProperty("_Image2","horizontalCenter",18)
- ])
- ,
- new eui.State ("disabledAndSelected",
- [
- new eui.SetProperty("_Image2","horizontalCenter",18)
- ])
- ];
- }
- var _proto = ToggleSwitchSkin.prototype;
- _proto._Image1_i = function () {
- var t = new eui.Image();
- this._Image1 = t;
- t.source = "on_png";
- return t;
- };
- _proto._Image2_i = function () {
- var t = new eui.Image();
- this._Image2 = t;
- t.horizontalCenter = -18;
- t.source = "handle_png";
- t.verticalCenter = 0;
- return t;
- };
- return ToggleSwitchSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/ToumingBg.exml'] = window.ToumingBgSkin = (function (_super) {
- __extends(ToumingBgSkin, _super);
- function ToumingBgSkin() {
- _super.call(this);
- this.skinParts = ["bg"];
-
- this.height = 300;
- this.width = 400;
- this.elementsContent = [this.bg_i()];
- }
- var _proto = ToumingBgSkin.prototype;
- _proto.bg_i = function () {
- var t = new eui.Rect();
- this.bg = t;
- t.bottom = 0;
- t.fillAlpha = 0.7;
- t.left = 0;
- t.right = 0;
- t.top = 0;
- return t;
- };
- return ToumingBgSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/ToumingBtn.exml'] = window.ToumingBtnSkin = (function (_super) {
- __extends(ToumingBtnSkin, _super);
- function ToumingBtnSkin() {
- _super.call(this);
- this.skinParts = ["bg"];
-
- this.height = 100;
- this.width = 200;
- this.elementsContent = [this.bg_i()];
- }
- var _proto = ToumingBtnSkin.prototype;
- _proto.bg_i = function () {
- var t = new eui.Rect();
- this.bg = t;
- t.bottom = 0;
- t.fillAlpha = 0.5;
- t.fillColor = 0xff2121;
- t.left = 0;
- t.right = 0;
- t.top = 0;
- return t;
- };
- return ToumingBtnSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/VScrollBarSkin.exml'] = window.skins.VScrollBarSkin = (function (_super) {
- __extends(VScrollBarSkin, _super);
- function VScrollBarSkin() {
- _super.call(this);
- this.skinParts = ["thumb"];
-
- this.minHeight = 20;
- this.minWidth = 8;
- this.elementsContent = [this.thumb_i()];
- }
- var _proto = VScrollBarSkin.prototype;
- _proto.thumb_i = function () {
- var t = new eui.Image();
- this.thumb = t;
- t.height = 30;
- t.horizontalCenter = 0;
- t.scale9Grid = new egret.Rectangle(3,3,2,2);
- t.source = "roundthumb_png";
- t.width = 8;
- return t;
- };
- return VScrollBarSkin;
- })(eui.Skin);generateEUI.paths['resource/eui_skins/VSliderSkin.exml'] = window.skins.VSliderSkin = (function (_super) {
- __extends(VSliderSkin, _super);
- function VSliderSkin() {
- _super.call(this);
- this.skinParts = ["track","thumb"];
-
- this.minHeight = 30;
- this.minWidth = 25;
- this.elementsContent = [this.track_i(),this.thumb_i()];
- }
- var _proto = VSliderSkin.prototype;
- _proto.track_i = function () {
- var t = new eui.Image();
- this.track = t;
- t.percentHeight = 100;
- t.horizontalCenter = 0;
- t.scale9Grid = new egret.Rectangle(1,1,4,4);
- t.source = "track_png";
- t.width = 7;
- return t;
- };
- _proto.thumb_i = function () {
- var t = new eui.Image();
- this.thumb = t;
- t.horizontalCenter = 0;
- t.source = "thumb_png";
- return t;
- };
- return VSliderSkin;
- })(eui.Skin);
|