default.thm.js 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351
  1. window.skins=window.skins||{};
  2. var __extends = this && this.__extends|| function (d, b) {
  3. for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
  4. function __() {
  5. this.constructor = d;
  6. }
  7. __.prototype = b.prototype;
  8. d.prototype = new __();
  9. };
  10. window.generateEUI = window.generateEUI||{};
  11. generateEUI.paths = generateEUI.paths||{};
  12. generateEUI.styles = undefined;
  13. 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) {
  14. __extends(BigMapSkin, _super);
  15. function BigMapSkin() {
  16. _super.call(this);
  17. 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"];
  18. this.elementsContent = [this._Group1_i()];
  19. }
  20. var _proto = BigMapSkin.prototype;
  21. _proto._Group1_i = function () {
  22. var t = new eui.Group();
  23. 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()];
  24. return t;
  25. };
  26. _proto.gBigMap_i = function () {
  27. var t = new eui.Group();
  28. this.gBigMap = t;
  29. t.visible = false;
  30. t.layout = this._TileLayout1_i();
  31. 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()];
  32. return t;
  33. };
  34. _proto._TileLayout1_i = function () {
  35. var t = new eui.TileLayout();
  36. t.horizontalGap = 0;
  37. t.orientation = "rows";
  38. t.requestedColumnCount = 4;
  39. t.requestedRowCount = 3;
  40. t.verticalGap = 0;
  41. return t;
  42. };
  43. _proto._Image1_i = function () {
  44. var t = new eui.Image();
  45. t.scaleX = 1;
  46. t.scaleY = 1;
  47. t.source = "s1_jpg";
  48. t.x = 92;
  49. t.y = 225.00000000000003;
  50. return t;
  51. };
  52. _proto._Image2_i = function () {
  53. var t = new eui.Image();
  54. t.scaleX = 1;
  55. t.scaleY = 1;
  56. t.source = "s2_jpg";
  57. t.x = 102;
  58. t.y = 235.00000000000003;
  59. return t;
  60. };
  61. _proto._Image3_i = function () {
  62. var t = new eui.Image();
  63. t.scaleX = 1;
  64. t.scaleY = 1;
  65. t.source = "s3_jpg";
  66. t.x = 112;
  67. t.y = 245.00000000000003;
  68. return t;
  69. };
  70. _proto._Image4_i = function () {
  71. var t = new eui.Image();
  72. t.scaleX = 1;
  73. t.scaleY = 1;
  74. t.source = "s4_jpg";
  75. t.x = 122;
  76. t.y = 255.00000000000003;
  77. return t;
  78. };
  79. _proto._Image5_i = function () {
  80. var t = new eui.Image();
  81. t.scaleX = 1;
  82. t.scaleY = 1;
  83. t.source = "s5_jpg";
  84. t.x = 132;
  85. t.y = 265;
  86. return t;
  87. };
  88. _proto._Image6_i = function () {
  89. var t = new eui.Image();
  90. t.scaleX = 1;
  91. t.scaleY = 1;
  92. t.source = "s6_jpg";
  93. t.x = 142;
  94. t.y = 275;
  95. return t;
  96. };
  97. _proto._Image7_i = function () {
  98. var t = new eui.Image();
  99. t.scaleX = 1;
  100. t.scaleY = 1;
  101. t.source = "s7_jpg";
  102. t.x = 152;
  103. t.y = 285;
  104. return t;
  105. };
  106. _proto._Image8_i = function () {
  107. var t = new eui.Image();
  108. t.scaleX = 1;
  109. t.scaleY = 1;
  110. t.source = "s8_jpg";
  111. t.x = 162;
  112. t.y = 295;
  113. return t;
  114. };
  115. _proto._Image9_i = function () {
  116. var t = new eui.Image();
  117. t.scaleX = 1;
  118. t.scaleY = 1;
  119. t.source = "s9_jpg";
  120. t.x = 172;
  121. t.y = 305;
  122. return t;
  123. };
  124. _proto._Image10_i = function () {
  125. var t = new eui.Image();
  126. t.scaleX = 1;
  127. t.scaleY = 1;
  128. t.source = "s10_jpg";
  129. t.x = 182;
  130. t.y = 315;
  131. return t;
  132. };
  133. _proto._Image11_i = function () {
  134. var t = new eui.Image();
  135. t.scaleX = 1;
  136. t.scaleY = 1;
  137. t.source = "s11_jpg";
  138. t.x = 102;
  139. t.y = 235.00000000000003;
  140. return t;
  141. };
  142. _proto._Image12_i = function () {
  143. var t = new eui.Image();
  144. t.scaleX = 1;
  145. t.scaleY = 1;
  146. t.source = "s12_jpg";
  147. t.x = 112;
  148. t.y = 245.00000000000003;
  149. return t;
  150. };
  151. _proto.a1_i = function () {
  152. var t = new eui.Image();
  153. this.a1 = t;
  154. t.anchorOffsetX = 160;
  155. t.anchorOffsetY = 172;
  156. t.source = "a1_png";
  157. t.x = 1461.94;
  158. t.y = 4515.59;
  159. return t;
  160. };
  161. _proto.a2_i = function () {
  162. var t = new eui.Image();
  163. this.a2 = t;
  164. t.anchorOffsetX = 144;
  165. t.anchorOffsetY = 124;
  166. t.source = "a2_png";
  167. t.x = 2991.43;
  168. t.y = 2221.36;
  169. return t;
  170. };
  171. _proto.a3_i = function () {
  172. var t = new eui.Image();
  173. this.a3 = t;
  174. t.anchorOffsetX = 51.52;
  175. t.anchorOffsetY = 151.52;
  176. t.source = "a3_png";
  177. t.x = 2418.04;
  178. t.y = 3884.71;
  179. return t;
  180. };
  181. _proto.a4_i = function () {
  182. var t = new eui.Image();
  183. this.a4 = t;
  184. t.anchorOffsetX = 89.76;
  185. t.anchorOffsetY = 84.36;
  186. t.source = "a4_png";
  187. t.x = 5132.76;
  188. t.y = 1142.86;
  189. return t;
  190. };
  191. _proto.x51_i = function () {
  192. var t = new eui.Image();
  193. this.x51 = t;
  194. t.anchorOffsetX = 200;
  195. t.anchorOffsetY = 112;
  196. t.source = "a5_png";
  197. t.x = 5499.91;
  198. t.y = 2672.31;
  199. return t;
  200. };
  201. _proto.a6_i = function () {
  202. var t = new eui.Image();
  203. this.a6 = t;
  204. t.anchorOffsetX = 86;
  205. t.anchorOffsetY = 80;
  206. t.source = "a6_png";
  207. t.x = 206.13;
  208. t.y = 6391.37;
  209. return t;
  210. };
  211. _proto.a7_i = function () {
  212. var t = new eui.Image();
  213. this.a7 = t;
  214. t.anchorOffsetX = 66.67;
  215. t.anchorOffsetY = 292.42;
  216. t.source = "a7_png";
  217. t.x = 3551.43;
  218. t.y = 3489.42;
  219. return t;
  220. };
  221. _proto.a8_i = function () {
  222. var t = new eui.Image();
  223. this.a8 = t;
  224. t.anchorOffsetX = 324.24;
  225. t.anchorOffsetY = 439.39;
  226. t.scaleX = 1;
  227. t.scaleY = 1;
  228. t.source = "a8_png";
  229. t.x = 982.88;
  230. t.y = 6688.76;
  231. return t;
  232. };
  233. _proto.a9_i = function () {
  234. var t = new eui.Image();
  235. this.a9 = t;
  236. t.anchorOffsetX = 48.85;
  237. t.anchorOffsetY = 54.12;
  238. t.source = "a9_png";
  239. t.x = 4339.14;
  240. t.y = 972.17;
  241. return t;
  242. };
  243. _proto.a10_i = function () {
  244. var t = new eui.Image();
  245. this.a10 = t;
  246. t.anchorOffsetX = 39.39;
  247. t.anchorOffsetY = 157.58;
  248. t.source = "a10_png";
  249. t.x = 4862.39;
  250. t.y = 3364.58;
  251. return t;
  252. };
  253. _proto.a11_i = function () {
  254. var t = new eui.Image();
  255. this.a11 = t;
  256. t.anchorOffsetX = 112.12;
  257. t.anchorOffsetY = 118.18;
  258. t.source = "a11_png";
  259. t.x = 8201.79;
  260. t.y = 4600.15;
  261. return t;
  262. };
  263. _proto.a12_i = function () {
  264. var t = new eui.Image();
  265. this.a12 = t;
  266. t.anchorOffsetX = 56;
  267. t.anchorOffsetY = 61.45;
  268. t.source = "a12_png";
  269. t.x = 2384.52;
  270. t.y = 3082.33;
  271. return t;
  272. };
  273. _proto.a13_i = function () {
  274. var t = new eui.Image();
  275. this.a13 = t;
  276. t.anchorOffsetX = 82;
  277. t.anchorOffsetY = 176;
  278. t.source = "a13_png";
  279. t.x = 3286.12;
  280. t.y = 2950.15;
  281. return t;
  282. };
  283. _proto.a14_i = function () {
  284. var t = new eui.Image();
  285. this.a14 = t;
  286. t.anchorOffsetX = 536;
  287. t.anchorOffsetY = 324;
  288. t.source = "a14_png";
  289. t.x = 3444.67;
  290. t.y = 1660.01;
  291. return t;
  292. };
  293. _proto.a15_i = function () {
  294. var t = new eui.Image();
  295. this.a15 = t;
  296. t.anchorOffsetX = 87.88;
  297. t.anchorOffsetY = 142.42;
  298. t.source = "a15_png";
  299. t.x = 2849.96;
  300. t.y = 5489.2;
  301. return t;
  302. };
  303. _proto.x31_i = function () {
  304. var t = new eui.Image();
  305. this.x31 = t;
  306. t.anchorOffsetX = 77.27;
  307. t.anchorOffsetY = 137.88;
  308. t.source = "x31_png";
  309. t.x = 4431.27;
  310. t.y = 3397.88;
  311. return t;
  312. };
  313. _proto.x32_i = function () {
  314. var t = new eui.Image();
  315. this.x32 = t;
  316. t.anchorOffsetX = 57.58;
  317. t.anchorOffsetY = 187.88;
  318. t.source = "x32_png";
  319. t.x = 5251.46;
  320. t.y = 951.88;
  321. return t;
  322. };
  323. _proto.a5_i = function () {
  324. var t = new eui.Image();
  325. this.a5 = t;
  326. t.anchorOffsetX = 200;
  327. t.anchorOffsetY = 124;
  328. t.source = "x51_png";
  329. t.x = 2580.3;
  330. t.y = 1799.99;
  331. return t;
  332. };
  333. _proto.imgYu1_i = function () {
  334. var t = new eui.Image();
  335. this.imgYu1 = t;
  336. t.source = "yu1_png";
  337. t.x = 3372.97;
  338. t.y = 3020.88;
  339. return t;
  340. };
  341. _proto.imgYu2_i = function () {
  342. var t = new eui.Image();
  343. this.imgYu2 = t;
  344. t.source = "yu1_png";
  345. t.x = 4778;
  346. t.y = 2208;
  347. return t;
  348. };
  349. _proto.imgPeng_i = function () {
  350. var t = new eui.Image();
  351. this.imgPeng = t;
  352. t.source = "peng1_png";
  353. t.x = 4148;
  354. t.y = 2729;
  355. return t;
  356. };
  357. _proto._Deng1_i = function () {
  358. var t = new Deng();
  359. t.x = 5240;
  360. t.y = 2505.99;
  361. return t;
  362. };
  363. _proto._Deng2_i = function () {
  364. var t = new Deng();
  365. t.x = 5338.3;
  366. t.y = 2572.96;
  367. return t;
  368. };
  369. _proto._Deng3_i = function () {
  370. var t = new Deng();
  371. t.x = 5452.33;
  372. t.y = 2647.32;
  373. return t;
  374. };
  375. _proto.boat_i = function () {
  376. var t = new eui.Image();
  377. this.boat = t;
  378. t.source = "boat_png";
  379. t.x = 5740;
  380. t.y = 5616.97;
  381. return t;
  382. };
  383. _proto.boatLine_i = function () {
  384. var t = new eui.Image();
  385. this.boatLine = t;
  386. t.anchorOffsetY = 540.12;
  387. t.source = "boatLine_png";
  388. t.x = 5995.03;
  389. t.y = 5644.73;
  390. return t;
  391. };
  392. _proto.imgDagu_i = function () {
  393. var t = new eui.Image();
  394. this.imgDagu = t;
  395. t.source = "dagu1_png";
  396. t.x = 4360.11;
  397. t.y = 4279.21;
  398. return t;
  399. };
  400. _proto.imgYan_i = function () {
  401. var t = new eui.Image();
  402. this.imgYan = t;
  403. t.source = "yan1_png";
  404. t.x = 4048.76;
  405. t.y = 401.56;
  406. return t;
  407. };
  408. return BigMapSkin;
  409. })(eui.Skin);generateEUI.paths['resource/eui_skins/ButtonSkin.exml'] = window.skins.ButtonSkin = (function (_super) {
  410. __extends(ButtonSkin, _super);
  411. function ButtonSkin() {
  412. _super.call(this);
  413. this.skinParts = ["labelDisplay","iconDisplay"];
  414. this.minHeight = 50;
  415. this.minWidth = 100;
  416. this.elementsContent = [this._Image1_i(),this.labelDisplay_i(),this.iconDisplay_i()];
  417. this.states = [
  418. new eui.State ("up",
  419. [
  420. ])
  421. ,
  422. new eui.State ("down",
  423. [
  424. new eui.SetProperty("_Image1","source","button_down_png")
  425. ])
  426. ,
  427. new eui.State ("disabled",
  428. [
  429. new eui.SetProperty("_Image1","alpha",0.5)
  430. ])
  431. ];
  432. }
  433. var _proto = ButtonSkin.prototype;
  434. _proto._Image1_i = function () {
  435. var t = new eui.Image();
  436. this._Image1 = t;
  437. t.percentHeight = 100;
  438. t.scale9Grid = new egret.Rectangle(1,3,8,8);
  439. t.source = "button_up_png";
  440. t.percentWidth = 100;
  441. return t;
  442. };
  443. _proto.labelDisplay_i = function () {
  444. var t = new eui.Label();
  445. this.labelDisplay = t;
  446. t.bottom = 8;
  447. t.left = 8;
  448. t.right = 8;
  449. t.size = 20;
  450. t.textAlign = "center";
  451. t.textColor = 0xFFFFFF;
  452. t.top = 8;
  453. t.verticalAlign = "middle";
  454. return t;
  455. };
  456. _proto.iconDisplay_i = function () {
  457. var t = new eui.Image();
  458. this.iconDisplay = t;
  459. t.horizontalCenter = 0;
  460. t.verticalCenter = 0;
  461. return t;
  462. };
  463. return ButtonSkin;
  464. })(eui.Skin);generateEUI.paths['resource/eui_skins/CheckBoxSkin.exml'] = window.skins.CheckBoxSkin = (function (_super) {
  465. __extends(CheckBoxSkin, _super);
  466. function CheckBoxSkin() {
  467. _super.call(this);
  468. this.skinParts = ["labelDisplay"];
  469. this.elementsContent = [this._Group1_i()];
  470. this.states = [
  471. new eui.State ("up",
  472. [
  473. ])
  474. ,
  475. new eui.State ("down",
  476. [
  477. new eui.SetProperty("_Image1","alpha",0.7)
  478. ])
  479. ,
  480. new eui.State ("disabled",
  481. [
  482. new eui.SetProperty("_Image1","alpha",0.5)
  483. ])
  484. ,
  485. new eui.State ("upAndSelected",
  486. [
  487. new eui.SetProperty("_Image1","source","checkbox_select_up_png")
  488. ])
  489. ,
  490. new eui.State ("downAndSelected",
  491. [
  492. new eui.SetProperty("_Image1","source","checkbox_select_down_png")
  493. ])
  494. ,
  495. new eui.State ("disabledAndSelected",
  496. [
  497. new eui.SetProperty("_Image1","source","checkbox_select_disabled_png")
  498. ])
  499. ];
  500. }
  501. var _proto = CheckBoxSkin.prototype;
  502. _proto._Group1_i = function () {
  503. var t = new eui.Group();
  504. t.percentHeight = 100;
  505. t.percentWidth = 100;
  506. t.layout = this._HorizontalLayout1_i();
  507. t.elementsContent = [this._Image1_i(),this.labelDisplay_i()];
  508. return t;
  509. };
  510. _proto._HorizontalLayout1_i = function () {
  511. var t = new eui.HorizontalLayout();
  512. t.verticalAlign = "middle";
  513. return t;
  514. };
  515. _proto._Image1_i = function () {
  516. var t = new eui.Image();
  517. this._Image1 = t;
  518. t.alpha = 1;
  519. t.fillMode = "scale";
  520. t.source = "checkbox_unselect_png";
  521. return t;
  522. };
  523. _proto.labelDisplay_i = function () {
  524. var t = new eui.Label();
  525. this.labelDisplay = t;
  526. t.fontFamily = "Tahoma";
  527. t.size = 20;
  528. t.textAlign = "center";
  529. t.textColor = 0x707070;
  530. t.verticalAlign = "middle";
  531. return t;
  532. };
  533. return CheckBoxSkin;
  534. })(eui.Skin);generateEUI.paths['resource/eui_skins/ChouNoTimePage.exml'] = window.ChouNoTimePageSkin = (function (_super) {
  535. __extends(ChouNoTimePageSkin, _super);
  536. function ChouNoTimePageSkin() {
  537. _super.call(this);
  538. this.skinParts = [];
  539. this.height = 1465;
  540. this.width = 750;
  541. }
  542. var _proto = ChouNoTimePageSkin.prototype;
  543. return ChouNoTimePageSkin;
  544. })(eui.Skin);generateEUI.paths['resource/eui_skins/ChouPage.exml'] = window.ChouPageSkin = (function (_super) {
  545. __extends(ChouPageSkin, _super);
  546. function ChouPageSkin() {
  547. _super.call(this);
  548. this.skinParts = ["chouBg","logo","chouPan","selBox","chouTxt","prizePic","chouBtn","closeBtn","ruleBtn","shareBtn","closeRuleBtn","gRule"];
  549. this.height = 1465;
  550. this.width = 750;
  551. 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()];
  552. }
  553. var _proto = ChouPageSkin.prototype;
  554. _proto.chouBg_i = function () {
  555. var t = new eui.Image();
  556. this.chouBg = t;
  557. t.left = 0;
  558. t.source = "chouBg_jpg";
  559. t.top = 0;
  560. return t;
  561. };
  562. _proto.logo_i = function () {
  563. var t = new eui.Image();
  564. this.logo = t;
  565. t.horizontalCenter = 0;
  566. t.source = "logoBar_png";
  567. t.y = 150;
  568. return t;
  569. };
  570. _proto.chouPan_i = function () {
  571. var t = new eui.Image();
  572. this.chouPan = t;
  573. t.source = "chouPan_png";
  574. t.x = 56;
  575. t.y = 304.01;
  576. return t;
  577. };
  578. _proto.selBox_i = function () {
  579. var t = new eui.Image();
  580. this.selBox = t;
  581. t.source = "chouSelBox_png";
  582. t.x = 479;
  583. t.y = 539;
  584. return t;
  585. };
  586. _proto.chouTxt_i = function () {
  587. var t = new eui.Image();
  588. this.chouTxt = t;
  589. t.source = "chouTxt_png";
  590. t.x = 55;
  591. t.y = 304;
  592. return t;
  593. };
  594. _proto.prizePic_i = function () {
  595. var t = new eui.Image();
  596. this.prizePic = t;
  597. t.source = "chouJiangpin_png";
  598. t.x = 56;
  599. t.y = 304.01;
  600. return t;
  601. };
  602. _proto.chouBtn_i = function () {
  603. var t = new eui.Image();
  604. this.chouBtn = t;
  605. t.anchorOffsetX = 120;
  606. t.anchorOffsetY = 59.5;
  607. t.horizontalCenter = 0;
  608. t.source = "chouGoBtn_png";
  609. t.y = 982.45;
  610. return t;
  611. };
  612. _proto.closeBtn_i = function () {
  613. var t = new eui.Image();
  614. this.closeBtn = t;
  615. t.scaleX = 0.7;
  616. t.scaleY = 0.7;
  617. t.source = "closeBtn_png";
  618. t.x = 641.21;
  619. t.y = 216.36;
  620. return t;
  621. };
  622. _proto.ruleBtn_i = function () {
  623. var t = new eui.Image();
  624. this.ruleBtn = t;
  625. t.source = "chouRuleBtn_png";
  626. t.x = 140;
  627. t.y = 1101.21;
  628. return t;
  629. };
  630. _proto.shareBtn_i = function () {
  631. var t = new eui.Image();
  632. this.shareBtn = t;
  633. t.source = "goShareBtn_png";
  634. t.x = 404;
  635. t.y = 1101.21;
  636. return t;
  637. };
  638. _proto.gRule_i = function () {
  639. var t = new eui.Group();
  640. this.gRule = t;
  641. t.height = 1465;
  642. t.visible = false;
  643. t.width = 750;
  644. t.x = 0;
  645. t.y = 0;
  646. t.elementsContent = [this._ToumingBg1_i(),this._Image1_i(),this.closeRuleBtn_i()];
  647. return t;
  648. };
  649. _proto._ToumingBg1_i = function () {
  650. var t = new ToumingBg();
  651. t.percentHeight = 100;
  652. t.left = 0;
  653. t.top = 0;
  654. t.percentWidth = 100;
  655. return t;
  656. };
  657. _proto._Image1_i = function () {
  658. var t = new eui.Image();
  659. t.horizontalCenter = 0;
  660. t.source = "img/ruleBg.png";
  661. t.verticalCenter = -60;
  662. return t;
  663. };
  664. _proto.closeRuleBtn_i = function () {
  665. var t = new eui.Image();
  666. this.closeRuleBtn = t;
  667. t.horizontalCenter = 1;
  668. t.source = "closeBtn_png";
  669. t.y = 1094.35;
  670. return t;
  671. };
  672. return ChouPageSkin;
  673. })(eui.Skin);generateEUI.paths['resource/eui_skins/Deng.exml'] = window.DengSkin = (function (_super) {
  674. __extends(DengSkin, _super);
  675. function DengSkin() {
  676. _super.call(this);
  677. this.skinParts = ["dengLight"];
  678. this.height = 226;
  679. this.width = 108;
  680. this.elementsContent = [this._Image1_i(),this.dengLight_i()];
  681. }
  682. var _proto = DengSkin.prototype;
  683. _proto._Image1_i = function () {
  684. var t = new eui.Image();
  685. t.source = "dengDi_png";
  686. t.x = 35;
  687. t.y = 182;
  688. return t;
  689. };
  690. _proto.dengLight_i = function () {
  691. var t = new eui.Image();
  692. this.dengLight = t;
  693. t.anchorOffsetX = 18.5;
  694. t.anchorOffsetY = 172;
  695. t.source = "dengLight_png";
  696. t.x = 52.5;
  697. t.y = 188;
  698. return t;
  699. };
  700. return DengSkin;
  701. })(eui.Skin);generateEUI.paths['resource/eui_skins/DiaBoy.exml'] = window.DiaBoySkin = (function (_super) {
  702. __extends(DiaBoySkin, _super);
  703. function DiaBoySkin() {
  704. _super.call(this);
  705. this.skinParts = [];
  706. this.height = 1465;
  707. this.width = 750;
  708. }
  709. var _proto = DiaBoySkin.prototype;
  710. return DiaBoySkin;
  711. })(eui.Skin);generateEUI.paths['resource/eui_skins/EndPage.exml'] = window.EndPageSkin = (function (_super) {
  712. __extends(EndPageSkin, _super);
  713. function EndPageSkin() {
  714. _super.call(this);
  715. this.skinParts = ["headBit","saveTip","findTxt","endIcon","endBgImg","endTxtImg","scanTip"];
  716. this.height = 1600;
  717. this.width = 750;
  718. this.elementsContent = [this._Image1_i(),this.headBit_i(),this.saveTip_i(),this.findTxt_i(),this.endIcon_i(),this.endBgImg_i(),this.endTxtImg_i(),this.scanTip_i()];
  719. }
  720. var _proto = EndPageSkin.prototype;
  721. _proto._Image1_i = function () {
  722. var t = new eui.Image();
  723. t.source = "endBg_jpg";
  724. t.x = 0;
  725. t.y = 0;
  726. return t;
  727. };
  728. _proto.headBit_i = function () {
  729. var t = new eui.Image();
  730. this.headBit = t;
  731. t.anchorOffsetX = 0;
  732. t.anchorOffsetY = 0;
  733. t.height = 66;
  734. t.width = 66;
  735. t.x = 70.34;
  736. t.y = 236.66;
  737. return t;
  738. };
  739. _proto.saveTip_i = function () {
  740. var t = new eui.Image();
  741. this.saveTip = t;
  742. t.source = "img/saveTip.png";
  743. t.x = 571.98;
  744. t.y = 1248.55;
  745. return t;
  746. };
  747. _proto.findTxt_i = function () {
  748. var t = new eui.Label();
  749. this.findTxt = t;
  750. t.bold = true;
  751. t.height = 43;
  752. t.rotation = -5;
  753. t.text = "Label";
  754. t.textAlign = "center";
  755. t.textColor = 0x000000;
  756. t.verticalAlign = "middle";
  757. t.width = 163;
  758. t.x = 495;
  759. t.y = 258.34;
  760. return t;
  761. };
  762. _proto.endIcon_i = function () {
  763. var t = new eui.Image();
  764. this.endIcon = t;
  765. t.source = "endIcon_png";
  766. t.x = 579.11;
  767. t.y = 1137.89;
  768. return t;
  769. };
  770. _proto.endBgImg_i = function () {
  771. var t = new eui.Image();
  772. this.endBgImg = t;
  773. t.source = "";
  774. t.x = 67.1;
  775. t.y = 330.74;
  776. return t;
  777. };
  778. _proto.endTxtImg_i = function () {
  779. var t = new eui.Image();
  780. this.endTxtImg = t;
  781. t.source = "";
  782. t.x = 241.79;
  783. t.y = 1139.99;
  784. return t;
  785. };
  786. _proto.scanTip_i = function () {
  787. var t = new eui.Image();
  788. this.scanTip = t;
  789. t.source = "img/scanTip.png";
  790. t.x = 553.67;
  791. t.y = 1177.41;
  792. return t;
  793. };
  794. return EndPageSkin;
  795. })(eui.Skin);generateEUI.paths['resource/eui_skins/HomePage.exml'] = window.HomePageSkin = (function (_super) {
  796. __extends(HomePageSkin, _super);
  797. function HomePageSkin() {
  798. _super.call(this);
  799. this.skinParts = ["anCar1","anCar2","yun0","yun1","qiqiu","car1","car2","tree","ship","startBtn","prizeBtn","closeBtn","iconImg0","la0","lingquBtn0","bar0","iconImg1","la1","lingquBtn1","bar1","gPrize"];
  800. this.height = 1600;
  801. this.width = 750;
  802. this.anCar1_i();
  803. this.anCar2_i();
  804. 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()];
  805. eui.Binding.$bindProperties(this, ["car1"],[0],this._TweenItem1,"target");
  806. eui.Binding.$bindProperties(this, [807.36],[],this._Object1,"y");
  807. eui.Binding.$bindProperties(this, [-49],[],this._Object2,"x");
  808. eui.Binding.$bindProperties(this, [1287.61],[],this._Object2,"y");
  809. eui.Binding.$bindProperties(this, ["car2"],[0],this._TweenItem2,"target");
  810. eui.Binding.$bindProperties(this, [-31.5],[],this._Object3,"x");
  811. eui.Binding.$bindProperties(this, [1248],[],this._Object3,"y");
  812. eui.Binding.$bindProperties(this, [784.85],[],this._Object4,"x");
  813. eui.Binding.$bindProperties(this, [778.36],[],this._Object4,"y");
  814. }
  815. var _proto = HomePageSkin.prototype;
  816. _proto.anCar1_i = function () {
  817. var t = new egret.tween.TweenGroup();
  818. this.anCar1 = t;
  819. t.items = [this._TweenItem1_i()];
  820. return t;
  821. };
  822. _proto._TweenItem1_i = function () {
  823. var t = new egret.tween.TweenItem();
  824. this._TweenItem1 = t;
  825. t.paths = [this._Set1_i(),this._To1_i()];
  826. return t;
  827. };
  828. _proto._Set1_i = function () {
  829. var t = new egret.tween.Set();
  830. t.props = this._Object1_i();
  831. return t;
  832. };
  833. _proto._Object1_i = function () {
  834. var t = {};
  835. this._Object1 = t;
  836. return t;
  837. };
  838. _proto._To1_i = function () {
  839. var t = new egret.tween.To();
  840. t.duration = 7500;
  841. t.props = this._Object2_i();
  842. return t;
  843. };
  844. _proto._Object2_i = function () {
  845. var t = {};
  846. this._Object2 = t;
  847. return t;
  848. };
  849. _proto.anCar2_i = function () {
  850. var t = new egret.tween.TweenGroup();
  851. this.anCar2 = t;
  852. t.items = [this._TweenItem2_i()];
  853. return t;
  854. };
  855. _proto._TweenItem2_i = function () {
  856. var t = new egret.tween.TweenItem();
  857. this._TweenItem2 = t;
  858. t.paths = [this._Set2_i(),this._To2_i()];
  859. return t;
  860. };
  861. _proto._Set2_i = function () {
  862. var t = new egret.tween.Set();
  863. t.props = this._Object3_i();
  864. return t;
  865. };
  866. _proto._Object3_i = function () {
  867. var t = {};
  868. this._Object3 = t;
  869. return t;
  870. };
  871. _proto._To2_i = function () {
  872. var t = new egret.tween.To();
  873. t.duration = 5000;
  874. t.props = this._Object4_i();
  875. return t;
  876. };
  877. _proto._Object4_i = function () {
  878. var t = {};
  879. this._Object4 = t;
  880. return t;
  881. };
  882. _proto._Image1_i = function () {
  883. var t = new eui.Image();
  884. t.source = "homeBg_jpg";
  885. t.x = 0;
  886. t.y = 0;
  887. return t;
  888. };
  889. _proto.yun0_i = function () {
  890. var t = new eui.Image();
  891. this.yun0 = t;
  892. t.source = "homeYun_png";
  893. t.x = 18.4;
  894. t.y = 136.3;
  895. return t;
  896. };
  897. _proto.yun1_i = function () {
  898. var t = new eui.Image();
  899. this.yun1 = t;
  900. t.source = "homeYun_png";
  901. t.x = 595.56;
  902. t.y = 37.82;
  903. return t;
  904. };
  905. _proto.qiqiu_i = function () {
  906. var t = new eui.Image();
  907. this.qiqiu = t;
  908. t.source = "homeQiqiu_png";
  909. t.x = 234.92;
  910. t.y = 218.33;
  911. return t;
  912. };
  913. _proto.car1_i = function () {
  914. var t = new eui.Image();
  915. this.car1 = t;
  916. t.anchorOffsetX = 45;
  917. t.anchorOffsetY = 38;
  918. t.source = "homeCar_png";
  919. t.x = 793.01;
  920. t.y = 811.36;
  921. return t;
  922. };
  923. _proto.car2_i = function () {
  924. var t = new eui.Image();
  925. this.car2 = t;
  926. t.anchorOffsetX = 35;
  927. t.anchorOffsetY = 23;
  928. t.source = "homeCar2_png";
  929. t.x = 653.52;
  930. t.y = 860.2;
  931. return t;
  932. };
  933. _proto.tree_i = function () {
  934. var t = new eui.Image();
  935. this.tree = t;
  936. t.source = "homeTree_png";
  937. t.x = 0;
  938. t.y = 893.5;
  939. return t;
  940. };
  941. _proto.ship_i = function () {
  942. var t = new eui.Image();
  943. this.ship = t;
  944. t.source = "homeBigChuan_png";
  945. t.x = 349.85;
  946. t.y = 968;
  947. return t;
  948. };
  949. _proto.startBtn_i = function () {
  950. var t = new eui.Image();
  951. this.startBtn = t;
  952. t.anchorOffsetX = 150;
  953. t.anchorOffsetY = 82;
  954. t.source = "startBtn_png";
  955. t.x = 376;
  956. t.y = 1327.61;
  957. return t;
  958. };
  959. _proto.prizeBtn_i = function () {
  960. var t = new eui.Image();
  961. this.prizeBtn = t;
  962. t.source = "homePrizeBtn_png";
  963. t.x = 620;
  964. t.y = 80;
  965. return t;
  966. };
  967. _proto.gPrize_i = function () {
  968. var t = new eui.Group();
  969. this.gPrize = t;
  970. t.height = 1600;
  971. t.visible = false;
  972. t.width = 750;
  973. t.x = 0;
  974. t.y = 0;
  975. t.elementsContent = [this._Rect1_i(),this._Image2_i(),this.closeBtn_i(),this._Group1_i()];
  976. return t;
  977. };
  978. _proto._Rect1_i = function () {
  979. var t = new eui.Rect();
  980. t.bottom = 0;
  981. t.fillAlpha = 0.7;
  982. t.left = 0;
  983. t.right = 0;
  984. t.top = 0;
  985. return t;
  986. };
  987. _proto._Image2_i = function () {
  988. var t = new eui.Image();
  989. t.source = "img/myPrizeBg.png";
  990. t.x = 89;
  991. t.y = 260;
  992. return t;
  993. };
  994. _proto.closeBtn_i = function () {
  995. var t = new ToumingBtn();
  996. this.closeBtn = t;
  997. t.anchorOffsetX = 0;
  998. t.anchorOffsetY = 0;
  999. t.height = 96;
  1000. t.width = 92;
  1001. t.x = 588;
  1002. t.y = 262;
  1003. return t;
  1004. };
  1005. _proto._Group1_i = function () {
  1006. var t = new eui.Group();
  1007. t.anchorOffsetY = 0;
  1008. t.height = 645;
  1009. t.width = 567;
  1010. t.x = 91;
  1011. t.y = 478;
  1012. t.layout = this._VerticalLayout1_i();
  1013. t.elementsContent = [this.bar0_i(),this.bar1_i()];
  1014. return t;
  1015. };
  1016. _proto._VerticalLayout1_i = function () {
  1017. var t = new eui.VerticalLayout();
  1018. t.gap = 30;
  1019. t.horizontalAlign = "center";
  1020. t.verticalAlign = "top";
  1021. return t;
  1022. };
  1023. _proto.bar0_i = function () {
  1024. var t = new eui.Group();
  1025. this.bar0 = t;
  1026. t.scaleX = 1;
  1027. t.scaleY = 1;
  1028. t.x = 30.900000000000006;
  1029. t.y = 20;
  1030. t.layout = this._BasicLayout1_i();
  1031. t.elementsContent = [this._Image3_i(),this.iconImg0_i(),this.la0_i(),this.lingquBtn0_i()];
  1032. return t;
  1033. };
  1034. _proto._BasicLayout1_i = function () {
  1035. var t = new eui.BasicLayout();
  1036. return t;
  1037. };
  1038. _proto._Image3_i = function () {
  1039. var t = new eui.Image();
  1040. t.source = "img/prizeBar.png";
  1041. t.x = 0;
  1042. t.y = 0;
  1043. return t;
  1044. };
  1045. _proto.iconImg0_i = function () {
  1046. var t = new eui.Image();
  1047. this.iconImg0 = t;
  1048. t.source = "img/icon1.png";
  1049. t.x = 11.96;
  1050. t.y = 14;
  1051. return t;
  1052. };
  1053. _proto.la0_i = function () {
  1054. var t = new eui.Label();
  1055. this.la0 = t;
  1056. t.anchorOffsetX = 0;
  1057. t.anchorOffsetY = 0;
  1058. t.height = 55.76;
  1059. t.text = "Label";
  1060. t.textColor = 0x000000;
  1061. t.verticalAlign = "middle";
  1062. t.width = 213.39;
  1063. t.x = 143.96;
  1064. t.y = 46.92;
  1065. return t;
  1066. };
  1067. _proto.lingquBtn0_i = function () {
  1068. var t = new eui.Image();
  1069. this.lingquBtn0 = t;
  1070. t.source = "img/lingquBtn.png";
  1071. t.x = 391;
  1072. t.y = 49.52;
  1073. return t;
  1074. };
  1075. _proto.bar1_i = function () {
  1076. var t = new eui.Group();
  1077. this.bar1 = t;
  1078. t.scaleX = 1;
  1079. t.scaleY = 1;
  1080. t.x = 30.900000000000006;
  1081. t.y = 186;
  1082. t.layout = this._BasicLayout2_i();
  1083. t.elementsContent = [this._Image4_i(),this.iconImg1_i(),this.la1_i(),this.lingquBtn1_i()];
  1084. return t;
  1085. };
  1086. _proto._BasicLayout2_i = function () {
  1087. var t = new eui.BasicLayout();
  1088. return t;
  1089. };
  1090. _proto._Image4_i = function () {
  1091. var t = new eui.Image();
  1092. t.source = "img/prizeBar.png";
  1093. t.x = 0;
  1094. t.y = 0;
  1095. return t;
  1096. };
  1097. _proto.iconImg1_i = function () {
  1098. var t = new eui.Image();
  1099. this.iconImg1 = t;
  1100. t.source = "img/icon1.png";
  1101. t.x = 11.96;
  1102. t.y = 14;
  1103. return t;
  1104. };
  1105. _proto.la1_i = function () {
  1106. var t = new eui.Label();
  1107. this.la1 = t;
  1108. t.anchorOffsetX = 0;
  1109. t.anchorOffsetY = 0;
  1110. t.height = 55.76;
  1111. t.text = "Label";
  1112. t.textColor = 0x000000;
  1113. t.verticalAlign = "middle";
  1114. t.width = 213.39;
  1115. t.x = 143.96;
  1116. t.y = 46.92;
  1117. return t;
  1118. };
  1119. _proto.lingquBtn1_i = function () {
  1120. var t = new eui.Image();
  1121. this.lingquBtn1 = t;
  1122. t.source = "img/lingquBtn.png";
  1123. t.x = 391;
  1124. t.y = 49.52;
  1125. return t;
  1126. };
  1127. return HomePageSkin;
  1128. })(eui.Skin);generateEUI.paths['resource/eui_skins/HScrollBarSkin.exml'] = window.skins.HScrollBarSkin = (function (_super) {
  1129. __extends(HScrollBarSkin, _super);
  1130. function HScrollBarSkin() {
  1131. _super.call(this);
  1132. this.skinParts = ["thumb"];
  1133. this.minHeight = 8;
  1134. this.minWidth = 20;
  1135. this.elementsContent = [this.thumb_i()];
  1136. }
  1137. var _proto = HScrollBarSkin.prototype;
  1138. _proto.thumb_i = function () {
  1139. var t = new eui.Image();
  1140. this.thumb = t;
  1141. t.height = 8;
  1142. t.scale9Grid = new egret.Rectangle(3,3,2,2);
  1143. t.source = "roundthumb_png";
  1144. t.verticalCenter = 0;
  1145. t.width = 30;
  1146. return t;
  1147. };
  1148. return HScrollBarSkin;
  1149. })(eui.Skin);generateEUI.paths['resource/eui_skins/HSliderSkin.exml'] = window.skins.HSliderSkin = (function (_super) {
  1150. __extends(HSliderSkin, _super);
  1151. function HSliderSkin() {
  1152. _super.call(this);
  1153. this.skinParts = ["track","thumb"];
  1154. this.minHeight = 8;
  1155. this.minWidth = 20;
  1156. this.elementsContent = [this.track_i(),this.thumb_i()];
  1157. }
  1158. var _proto = HSliderSkin.prototype;
  1159. _proto.track_i = function () {
  1160. var t = new eui.Image();
  1161. this.track = t;
  1162. t.height = 6;
  1163. t.scale9Grid = new egret.Rectangle(1,1,4,4);
  1164. t.source = "track_sb_png";
  1165. t.verticalCenter = 0;
  1166. t.percentWidth = 100;
  1167. return t;
  1168. };
  1169. _proto.thumb_i = function () {
  1170. var t = new eui.Image();
  1171. this.thumb = t;
  1172. t.source = "thumb_png";
  1173. t.verticalCenter = 0;
  1174. return t;
  1175. };
  1176. return HSliderSkin;
  1177. })(eui.Skin);generateEUI.paths['resource/eui_skins/IconMc.exml'] = window.IconMcSkin = (function (_super) {
  1178. __extends(IconMcSkin, _super);
  1179. function IconMcSkin() {
  1180. _super.call(this);
  1181. this.skinParts = ["iconBit","dan"];
  1182. this.height = 90;
  1183. this.width = 110;
  1184. this.elementsContent = [this.iconBit_i(),this._Image1_i(),this.dan_i()];
  1185. }
  1186. var _proto = IconMcSkin.prototype;
  1187. _proto.iconBit_i = function () {
  1188. var t = new eui.Image();
  1189. this.iconBit = t;
  1190. t.source = "ic1_png";
  1191. t.x = 1.98;
  1192. t.y = 2.62;
  1193. return t;
  1194. };
  1195. _proto._Image1_i = function () {
  1196. var t = new eui.Image();
  1197. t.source = "danShape_png";
  1198. t.x = 68.96;
  1199. t.y = 68.96;
  1200. return t;
  1201. };
  1202. _proto.dan_i = function () {
  1203. var t = new eui.Image();
  1204. this.dan = t;
  1205. t.anchorOffsetX = 24.67;
  1206. t.anchorOffsetY = 44;
  1207. t.source = "dan0_png";
  1208. t.x = 87.32;
  1209. t.y = 66;
  1210. return t;
  1211. };
  1212. return IconMcSkin;
  1213. })(eui.Skin);generateEUI.paths['resource/eui_skins/InfoPage.exml'] = window.InfoPageSkin = (function (_super) {
  1214. __extends(InfoPageSkin, _super);
  1215. function InfoPageSkin() {
  1216. _super.call(this);
  1217. this.skinParts = ["closeInfoBtn","tID","tName","tTel","tAdd","tijiaoBtn","gInfo"];
  1218. this.height = 1600;
  1219. this.width = 750;
  1220. this.elementsContent = [this.gInfo_i()];
  1221. }
  1222. var _proto = InfoPageSkin.prototype;
  1223. _proto.gInfo_i = function () {
  1224. var t = new eui.Group();
  1225. this.gInfo = t;
  1226. t.anchorOffsetX = 0;
  1227. t.anchorOffsetY = 0;
  1228. t.height = 1600;
  1229. t.width = 750;
  1230. t.x = 0;
  1231. t.y = 0;
  1232. 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()];
  1233. return t;
  1234. };
  1235. _proto._Rect1_i = function () {
  1236. var t = new eui.Rect();
  1237. t.bottom = 0;
  1238. t.fillAlpha = 0.7;
  1239. t.left = 0;
  1240. t.right = 0;
  1241. t.top = 0;
  1242. return t;
  1243. };
  1244. _proto._Image1_i = function () {
  1245. var t = new eui.Image();
  1246. t.source = "img/infoBg.png";
  1247. t.x = 89;
  1248. t.y = 203;
  1249. return t;
  1250. };
  1251. _proto.closeInfoBtn_i = function () {
  1252. var t = new ToumingBtn();
  1253. this.closeInfoBtn = t;
  1254. t.anchorOffsetX = 0;
  1255. t.anchorOffsetY = 0;
  1256. t.height = 81.39;
  1257. t.width = 107.76;
  1258. t.x = 576.45;
  1259. t.y = 248.15;
  1260. return t;
  1261. };
  1262. _proto.tID_i = function () {
  1263. var t = new eui.Label();
  1264. this.tID = t;
  1265. t.anchorOffsetX = 0;
  1266. t.anchorOffsetY = 0;
  1267. t.height = 50;
  1268. t.size = 33;
  1269. t.text = "xxxx";
  1270. t.textAlign = "center";
  1271. t.verticalAlign = "middle";
  1272. t.width = 306;
  1273. t.x = 312;
  1274. t.y = 474;
  1275. return t;
  1276. };
  1277. _proto.tName_i = function () {
  1278. var t = new eui.EditableText();
  1279. this.tName = t;
  1280. t.anchorOffsetX = 0;
  1281. t.anchorOffsetY = 0;
  1282. t.height = 54;
  1283. t.text = "Label";
  1284. t.textColor = 0x000000;
  1285. t.verticalAlign = "middle";
  1286. t.width = 462;
  1287. t.x = 144;
  1288. t.y = 630;
  1289. return t;
  1290. };
  1291. _proto.tTel_i = function () {
  1292. var t = new eui.EditableText();
  1293. this.tTel = t;
  1294. t.anchorOffsetX = 0;
  1295. t.anchorOffsetY = 0;
  1296. t.height = 54;
  1297. t.inputType = "tel";
  1298. t.text = "Label";
  1299. t.textColor = 0x000000;
  1300. t.verticalAlign = "middle";
  1301. t.width = 462;
  1302. t.x = 144;
  1303. t.y = 786;
  1304. return t;
  1305. };
  1306. _proto.tAdd_i = function () {
  1307. var t = new eui.EditableText();
  1308. this.tAdd = t;
  1309. t.anchorOffsetX = 0;
  1310. t.anchorOffsetY = 0;
  1311. t.height = 134;
  1312. t.lineSpacing = 20;
  1313. t.multiline = true;
  1314. t.text = "Label";
  1315. t.textColor = 0x000000;
  1316. t.verticalAlign = "top";
  1317. t.width = 462;
  1318. t.x = 144;
  1319. t.y = 948;
  1320. return t;
  1321. };
  1322. _proto.tijiaoBtn_i = function () {
  1323. var t = new eui.Image();
  1324. this.tijiaoBtn = t;
  1325. t.source = "tijiaoBtn_png";
  1326. t.x = 256;
  1327. t.y = 1136;
  1328. return t;
  1329. };
  1330. return InfoPageSkin;
  1331. })(eui.Skin);generateEUI.paths['resource/eui_skins/InGame.exml'] = window.InGameSkin = (function (_super) {
  1332. __extends(InGameSkin, _super);
  1333. function InGameSkin() {
  1334. _super.call(this);
  1335. this.skinParts = ["qiyeDiaAn","gerenDiaAn","_bird","addBtn"];
  1336. this.height = 1465;
  1337. this.width = 750;
  1338. this.qiyeDiaAn_i();
  1339. this.gerenDiaAn_i();
  1340. this.elementsContent = [this._bird_i(),this.addBtn_i()];
  1341. eui.Binding.$bindProperties(this, ["hostComponent.dq1"],[0],this._TweenItem1,"target");
  1342. eui.Binding.$bindProperties(this, [0],[],this._Object1,"alpha");
  1343. eui.Binding.$bindProperties(this, [0],[],this._Object2,"alpha");
  1344. eui.Binding.$bindProperties(this, [-0.01],[],this._Object2,"x");
  1345. eui.Binding.$bindProperties(this, [1],[],this._Object3,"alpha");
  1346. eui.Binding.$bindProperties(this, [58],[],this._Object3,"x");
  1347. eui.Binding.$bindProperties(this, ["hostComponent.dq2"],[0],this._TweenItem2,"target");
  1348. eui.Binding.$bindProperties(this, [0],[],this._Object4,"alpha");
  1349. eui.Binding.$bindProperties(this, [0],[],this._Object5,"alpha");
  1350. eui.Binding.$bindProperties(this, [0],[],this._Object6,"alpha");
  1351. eui.Binding.$bindProperties(this, [32],[],this._Object6,"x");
  1352. eui.Binding.$bindProperties(this, [1],[],this._Object7,"alpha");
  1353. eui.Binding.$bindProperties(this, [0.24],[],this._Object7,"x");
  1354. eui.Binding.$bindProperties(this, ["hostComponent.dq3"],[0],this._TweenItem3,"target");
  1355. eui.Binding.$bindProperties(this, [0],[],this._Object8,"alpha");
  1356. eui.Binding.$bindProperties(this, [0],[],this._Object9,"alpha");
  1357. eui.Binding.$bindProperties(this, [0],[],this._Object10,"alpha");
  1358. eui.Binding.$bindProperties(this, [132],[],this._Object10,"x");
  1359. eui.Binding.$bindProperties(this, [1],[],this._Object11,"alpha");
  1360. eui.Binding.$bindProperties(this, [-0.01],[],this._Object11,"x");
  1361. eui.Binding.$bindProperties(this, ["hostComponent.dg1"],[0],this._TweenItem4,"target");
  1362. eui.Binding.$bindProperties(this, [0],[],this._Object12,"alpha");
  1363. eui.Binding.$bindProperties(this, [49.73],[],this._Object13,"x");
  1364. eui.Binding.$bindProperties(this, [1],[],this._Object14,"alpha");
  1365. eui.Binding.$bindProperties(this, [92.03],[],this._Object14,"x");
  1366. eui.Binding.$bindProperties(this, ["hostComponent.dg2"],[0],this._TweenItem5,"target");
  1367. eui.Binding.$bindProperties(this, [0],[],this._Object15,"alpha");
  1368. eui.Binding.$bindProperties(this, [0],[],this._Object16,"alpha");
  1369. eui.Binding.$bindProperties(this, [54],[],this._Object16,"x");
  1370. eui.Binding.$bindProperties(this, [1],[],this._Object17,"alpha");
  1371. eui.Binding.$bindProperties(this, [1.33],[],this._Object17,"x");
  1372. eui.Binding.$bindProperties(this, ["hostComponent.dg3"],[0],this._TweenItem6,"target");
  1373. eui.Binding.$bindProperties(this, [0],[],this._Object18,"alpha");
  1374. eui.Binding.$bindProperties(this, [0],[],this._Object19,"alpha");
  1375. eui.Binding.$bindProperties(this, [60],[],this._Object19,"x");
  1376. eui.Binding.$bindProperties(this, [1],[],this._Object20,"alpha");
  1377. eui.Binding.$bindProperties(this, [0],[],this._Object20,"x");
  1378. }
  1379. var _proto = InGameSkin.prototype;
  1380. _proto.qiyeDiaAn_i = function () {
  1381. var t = new egret.tween.TweenGroup();
  1382. this.qiyeDiaAn = t;
  1383. t.items = [this._TweenItem1_i(),this._TweenItem2_i(),this._TweenItem3_i()];
  1384. return t;
  1385. };
  1386. _proto._TweenItem1_i = function () {
  1387. var t = new egret.tween.TweenItem();
  1388. this._TweenItem1 = t;
  1389. t.paths = [this._Set1_i(),this._Wait1_i(),this._Set2_i(),this._To1_i()];
  1390. return t;
  1391. };
  1392. _proto._Set1_i = function () {
  1393. var t = new egret.tween.Set();
  1394. t.props = this._Object1_i();
  1395. return t;
  1396. };
  1397. _proto._Object1_i = function () {
  1398. var t = {};
  1399. this._Object1 = t;
  1400. return t;
  1401. };
  1402. _proto._Wait1_i = function () {
  1403. var t = new egret.tween.Wait();
  1404. t.duration = 500;
  1405. return t;
  1406. };
  1407. _proto._Set2_i = function () {
  1408. var t = new egret.tween.Set();
  1409. t.props = this._Object2_i();
  1410. return t;
  1411. };
  1412. _proto._Object2_i = function () {
  1413. var t = {};
  1414. this._Object2 = t;
  1415. return t;
  1416. };
  1417. _proto._To1_i = function () {
  1418. var t = new egret.tween.To();
  1419. t.duration = 450;
  1420. t.ease = "sineOut";
  1421. t.props = this._Object3_i();
  1422. return t;
  1423. };
  1424. _proto._Object3_i = function () {
  1425. var t = {};
  1426. this._Object3 = t;
  1427. return t;
  1428. };
  1429. _proto._TweenItem2_i = function () {
  1430. var t = new egret.tween.TweenItem();
  1431. this._TweenItem2 = t;
  1432. t.paths = [this._Set3_i(),this._Wait2_i(),this._Set4_i(),this._To2_i(),this._To3_i()];
  1433. return t;
  1434. };
  1435. _proto._Set3_i = function () {
  1436. var t = new egret.tween.Set();
  1437. t.props = this._Object4_i();
  1438. return t;
  1439. };
  1440. _proto._Object4_i = function () {
  1441. var t = {};
  1442. this._Object4 = t;
  1443. return t;
  1444. };
  1445. _proto._Wait2_i = function () {
  1446. var t = new egret.tween.Wait();
  1447. t.duration = 500;
  1448. return t;
  1449. };
  1450. _proto._Set4_i = function () {
  1451. var t = new egret.tween.Set();
  1452. t.props = this._Object5_i();
  1453. return t;
  1454. };
  1455. _proto._Object5_i = function () {
  1456. var t = {};
  1457. this._Object5 = t;
  1458. return t;
  1459. };
  1460. _proto._To2_i = function () {
  1461. var t = new egret.tween.To();
  1462. t.duration = 450;
  1463. t.props = this._Object6_i();
  1464. return t;
  1465. };
  1466. _proto._Object6_i = function () {
  1467. var t = {};
  1468. this._Object6 = t;
  1469. return t;
  1470. };
  1471. _proto._To3_i = function () {
  1472. var t = new egret.tween.To();
  1473. t.duration = 450;
  1474. t.ease = "sineOut";
  1475. t.props = this._Object7_i();
  1476. return t;
  1477. };
  1478. _proto._Object7_i = function () {
  1479. var t = {};
  1480. this._Object7 = t;
  1481. return t;
  1482. };
  1483. _proto._TweenItem3_i = function () {
  1484. var t = new egret.tween.TweenItem();
  1485. this._TweenItem3 = t;
  1486. t.paths = [this._Set5_i(),this._Wait3_i(),this._Set6_i(),this._To4_i(),this._To5_i()];
  1487. return t;
  1488. };
  1489. _proto._Set5_i = function () {
  1490. var t = new egret.tween.Set();
  1491. t.props = this._Object8_i();
  1492. return t;
  1493. };
  1494. _proto._Object8_i = function () {
  1495. var t = {};
  1496. this._Object8 = t;
  1497. return t;
  1498. };
  1499. _proto._Wait3_i = function () {
  1500. var t = new egret.tween.Wait();
  1501. t.duration = 500;
  1502. return t;
  1503. };
  1504. _proto._Set6_i = function () {
  1505. var t = new egret.tween.Set();
  1506. t.props = this._Object9_i();
  1507. return t;
  1508. };
  1509. _proto._Object9_i = function () {
  1510. var t = {};
  1511. this._Object9 = t;
  1512. return t;
  1513. };
  1514. _proto._To4_i = function () {
  1515. var t = new egret.tween.To();
  1516. t.duration = 900;
  1517. t.props = this._Object10_i();
  1518. return t;
  1519. };
  1520. _proto._Object10_i = function () {
  1521. var t = {};
  1522. this._Object10 = t;
  1523. return t;
  1524. };
  1525. _proto._To5_i = function () {
  1526. var t = new egret.tween.To();
  1527. t.duration = 450;
  1528. t.ease = "sineOut";
  1529. t.props = this._Object11_i();
  1530. return t;
  1531. };
  1532. _proto._Object11_i = function () {
  1533. var t = {};
  1534. this._Object11 = t;
  1535. return t;
  1536. };
  1537. _proto.gerenDiaAn_i = function () {
  1538. var t = new egret.tween.TweenGroup();
  1539. this.gerenDiaAn = t;
  1540. t.items = [this._TweenItem4_i(),this._TweenItem5_i(),this._TweenItem6_i()];
  1541. return t;
  1542. };
  1543. _proto._TweenItem4_i = function () {
  1544. var t = new egret.tween.TweenItem();
  1545. this._TweenItem4 = t;
  1546. t.paths = [this._Set7_i(),this._Wait4_i(),this._Set8_i(),this._To6_i()];
  1547. return t;
  1548. };
  1549. _proto._Set7_i = function () {
  1550. var t = new egret.tween.Set();
  1551. t.props = this._Object12_i();
  1552. return t;
  1553. };
  1554. _proto._Object12_i = function () {
  1555. var t = {};
  1556. this._Object12 = t;
  1557. return t;
  1558. };
  1559. _proto._Wait4_i = function () {
  1560. var t = new egret.tween.Wait();
  1561. t.duration = 500;
  1562. return t;
  1563. };
  1564. _proto._Set8_i = function () {
  1565. var t = new egret.tween.Set();
  1566. t.props = this._Object13_i();
  1567. return t;
  1568. };
  1569. _proto._Object13_i = function () {
  1570. var t = {};
  1571. this._Object13 = t;
  1572. return t;
  1573. };
  1574. _proto._To6_i = function () {
  1575. var t = new egret.tween.To();
  1576. t.duration = 500;
  1577. t.ease = "sineOut";
  1578. t.props = this._Object14_i();
  1579. return t;
  1580. };
  1581. _proto._Object14_i = function () {
  1582. var t = {};
  1583. this._Object14 = t;
  1584. return t;
  1585. };
  1586. _proto._TweenItem5_i = function () {
  1587. var t = new egret.tween.TweenItem();
  1588. this._TweenItem5 = t;
  1589. t.paths = [this._Set9_i(),this._Wait5_i(),this._Set10_i(),this._To7_i()];
  1590. return t;
  1591. };
  1592. _proto._Set9_i = function () {
  1593. var t = new egret.tween.Set();
  1594. t.props = this._Object15_i();
  1595. return t;
  1596. };
  1597. _proto._Object15_i = function () {
  1598. var t = {};
  1599. this._Object15 = t;
  1600. return t;
  1601. };
  1602. _proto._Wait5_i = function () {
  1603. var t = new egret.tween.Wait();
  1604. t.duration = 1000;
  1605. return t;
  1606. };
  1607. _proto._Set10_i = function () {
  1608. var t = new egret.tween.Set();
  1609. t.props = this._Object16_i();
  1610. return t;
  1611. };
  1612. _proto._Object16_i = function () {
  1613. var t = {};
  1614. this._Object16 = t;
  1615. return t;
  1616. };
  1617. _proto._To7_i = function () {
  1618. var t = new egret.tween.To();
  1619. t.duration = 500;
  1620. t.ease = "sineOut";
  1621. t.props = this._Object17_i();
  1622. return t;
  1623. };
  1624. _proto._Object17_i = function () {
  1625. var t = {};
  1626. this._Object17 = t;
  1627. return t;
  1628. };
  1629. _proto._TweenItem6_i = function () {
  1630. var t = new egret.tween.TweenItem();
  1631. this._TweenItem6 = t;
  1632. t.paths = [this._Set11_i(),this._Wait6_i(),this._Set12_i(),this._To8_i()];
  1633. return t;
  1634. };
  1635. _proto._Set11_i = function () {
  1636. var t = new egret.tween.Set();
  1637. t.props = this._Object18_i();
  1638. return t;
  1639. };
  1640. _proto._Object18_i = function () {
  1641. var t = {};
  1642. this._Object18 = t;
  1643. return t;
  1644. };
  1645. _proto._Wait6_i = function () {
  1646. var t = new egret.tween.Wait();
  1647. t.duration = 1500;
  1648. return t;
  1649. };
  1650. _proto._Set12_i = function () {
  1651. var t = new egret.tween.Set();
  1652. t.props = this._Object19_i();
  1653. return t;
  1654. };
  1655. _proto._Object19_i = function () {
  1656. var t = {};
  1657. this._Object19 = t;
  1658. return t;
  1659. };
  1660. _proto._To8_i = function () {
  1661. var t = new egret.tween.To();
  1662. t.duration = 500;
  1663. t.ease = "sineOut";
  1664. t.props = this._Object20_i();
  1665. return t;
  1666. };
  1667. _proto._Object20_i = function () {
  1668. var t = {};
  1669. this._Object20 = t;
  1670. return t;
  1671. };
  1672. _proto._bird_i = function () {
  1673. var t = new eui.Image();
  1674. this._bird = t;
  1675. t.anchorOffsetX = 500;
  1676. t.scaleX = 1;
  1677. t.source = "map3000_jpg";
  1678. t.x = 375;
  1679. t.y = 0;
  1680. return t;
  1681. };
  1682. _proto.addBtn_i = function () {
  1683. var t = new eui.Image();
  1684. this.addBtn = t;
  1685. t.source = "aloadingBar0_png";
  1686. t.x = 288;
  1687. t.y = 72;
  1688. return t;
  1689. };
  1690. return InGameSkin;
  1691. })(eui.Skin);generateEUI.paths['resource/eui_skins/ItemRendererSkin.exml'] = window.skins.ItemRendererSkin = (function (_super) {
  1692. __extends(ItemRendererSkin, _super);
  1693. function ItemRendererSkin() {
  1694. _super.call(this);
  1695. this.skinParts = ["labelDisplay"];
  1696. this.minHeight = 50;
  1697. this.minWidth = 100;
  1698. this.elementsContent = [this._Image1_i(),this.labelDisplay_i()];
  1699. this.states = [
  1700. new eui.State ("up",
  1701. [
  1702. ])
  1703. ,
  1704. new eui.State ("down",
  1705. [
  1706. new eui.SetProperty("_Image1","source","button_down_png")
  1707. ])
  1708. ,
  1709. new eui.State ("disabled",
  1710. [
  1711. new eui.SetProperty("_Image1","alpha",0.5)
  1712. ])
  1713. ];
  1714. eui.Binding.$bindProperties(this, ["hostComponent.data"],[0],this.labelDisplay,"text");
  1715. }
  1716. var _proto = ItemRendererSkin.prototype;
  1717. _proto._Image1_i = function () {
  1718. var t = new eui.Image();
  1719. this._Image1 = t;
  1720. t.percentHeight = 100;
  1721. t.scale9Grid = new egret.Rectangle(1,3,8,8);
  1722. t.source = "button_up_png";
  1723. t.percentWidth = 100;
  1724. return t;
  1725. };
  1726. _proto.labelDisplay_i = function () {
  1727. var t = new eui.Label();
  1728. this.labelDisplay = t;
  1729. t.bottom = 8;
  1730. t.fontFamily = "Tahoma";
  1731. t.left = 8;
  1732. t.right = 8;
  1733. t.size = 20;
  1734. t.textAlign = "center";
  1735. t.textColor = 0xFFFFFF;
  1736. t.top = 8;
  1737. t.verticalAlign = "middle";
  1738. return t;
  1739. };
  1740. return ItemRendererSkin;
  1741. })(eui.Skin);generateEUI.paths['resource/eui_skins/MainGame.exml'] = window.MainGameSkin = (function (_super) {
  1742. __extends(MainGameSkin, _super);
  1743. function MainGameSkin() {
  1744. _super.call(this);
  1745. this.skinParts = [];
  1746. this.height = 1465;
  1747. this.width = 750;
  1748. }
  1749. var _proto = MainGameSkin.prototype;
  1750. return MainGameSkin;
  1751. })(eui.Skin);generateEUI.paths['resource/eui_skins/PanelSkin.exml'] = window.skins.PanelSkin = (function (_super) {
  1752. __extends(PanelSkin, _super);
  1753. function PanelSkin() {
  1754. _super.call(this);
  1755. this.skinParts = ["titleDisplay","moveArea","closeButton"];
  1756. this.minHeight = 230;
  1757. this.minWidth = 450;
  1758. this.elementsContent = [this._Image1_i(),this.moveArea_i(),this.closeButton_i()];
  1759. }
  1760. var _proto = PanelSkin.prototype;
  1761. _proto._Image1_i = function () {
  1762. var t = new eui.Image();
  1763. t.bottom = 0;
  1764. t.left = 0;
  1765. t.right = 0;
  1766. t.scale9Grid = new egret.Rectangle(2,2,12,12);
  1767. t.source = "border_png";
  1768. t.top = 0;
  1769. return t;
  1770. };
  1771. _proto.moveArea_i = function () {
  1772. var t = new eui.Group();
  1773. this.moveArea = t;
  1774. t.height = 45;
  1775. t.left = 0;
  1776. t.right = 0;
  1777. t.top = 0;
  1778. t.elementsContent = [this._Image2_i(),this.titleDisplay_i()];
  1779. return t;
  1780. };
  1781. _proto._Image2_i = function () {
  1782. var t = new eui.Image();
  1783. t.bottom = 0;
  1784. t.left = 0;
  1785. t.right = 0;
  1786. t.source = "header_png";
  1787. t.top = 0;
  1788. return t;
  1789. };
  1790. _proto.titleDisplay_i = function () {
  1791. var t = new eui.Label();
  1792. this.titleDisplay = t;
  1793. t.fontFamily = "Tahoma";
  1794. t.left = 15;
  1795. t.right = 5;
  1796. t.size = 20;
  1797. t.textColor = 0xFFFFFF;
  1798. t.verticalCenter = 0;
  1799. t.wordWrap = false;
  1800. return t;
  1801. };
  1802. _proto.closeButton_i = function () {
  1803. var t = new eui.Button();
  1804. this.closeButton = t;
  1805. t.bottom = 5;
  1806. t.horizontalCenter = 0;
  1807. t.label = "close";
  1808. return t;
  1809. };
  1810. return PanelSkin;
  1811. })(eui.Skin);generateEUI.paths['resource/eui_skins/PrizePage.exml'] = window.PrizePageSkin = (function (_super) {
  1812. __extends(PrizePageSkin, _super);
  1813. function PrizePageSkin() {
  1814. _super.call(this);
  1815. this.skinParts = ["winBg","prizeBit","tName","tTel","tAdd","tijiaoBtn","gWin","youhuiBit","shareBtn","linkBtn","gLose","shareBtn2","homeBtn","gTijiaoOk"];
  1816. this.height = 1465;
  1817. this.width = 750;
  1818. 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()];
  1819. }
  1820. var _proto = PrizePageSkin.prototype;
  1821. _proto._Image1_i = function () {
  1822. var t = new eui.Image();
  1823. t.height = 1565;
  1824. t.source = "homeBg_jpg";
  1825. t.x = 0;
  1826. t.y = -50;
  1827. return t;
  1828. };
  1829. _proto._Image2_i = function () {
  1830. var t = new eui.Image();
  1831. t.horizontalCenter = 0.5;
  1832. t.source = "homeTitle_png";
  1833. t.y = 192;
  1834. return t;
  1835. };
  1836. _proto._Image3_i = function () {
  1837. var t = new eui.Image();
  1838. t.source = "homeC1_png";
  1839. t.x = 312;
  1840. t.y = 436;
  1841. return t;
  1842. };
  1843. _proto._Image4_i = function () {
  1844. var t = new eui.Image();
  1845. t.source = "homeC2_png";
  1846. t.x = 508;
  1847. t.y = 442;
  1848. return t;
  1849. };
  1850. _proto._ToumingBg1_i = function () {
  1851. var t = new ToumingBg();
  1852. t.anchorOffsetY = 0;
  1853. t.height = 1800;
  1854. t.width = 750;
  1855. t.x = 0;
  1856. t.y = -150;
  1857. return t;
  1858. };
  1859. _proto.gWin_i = function () {
  1860. var t = new eui.Group();
  1861. this.gWin = t;
  1862. t.height = 1465;
  1863. t.visible = false;
  1864. t.width = 750;
  1865. t.x = 0;
  1866. t.y = 0;
  1867. t.elementsContent = [this.winBg_i(),this.prizeBit_i(),this.tName_i(),this.tTel_i(),this.tAdd_i(),this.tijiaoBtn_i()];
  1868. return t;
  1869. };
  1870. _proto.winBg_i = function () {
  1871. var t = new eui.Image();
  1872. this.winBg = t;
  1873. t.horizontalCenter = 0;
  1874. t.source = "getPrize_png";
  1875. t.y = 184.82;
  1876. return t;
  1877. };
  1878. _proto.prizeBit_i = function () {
  1879. var t = new eui.Image();
  1880. this.prizeBit = t;
  1881. t.anchorOffsetX = 158;
  1882. t.anchorOffsetY = 91;
  1883. t.horizontalCenter = 0;
  1884. t.source = "prize6_png";
  1885. t.y = 540.81;
  1886. return t;
  1887. };
  1888. _proto.tName_i = function () {
  1889. var t = new eui.EditableText();
  1890. this.tName = t;
  1891. t.anchorOffsetX = 0;
  1892. t.anchorOffsetY = 0;
  1893. t.fontFamily = "SimHei";
  1894. t.height = 68;
  1895. t.prompt = "请输入您的姓名";
  1896. t.promptColor = 0xffffff;
  1897. t.size = 30;
  1898. t.text = "";
  1899. t.textAlign = "left";
  1900. t.verticalAlign = "middle";
  1901. t.width = 378;
  1902. t.x = 181.66;
  1903. t.y = 756.48;
  1904. return t;
  1905. };
  1906. _proto.tTel_i = function () {
  1907. var t = new eui.EditableText();
  1908. this.tTel = t;
  1909. t.anchorOffsetX = 0;
  1910. t.anchorOffsetY = 0;
  1911. t.fontFamily = "SimHei";
  1912. t.height = 68;
  1913. t.inputType = "tel";
  1914. t.prompt = "请输入您的联系电话";
  1915. t.promptColor = 0xffffff;
  1916. t.size = 30;
  1917. t.text = "";
  1918. t.textAlign = "left";
  1919. t.verticalAlign = "middle";
  1920. t.width = 378;
  1921. t.x = 181.66;
  1922. t.y = 847.38;
  1923. return t;
  1924. };
  1925. _proto.tAdd_i = function () {
  1926. var t = new eui.EditableText();
  1927. this.tAdd = t;
  1928. t.anchorOffsetX = 0;
  1929. t.anchorOffsetY = 0;
  1930. t.fontFamily = "SimHei";
  1931. t.height = 68;
  1932. t.prompt = "请输入邮寄地址";
  1933. t.promptColor = 0xffffff;
  1934. t.size = 30;
  1935. t.text = "";
  1936. t.textAlign = "left";
  1937. t.verticalAlign = "middle";
  1938. t.width = 378;
  1939. t.x = 181.66;
  1940. t.y = 938.28;
  1941. return t;
  1942. };
  1943. _proto.tijiaoBtn_i = function () {
  1944. var t = new eui.Image();
  1945. this.tijiaoBtn = t;
  1946. t.anchorOffsetX = 101.5;
  1947. t.anchorOffsetY = 38.5;
  1948. t.scaleX = 1;
  1949. t.scaleY = 1;
  1950. t.source = "tijiaoBtn_png";
  1951. t.x = 385;
  1952. t.y = 1093.26;
  1953. return t;
  1954. };
  1955. _proto.gLose_i = function () {
  1956. var t = new eui.Group();
  1957. this.gLose = t;
  1958. t.height = 1465;
  1959. t.width = 750;
  1960. t.x = 0;
  1961. t.y = 0;
  1962. t.elementsContent = [this._Image5_i(),this.youhuiBit_i(),this.shareBtn_i(),this.linkBtn_i()];
  1963. return t;
  1964. };
  1965. _proto._Image5_i = function () {
  1966. var t = new eui.Image();
  1967. t.horizontalCenter = 0;
  1968. t.source = "prizeYouhuiBg_png";
  1969. t.y = 185.14;
  1970. return t;
  1971. };
  1972. _proto.youhuiBit_i = function () {
  1973. var t = new eui.Image();
  1974. this.youhuiBit = t;
  1975. t.source = "";
  1976. t.x = 138.97;
  1977. t.y = 451.04;
  1978. return t;
  1979. };
  1980. _proto.shareBtn_i = function () {
  1981. var t = new eui.Image();
  1982. this.shareBtn = t;
  1983. t.source = "shareBtn_png";
  1984. t.x = 146.4;
  1985. t.y = 789.18;
  1986. return t;
  1987. };
  1988. _proto.linkBtn_i = function () {
  1989. var t = new eui.Image();
  1990. this.linkBtn = t;
  1991. t.source = "linkBtn_png";
  1992. t.x = 416;
  1993. t.y = 789.18;
  1994. return t;
  1995. };
  1996. _proto.gTijiaoOk_i = function () {
  1997. var t = new eui.Group();
  1998. this.gTijiaoOk = t;
  1999. t.height = 1465;
  2000. t.visible = false;
  2001. t.width = 750;
  2002. t.x = 0;
  2003. t.y = 0;
  2004. t.elementsContent = [this._Image6_i(),this.shareBtn2_i(),this.homeBtn_i()];
  2005. return t;
  2006. };
  2007. _proto._Image6_i = function () {
  2008. var t = new eui.Image();
  2009. t.horizontalCenter = 0;
  2010. t.source = "tijiaoOk_png";
  2011. t.y = 420;
  2012. return t;
  2013. };
  2014. _proto.shareBtn2_i = function () {
  2015. var t = new eui.Image();
  2016. this.shareBtn2 = t;
  2017. t.source = "shareBtn_png";
  2018. t.x = 140;
  2019. t.y = 800;
  2020. return t;
  2021. };
  2022. _proto.homeBtn_i = function () {
  2023. var t = new eui.Image();
  2024. this.homeBtn = t;
  2025. t.source = "homeBtn_png";
  2026. t.x = 410;
  2027. t.y = 800;
  2028. return t;
  2029. };
  2030. return PrizePageSkin;
  2031. })(eui.Skin);generateEUI.paths['resource/eui_skins/ProgressBarSkin.exml'] = window.skins.ProgressBarSkin = (function (_super) {
  2032. __extends(ProgressBarSkin, _super);
  2033. function ProgressBarSkin() {
  2034. _super.call(this);
  2035. this.skinParts = ["thumb","labelDisplay"];
  2036. this.minHeight = 18;
  2037. this.minWidth = 30;
  2038. this.elementsContent = [this._Image1_i(),this.thumb_i(),this.labelDisplay_i()];
  2039. }
  2040. var _proto = ProgressBarSkin.prototype;
  2041. _proto._Image1_i = function () {
  2042. var t = new eui.Image();
  2043. t.percentHeight = 100;
  2044. t.scale9Grid = new egret.Rectangle(1,1,4,4);
  2045. t.source = "track_pb_png";
  2046. t.verticalCenter = 0;
  2047. t.percentWidth = 100;
  2048. return t;
  2049. };
  2050. _proto.thumb_i = function () {
  2051. var t = new eui.Image();
  2052. this.thumb = t;
  2053. t.percentHeight = 100;
  2054. t.source = "thumb_pb_png";
  2055. t.percentWidth = 100;
  2056. return t;
  2057. };
  2058. _proto.labelDisplay_i = function () {
  2059. var t = new eui.Label();
  2060. this.labelDisplay = t;
  2061. t.fontFamily = "Tahoma";
  2062. t.horizontalCenter = 0;
  2063. t.size = 15;
  2064. t.textAlign = "center";
  2065. t.textColor = 0x707070;
  2066. t.verticalAlign = "middle";
  2067. t.verticalCenter = 0;
  2068. return t;
  2069. };
  2070. return ProgressBarSkin;
  2071. })(eui.Skin);generateEUI.paths['resource/eui_skins/QrPage.exml'] = window.QrPageSkin = (function (_super) {
  2072. __extends(QrPageSkin, _super);
  2073. function QrPageSkin() {
  2074. _super.call(this);
  2075. this.skinParts = [];
  2076. this.height = 1600;
  2077. this.width = 750;
  2078. }
  2079. var _proto = QrPageSkin.prototype;
  2080. return QrPageSkin;
  2081. })(eui.Skin);generateEUI.paths['resource/eui_skins/RadioButtonSkin.exml'] = window.skins.RadioButtonSkin = (function (_super) {
  2082. __extends(RadioButtonSkin, _super);
  2083. function RadioButtonSkin() {
  2084. _super.call(this);
  2085. this.skinParts = ["labelDisplay"];
  2086. this.elementsContent = [this._Group1_i()];
  2087. this.states = [
  2088. new eui.State ("up",
  2089. [
  2090. ])
  2091. ,
  2092. new eui.State ("down",
  2093. [
  2094. new eui.SetProperty("_Image1","alpha",0.7)
  2095. ])
  2096. ,
  2097. new eui.State ("disabled",
  2098. [
  2099. new eui.SetProperty("_Image1","alpha",0.5)
  2100. ])
  2101. ,
  2102. new eui.State ("upAndSelected",
  2103. [
  2104. new eui.SetProperty("_Image1","source","radiobutton_select_up_png")
  2105. ])
  2106. ,
  2107. new eui.State ("downAndSelected",
  2108. [
  2109. new eui.SetProperty("_Image1","source","radiobutton_select_down_png")
  2110. ])
  2111. ,
  2112. new eui.State ("disabledAndSelected",
  2113. [
  2114. new eui.SetProperty("_Image1","source","radiobutton_select_disabled_png")
  2115. ])
  2116. ];
  2117. }
  2118. var _proto = RadioButtonSkin.prototype;
  2119. _proto._Group1_i = function () {
  2120. var t = new eui.Group();
  2121. t.percentHeight = 100;
  2122. t.percentWidth = 100;
  2123. t.layout = this._HorizontalLayout1_i();
  2124. t.elementsContent = [this._Image1_i(),this.labelDisplay_i()];
  2125. return t;
  2126. };
  2127. _proto._HorizontalLayout1_i = function () {
  2128. var t = new eui.HorizontalLayout();
  2129. t.verticalAlign = "middle";
  2130. return t;
  2131. };
  2132. _proto._Image1_i = function () {
  2133. var t = new eui.Image();
  2134. this._Image1 = t;
  2135. t.alpha = 1;
  2136. t.fillMode = "scale";
  2137. t.source = "radiobutton_unselect_png";
  2138. return t;
  2139. };
  2140. _proto.labelDisplay_i = function () {
  2141. var t = new eui.Label();
  2142. this.labelDisplay = t;
  2143. t.fontFamily = "Tahoma";
  2144. t.size = 20;
  2145. t.textAlign = "center";
  2146. t.textColor = 0x707070;
  2147. t.verticalAlign = "middle";
  2148. return t;
  2149. };
  2150. return RadioButtonSkin;
  2151. })(eui.Skin);generateEUI.paths['resource/eui_skins/RankBar.exml'] = window.RankBarSkin = (function (_super) {
  2152. __extends(RankBarSkin, _super);
  2153. function RankBarSkin() {
  2154. _super.call(this);
  2155. this.skinParts = ["gold","roundDi","head","ma","t","rankTxt"];
  2156. this.height = 80;
  2157. this.width = 602;
  2158. this.elementsContent = [this._Rect1_i(),this._Rect2_i(),this.gold_i(),this.roundDi_i(),this.head_i(),this.ma_i(),this.t_i(),this.rankTxt_i()];
  2159. }
  2160. var _proto = RankBarSkin.prototype;
  2161. _proto._Rect1_i = function () {
  2162. var t = new eui.Rect();
  2163. t.fillColor = 0xffffff;
  2164. t.height = 80;
  2165. t.left = 0;
  2166. t.right = 0;
  2167. t.y = 0;
  2168. return t;
  2169. };
  2170. _proto._Rect2_i = function () {
  2171. var t = new eui.Rect();
  2172. t.fillColor = 0xbbbbbb;
  2173. t.height = 2;
  2174. t.left = 0;
  2175. t.right = 0;
  2176. t.y = 78;
  2177. return t;
  2178. };
  2179. _proto.gold_i = function () {
  2180. var t = new eui.Image();
  2181. this.gold = t;
  2182. t.source = "img/rankGold.png";
  2183. t.x = 92;
  2184. t.y = 14;
  2185. return t;
  2186. };
  2187. _proto.roundDi_i = function () {
  2188. var t = new eui.Rect();
  2189. this.roundDi = t;
  2190. t.anchorOffsetX = 25;
  2191. t.anchorOffsetY = 25;
  2192. t.ellipseHeight = 50;
  2193. t.ellipseWidth = 50;
  2194. t.fillColor = 0xffffff;
  2195. t.height = 50;
  2196. t.width = 50;
  2197. t.x = 45;
  2198. t.y = 40;
  2199. return t;
  2200. };
  2201. _proto.head_i = function () {
  2202. var t = new eui.Image();
  2203. this.head = t;
  2204. t.anchorOffsetX = 25;
  2205. t.anchorOffsetY = 25;
  2206. t.height = 50;
  2207. t.width = 50;
  2208. t.x = 45;
  2209. t.y = 40;
  2210. return t;
  2211. };
  2212. _proto.ma_i = function () {
  2213. var t = new eui.Rect();
  2214. this.ma = t;
  2215. t.anchorOffsetX = 24;
  2216. t.anchorOffsetY = 24;
  2217. t.ellipseHeight = 48;
  2218. t.ellipseWidth = 48;
  2219. t.height = 48;
  2220. t.width = 48;
  2221. t.x = 45;
  2222. t.y = 40;
  2223. return t;
  2224. };
  2225. _proto.t_i = function () {
  2226. var t = new eui.Label();
  2227. this.t = t;
  2228. t.anchorOffsetX = 0;
  2229. t.anchorOffsetY = 0;
  2230. t.height = 44;
  2231. t.size = 26;
  2232. t.text = "Label";
  2233. t.textColor = 0x000000;
  2234. t.verticalAlign = "middle";
  2235. t.width = 444.33;
  2236. t.x = 146;
  2237. t.y = 18;
  2238. return t;
  2239. };
  2240. _proto.rankTxt_i = function () {
  2241. var t = new eui.Label();
  2242. this.rankTxt = t;
  2243. t.anchorOffsetX = 0;
  2244. t.anchorOffsetY = 0;
  2245. t.height = 44;
  2246. t.size = 20;
  2247. t.text = "1";
  2248. t.textAlign = "center";
  2249. t.textColor = 0xff0000;
  2250. t.verticalAlign = "middle";
  2251. t.width = 49.33;
  2252. t.x = 85;
  2253. t.y = 21;
  2254. return t;
  2255. };
  2256. return RankBarSkin;
  2257. })(eui.Skin);generateEUI.paths['resource/eui_skins/RankBarNew.exml'] = window.RankBarNewSkin = (function (_super) {
  2258. __extends(RankBarNewSkin, _super);
  2259. function RankBarNewSkin() {
  2260. _super.call(this);
  2261. this.skinParts = ["head","ma","t"];
  2262. this.height = 80;
  2263. this.width = 600;
  2264. this.elementsContent = [this._Rect1_i(),this._Rect2_i(),this.head_i(),this.ma_i(),this.t_i()];
  2265. }
  2266. var _proto = RankBarNewSkin.prototype;
  2267. _proto._Rect1_i = function () {
  2268. var t = new eui.Rect();
  2269. t.fillColor = 0xFFFFFF;
  2270. t.height = 80;
  2271. t.left = 0;
  2272. t.right = 0;
  2273. t.y = 0;
  2274. return t;
  2275. };
  2276. _proto._Rect2_i = function () {
  2277. var t = new eui.Rect();
  2278. t.fillColor = 0xBBBBBB;
  2279. t.height = 2;
  2280. t.left = 0;
  2281. t.right = 0;
  2282. t.y = 78;
  2283. return t;
  2284. };
  2285. _proto.head_i = function () {
  2286. var t = new eui.Image();
  2287. this.head = t;
  2288. t.anchorOffsetX = 25;
  2289. t.anchorOffsetY = 25;
  2290. t.height = 50;
  2291. t.width = 50;
  2292. t.x = 45;
  2293. t.y = 40;
  2294. return t;
  2295. };
  2296. _proto.ma_i = function () {
  2297. var t = new eui.Rect();
  2298. this.ma = t;
  2299. t.anchorOffsetX = 24;
  2300. t.anchorOffsetY = 24;
  2301. t.ellipseHeight = 48;
  2302. t.ellipseWidth = 48;
  2303. t.height = 48;
  2304. t.width = 48;
  2305. t.x = 45;
  2306. t.y = 40;
  2307. return t;
  2308. };
  2309. _proto.t_i = function () {
  2310. var t = new eui.Label();
  2311. this.t = t;
  2312. t.anchorOffsetX = 0;
  2313. t.anchorOffsetY = 0;
  2314. t.height = 44;
  2315. t.size = 26;
  2316. t.text = "Label";
  2317. t.textColor = 0x000000;
  2318. t.verticalAlign = "middle";
  2319. t.width = 499.33;
  2320. t.x = 91;
  2321. t.y = 18;
  2322. return t;
  2323. };
  2324. return RankBarNewSkin;
  2325. })(eui.Skin);generateEUI.paths['resource/eui_skins/RankMe.exml'] = window.RankMeSkin = (function (_super) {
  2326. __extends(RankMeSkin, _super);
  2327. function RankMeSkin() {
  2328. _super.call(this);
  2329. this.skinParts = ["head","ma","t"];
  2330. this.height = 60;
  2331. this.width = 602;
  2332. this.elementsContent = [this._Rect1_i(),this.head_i(),this.ma_i(),this.t_i()];
  2333. }
  2334. var _proto = RankMeSkin.prototype;
  2335. _proto._Rect1_i = function () {
  2336. var t = new eui.Rect();
  2337. t.anchorOffsetX = 27;
  2338. t.anchorOffsetY = 27;
  2339. t.ellipseHeight = 54;
  2340. t.ellipseWidth = 54;
  2341. t.fillColor = 0xffffff;
  2342. t.height = 54;
  2343. t.width = 54;
  2344. t.x = 50;
  2345. t.y = 30.9;
  2346. return t;
  2347. };
  2348. _proto.head_i = function () {
  2349. var t = new eui.Image();
  2350. this.head = t;
  2351. t.anchorOffsetX = 25;
  2352. t.anchorOffsetY = 25;
  2353. t.height = 50;
  2354. t.width = 50;
  2355. t.x = 50;
  2356. t.y = 30.9;
  2357. return t;
  2358. };
  2359. _proto.ma_i = function () {
  2360. var t = new eui.Rect();
  2361. this.ma = t;
  2362. t.anchorOffsetX = 24;
  2363. t.anchorOffsetY = 24;
  2364. t.ellipseHeight = 48;
  2365. t.ellipseWidth = 48;
  2366. t.height = 48;
  2367. t.width = 48;
  2368. t.x = 50;
  2369. t.y = 30.9;
  2370. return t;
  2371. };
  2372. _proto.t_i = function () {
  2373. var t = new eui.Label();
  2374. this.t = t;
  2375. t.anchorOffsetX = 0;
  2376. t.anchorOffsetY = 0;
  2377. t.height = 44;
  2378. t.size = 26;
  2379. t.text = "Label";
  2380. t.textColor = 0xffffff;
  2381. t.verticalAlign = "middle";
  2382. t.width = 496;
  2383. t.x = 91;
  2384. t.y = 7.4;
  2385. return t;
  2386. };
  2387. return RankMeSkin;
  2388. })(eui.Skin);generateEUI.paths['resource/eui_skins/RankPage.exml'] = window.RankPageSkin = (function (_super) {
  2389. __extends(RankPageSkin, _super);
  2390. function RankPageSkin() {
  2391. _super.call(this);
  2392. this.skinParts = ["bar","closeBtn","btn0","btn1","rankMe","gTop","scTop","gNew","scNew"];
  2393. this.height = 1600;
  2394. this.width = 750;
  2395. this.elementsContent = [this._Image1_i(),this.bar_i(),this.closeBtn_i(),this.btn0_i(),this.btn1_i(),this.rankMe_i(),this.scTop_i(),this.scNew_i()];
  2396. }
  2397. var _proto = RankPageSkin.prototype;
  2398. _proto._Image1_i = function () {
  2399. var t = new eui.Image();
  2400. t.source = "img/rankBg.png";
  2401. t.x = 47;
  2402. t.y = 150.62;
  2403. return t;
  2404. };
  2405. _proto.bar_i = function () {
  2406. var t = new eui.Image();
  2407. this.bar = t;
  2408. t.anchorOffsetX = 35.5;
  2409. t.anchorOffsetY = 3;
  2410. t.source = "img/rankBar.png";
  2411. t.x = 240.59;
  2412. t.y = 397.04;
  2413. return t;
  2414. };
  2415. _proto.closeBtn_i = function () {
  2416. var t = new ToumingBtn();
  2417. this.closeBtn = t;
  2418. t.anchorOffsetX = 0;
  2419. t.anchorOffsetY = 0;
  2420. t.height = 105;
  2421. t.width = 103;
  2422. t.x = 614;
  2423. t.y = 129.12;
  2424. return t;
  2425. };
  2426. _proto.btn0_i = function () {
  2427. var t = new ToumingBtn();
  2428. this.btn0 = t;
  2429. t.anchorOffsetX = 102.66;
  2430. t.anchorOffsetY = 33.86;
  2431. t.height = 65;
  2432. t.width = 207;
  2433. t.x = 240.25;
  2434. t.y = 375.4;
  2435. return t;
  2436. };
  2437. _proto.btn1_i = function () {
  2438. var t = new ToumingBtn();
  2439. this.btn1 = t;
  2440. t.anchorOffsetX = 102.67;
  2441. t.anchorOffsetY = 33.32;
  2442. t.height = 66.34;
  2443. t.width = 207;
  2444. t.x = 507.58;
  2445. t.y = 374.19;
  2446. return t;
  2447. };
  2448. _proto.rankMe_i = function () {
  2449. var t = new RankMe();
  2450. this.rankMe = t;
  2451. t.x = 78;
  2452. t.y = 408.6;
  2453. return t;
  2454. };
  2455. _proto.scTop_i = function () {
  2456. var t = new eui.Scroller();
  2457. this.scTop = t;
  2458. t.anchorOffsetX = 0;
  2459. t.anchorOffsetY = 0;
  2460. t.height = 937.88;
  2461. t.scrollPolicyH = "off";
  2462. t.scrollPolicyV = "on";
  2463. t.width = 604.55;
  2464. t.x = 74;
  2465. t.y = 473.12;
  2466. t.viewport = this.gTop_i();
  2467. return t;
  2468. };
  2469. _proto.gTop_i = function () {
  2470. var t = new eui.Group();
  2471. this.gTop = t;
  2472. t.layout = this._VerticalLayout1_i();
  2473. return t;
  2474. };
  2475. _proto._VerticalLayout1_i = function () {
  2476. var t = new eui.VerticalLayout();
  2477. return t;
  2478. };
  2479. _proto.scNew_i = function () {
  2480. var t = new eui.Scroller();
  2481. this.scNew = t;
  2482. t.anchorOffsetX = 0;
  2483. t.anchorOffsetY = 0;
  2484. t.height = 937.88;
  2485. t.scrollPolicyH = "off";
  2486. t.scrollPolicyV = "on";
  2487. t.width = 604.55;
  2488. t.x = 74;
  2489. t.y = 473.12;
  2490. t.viewport = this.gNew_i();
  2491. return t;
  2492. };
  2493. _proto.gNew_i = function () {
  2494. var t = new eui.Group();
  2495. this.gNew = t;
  2496. t.layout = this._VerticalLayout2_i();
  2497. return t;
  2498. };
  2499. _proto._VerticalLayout2_i = function () {
  2500. var t = new eui.VerticalLayout();
  2501. return t;
  2502. };
  2503. return RankPageSkin;
  2504. })(eui.Skin);generateEUI.paths['resource/eui_skins/RedPoint.exml'] = window.RedPointSkin = (function (_super) {
  2505. __extends(RedPointSkin, _super);
  2506. function RedPointSkin() {
  2507. _super.call(this);
  2508. this.skinParts = ["r0","r1","r2"];
  2509. this.height = 100;
  2510. this.width = 100;
  2511. this.elementsContent = [this.r0_i(),this.r1_i(),this.r2_i()];
  2512. }
  2513. var _proto = RedPointSkin.prototype;
  2514. _proto.r0_i = function () {
  2515. var t = new eui.Rect();
  2516. this.r0 = t;
  2517. t.anchorOffsetX = 25;
  2518. t.anchorOffsetY = 25;
  2519. t.ellipseWidth = 50;
  2520. t.fillColor = 0xff5f2d;
  2521. t.height = 50;
  2522. t.horizontalCenter = 0;
  2523. t.verticalCenter = 0;
  2524. t.width = 50;
  2525. return t;
  2526. };
  2527. _proto.r1_i = function () {
  2528. var t = new eui.Rect();
  2529. this.r1 = t;
  2530. t.anchorOffsetX = 25;
  2531. t.anchorOffsetY = 25;
  2532. t.ellipseWidth = 50;
  2533. t.fillColor = 0xFF5F2D;
  2534. t.height = 50;
  2535. t.horizontalCenter = 0;
  2536. t.verticalCenter = 0;
  2537. t.width = 50;
  2538. return t;
  2539. };
  2540. _proto.r2_i = function () {
  2541. var t = new eui.Rect();
  2542. this.r2 = t;
  2543. t.anchorOffsetX = 25;
  2544. t.anchorOffsetY = 25;
  2545. t.ellipseWidth = 50;
  2546. t.fillColor = 0xFF5F2D;
  2547. t.height = 50;
  2548. t.horizontalCenter = 0;
  2549. t.verticalCenter = 0;
  2550. t.width = 50;
  2551. return t;
  2552. };
  2553. return RedPointSkin;
  2554. })(eui.Skin);generateEUI.paths['resource/eui_skins/ResultPage.exml'] = window.ResultPageSkin = (function (_super) {
  2555. __extends(ResultPageSkin, _super);
  2556. function ResultPageSkin() {
  2557. _super.call(this);
  2558. this.skinParts = ["haibaoBtn"];
  2559. this.height = 1465;
  2560. this.width = 750;
  2561. this.elementsContent = [this._Image1_i(),this.haibaoBtn_i()];
  2562. }
  2563. var _proto = ResultPageSkin.prototype;
  2564. _proto._Image1_i = function () {
  2565. var t = new eui.Image();
  2566. t.source = "img/resultBg10.jpg";
  2567. t.x = 0;
  2568. t.y = 0;
  2569. return t;
  2570. };
  2571. _proto.haibaoBtn_i = function () {
  2572. var t = new ToumingBtn();
  2573. this.haibaoBtn = t;
  2574. t.anchorOffsetX = 0;
  2575. t.anchorOffsetY = 0;
  2576. t.height = 129.09;
  2577. t.width = 513.94;
  2578. t.x = 115;
  2579. t.y = 1005.97;
  2580. return t;
  2581. };
  2582. return ResultPageSkin;
  2583. })(eui.Skin);generateEUI.paths['resource/eui_skins/ScrollerSkin.exml'] = window.skins.ScrollerSkin = (function (_super) {
  2584. __extends(ScrollerSkin, _super);
  2585. function ScrollerSkin() {
  2586. _super.call(this);
  2587. this.skinParts = ["horizontalScrollBar","verticalScrollBar"];
  2588. this.minHeight = 20;
  2589. this.minWidth = 20;
  2590. this.elementsContent = [this.horizontalScrollBar_i(),this.verticalScrollBar_i()];
  2591. }
  2592. var _proto = ScrollerSkin.prototype;
  2593. _proto.horizontalScrollBar_i = function () {
  2594. var t = new eui.HScrollBar();
  2595. this.horizontalScrollBar = t;
  2596. t.bottom = 0;
  2597. t.percentWidth = 100;
  2598. return t;
  2599. };
  2600. _proto.verticalScrollBar_i = function () {
  2601. var t = new eui.VScrollBar();
  2602. this.verticalScrollBar = t;
  2603. t.percentHeight = 100;
  2604. t.right = 0;
  2605. return t;
  2606. };
  2607. return ScrollerSkin;
  2608. })(eui.Skin);generateEUI.paths['resource/eui_skins/TestPage.exml'] = window.TestPageSkin = (function (_super) {
  2609. __extends(TestPageSkin, _super);
  2610. function TestPageSkin() {
  2611. _super.call(this);
  2612. 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"];
  2613. this.height = 1600;
  2614. this.width = 750;
  2615. 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()];
  2616. }
  2617. var _proto = TestPageSkin.prototype;
  2618. _proto.endTxtImg_i = function () {
  2619. var t = new eui.Image();
  2620. this.endTxtImg = t;
  2621. t.height = 20;
  2622. t.width = 20;
  2623. t.x = 836;
  2624. t.y = -82;
  2625. return t;
  2626. };
  2627. _proto.endBgImg_i = function () {
  2628. var t = new eui.Image();
  2629. this.endBgImg = t;
  2630. t.height = 20;
  2631. t.width = 20;
  2632. t.x = 846;
  2633. t.y = -72;
  2634. return t;
  2635. };
  2636. _proto._bird_i = function () {
  2637. var t = new eui.Group();
  2638. this._bird = t;
  2639. t.scaleX = 0.5;
  2640. t.scaleY = 0.5;
  2641. return t;
  2642. };
  2643. _proto.ingameCen_i = function () {
  2644. var t = new eui.Image();
  2645. this.ingameCen = t;
  2646. t.anchorOffsetY = 766;
  2647. t.source = "ingameCen_png";
  2648. t.x = 0;
  2649. t.y = 1078;
  2650. return t;
  2651. };
  2652. _proto.ingameTop_i = function () {
  2653. var t = new eui.Image();
  2654. this.ingameTop = t;
  2655. t.source = "ingameTop_png";
  2656. t.x = 0;
  2657. t.y = 0;
  2658. return t;
  2659. };
  2660. _proto.ingameDown_i = function () {
  2661. var t = new eui.Image();
  2662. this.ingameDown = t;
  2663. t.source = "ingameDown_png";
  2664. t.x = 0;
  2665. t.y = 1078;
  2666. return t;
  2667. };
  2668. _proto.ma_i = function () {
  2669. var t = new eui.Rect();
  2670. this.ma = t;
  2671. t.anchorOffsetX = 0;
  2672. t.anchorOffsetY = 0;
  2673. t.fillAlpha = 0.5;
  2674. t.fillColor = 0x17af00;
  2675. t.height = 1002;
  2676. t.width = 666.67;
  2677. t.x = 43.18;
  2678. t.y = 105;
  2679. return t;
  2680. };
  2681. _proto.recImg_i = function () {
  2682. var t = new eui.Image();
  2683. this.recImg = t;
  2684. t.source = "rec_png";
  2685. t.x = 62;
  2686. t.y = 306;
  2687. return t;
  2688. };
  2689. _proto.recIcon_i = function () {
  2690. var t = new eui.Rect();
  2691. this.recIcon = t;
  2692. t.ellipseHeight = 20;
  2693. t.ellipseWidth = 20;
  2694. t.fillColor = 0xff0000;
  2695. t.height = 20;
  2696. t.width = 20;
  2697. t.x = 124.34;
  2698. t.y = 307.66;
  2699. return t;
  2700. };
  2701. _proto.ruleBtn_i = function () {
  2702. var t = new eui.Image();
  2703. this.ruleBtn = t;
  2704. t.source = "ruleBtn_png";
  2705. t.x = 61.32;
  2706. t.y = 383.32;
  2707. return t;
  2708. };
  2709. _proto.shareBtn_i = function () {
  2710. var t = new eui.Image();
  2711. this.shareBtn = t;
  2712. t.source = "shareBtn_png";
  2713. t.x = 59.99;
  2714. t.y = 470;
  2715. return t;
  2716. };
  2717. _proto.secTxt_i = function () {
  2718. var t = new eui.Label();
  2719. this.secTxt = t;
  2720. t.fontFamily = "Microsoft YaHei";
  2721. t.scaleX = 1;
  2722. t.scaleY = 1;
  2723. t.size = 26;
  2724. t.stroke = 4;
  2725. t.text = "120 s";
  2726. t.textColor = 0xffcc56;
  2727. t.width = 89;
  2728. t.x = 64;
  2729. t.y = 336.32;
  2730. return t;
  2731. };
  2732. _proto.fangMc_i = function () {
  2733. var t = new eui.Image();
  2734. this.fangMc = t;
  2735. t.source = "f1_png";
  2736. t.x = 16;
  2737. t.y = 1146;
  2738. return t;
  2739. };
  2740. _proto.gIcon_i = function () {
  2741. var t = new eui.Group();
  2742. this.gIcon = t;
  2743. t.anchorOffsetX = 0;
  2744. t.anchorOffsetY = 0;
  2745. t.height = 293.94;
  2746. t.width = 567.27;
  2747. t.x = 181.76;
  2748. t.y = 1145;
  2749. t.layout = this._TileLayout1_i();
  2750. 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()];
  2751. return t;
  2752. };
  2753. _proto._TileLayout1_i = function () {
  2754. var t = new eui.TileLayout();
  2755. t.horizontalAlign = "left";
  2756. t.horizontalGap = 0;
  2757. t.orientation = "rows";
  2758. t.requestedColumnCount = 5;
  2759. t.requestedRowCount = 3;
  2760. t.verticalAlign = "justify";
  2761. t.verticalGap = 0;
  2762. return t;
  2763. };
  2764. _proto.icon1_i = function () {
  2765. var t = new IconMc();
  2766. this.icon1 = t;
  2767. t.x = 32;
  2768. t.y = 35;
  2769. return t;
  2770. };
  2771. _proto.icon2_i = function () {
  2772. var t = new IconMc();
  2773. this.icon2 = t;
  2774. t.x = 42;
  2775. t.y = 45;
  2776. return t;
  2777. };
  2778. _proto.icon3_i = function () {
  2779. var t = new IconMc();
  2780. this.icon3 = t;
  2781. t.x = 52;
  2782. t.y = 55;
  2783. return t;
  2784. };
  2785. _proto.icon4_i = function () {
  2786. var t = new IconMc();
  2787. this.icon4 = t;
  2788. t.x = 62;
  2789. t.y = 65;
  2790. return t;
  2791. };
  2792. _proto.icon5_i = function () {
  2793. var t = new IconMc();
  2794. this.icon5 = t;
  2795. t.x = 72;
  2796. t.y = 75;
  2797. return t;
  2798. };
  2799. _proto.icon6_i = function () {
  2800. var t = new IconMc();
  2801. this.icon6 = t;
  2802. t.x = 82;
  2803. t.y = 85;
  2804. return t;
  2805. };
  2806. _proto.icon7_i = function () {
  2807. var t = new IconMc();
  2808. this.icon7 = t;
  2809. t.x = 92;
  2810. t.y = 95;
  2811. return t;
  2812. };
  2813. _proto.icon8_i = function () {
  2814. var t = new IconMc();
  2815. this.icon8 = t;
  2816. t.x = 102;
  2817. t.y = 105;
  2818. return t;
  2819. };
  2820. _proto.icon9_i = function () {
  2821. var t = new IconMc();
  2822. this.icon9 = t;
  2823. t.x = 112;
  2824. t.y = 115;
  2825. return t;
  2826. };
  2827. _proto.icon10_i = function () {
  2828. var t = new IconMc();
  2829. this.icon10 = t;
  2830. t.x = 122;
  2831. t.y = 125;
  2832. return t;
  2833. };
  2834. _proto.icon11_i = function () {
  2835. var t = new IconMc();
  2836. this.icon11 = t;
  2837. t.x = 132;
  2838. t.y = 135;
  2839. return t;
  2840. };
  2841. _proto.icon12_i = function () {
  2842. var t = new IconMc();
  2843. this.icon12 = t;
  2844. t.x = 142;
  2845. t.y = 145;
  2846. return t;
  2847. };
  2848. _proto.icon13_i = function () {
  2849. var t = new IconMc();
  2850. this.icon13 = t;
  2851. t.x = 152;
  2852. t.y = 155;
  2853. return t;
  2854. };
  2855. _proto.icon14_i = function () {
  2856. var t = new IconMc();
  2857. this.icon14 = t;
  2858. t.x = 162;
  2859. t.y = 165;
  2860. return t;
  2861. };
  2862. _proto.icon15_i = function () {
  2863. var t = new IconMc();
  2864. this.icon15 = t;
  2865. t.x = 172;
  2866. t.y = 175;
  2867. return t;
  2868. };
  2869. _proto.gPop_i = function () {
  2870. var t = new eui.Group();
  2871. this.gPop = t;
  2872. t.anchorOffsetX = 378.79;
  2873. t.anchorOffsetY = 678.79;
  2874. t.height = 1600;
  2875. t.visible = false;
  2876. t.width = 750;
  2877. t.x = 378.79;
  2878. t.y = 678.79;
  2879. t.elementsContent = [this._Rect1_i(),this._Image1_i(),this.popImg_i(),this.tianBtn_i()];
  2880. return t;
  2881. };
  2882. _proto._Rect1_i = function () {
  2883. var t = new eui.Rect();
  2884. t.anchorOffsetX = 378;
  2885. t.anchorOffsetY = 716;
  2886. t.bottom = 0;
  2887. t.fillAlpha = 0.01;
  2888. t.left = 0;
  2889. t.right = 0;
  2890. t.top = 0;
  2891. return t;
  2892. };
  2893. _proto._Image1_i = function () {
  2894. var t = new eui.Image();
  2895. t.horizontalCenter = 0.5;
  2896. t.source = "kuang_png";
  2897. t.y = 501.1;
  2898. return t;
  2899. };
  2900. _proto.popImg_i = function () {
  2901. var t = new eui.Image();
  2902. this.popImg = t;
  2903. t.source = "p1_png";
  2904. t.x = 256;
  2905. t.y = 571.1;
  2906. return t;
  2907. };
  2908. _proto.tianBtn_i = function () {
  2909. var t = new eui.Image();
  2910. this.tianBtn = t;
  2911. t.anchorOffsetX = 119.09;
  2912. t.anchorOffsetY = 46;
  2913. t.horizontalCenter = 0.5;
  2914. t.source = "tianBtn_png";
  2915. t.y = 924.06;
  2916. return t;
  2917. };
  2918. _proto.gTip_i = function () {
  2919. var t = new eui.Group();
  2920. this.gTip = t;
  2921. t.height = 1600;
  2922. t.visible = false;
  2923. t.width = 750;
  2924. t.x = 0;
  2925. t.y = 0;
  2926. t.elementsContent = [this._Rect2_i(),this.tipImg_i()];
  2927. return t;
  2928. };
  2929. _proto._Rect2_i = function () {
  2930. var t = new eui.Rect();
  2931. t.bottom = 0;
  2932. t.fillAlpha = 0.7;
  2933. t.left = 0;
  2934. t.right = 0;
  2935. t.top = 0;
  2936. return t;
  2937. };
  2938. _proto.tipImg_i = function () {
  2939. var t = new eui.Image();
  2940. this.tipImg = t;
  2941. t.anchorOffsetX = 163.64;
  2942. t.anchorOffsetY = 136.36;
  2943. t.horizontalCenter = 0.5;
  2944. t.source = "scaleTip_png";
  2945. t.y = 681.36;
  2946. return t;
  2947. };
  2948. _proto.gRule_i = function () {
  2949. var t = new eui.Group();
  2950. this.gRule = t;
  2951. t.anchorOffsetX = 390.91;
  2952. t.anchorOffsetY = 721.21;
  2953. t.height = 1600;
  2954. t.visible = false;
  2955. t.width = 750;
  2956. t.x = 390.91;
  2957. t.y = 721.21;
  2958. t.elementsContent = [this._Rect3_i(),this._Image2_i(),this.closeRuleBtn_i()];
  2959. return t;
  2960. };
  2961. _proto._Rect3_i = function () {
  2962. var t = new eui.Rect();
  2963. t.bottom = 0;
  2964. t.fillAlpha = 0.01;
  2965. t.left = 0;
  2966. t.right = 0;
  2967. t.top = 0;
  2968. return t;
  2969. };
  2970. _proto._Image2_i = function () {
  2971. var t = new eui.Image();
  2972. t.source = "img/ruleImg.png";
  2973. t.x = 144;
  2974. t.y = 545;
  2975. return t;
  2976. };
  2977. _proto.closeRuleBtn_i = function () {
  2978. var t = new ToumingBtn();
  2979. this.closeRuleBtn = t;
  2980. t.anchorOffsetX = 0;
  2981. t.anchorOffsetY = 0;
  2982. t.height = 84.42;
  2983. t.width = 97.58;
  2984. t.x = 525;
  2985. t.y = 536;
  2986. return t;
  2987. };
  2988. _proto.gShare_i = function () {
  2989. var t = new eui.Group();
  2990. this.gShare = t;
  2991. t.anchorOffsetX = 378;
  2992. t.anchorOffsetY = 626;
  2993. t.height = 1600;
  2994. t.visible = false;
  2995. t.width = 750;
  2996. t.x = 378;
  2997. t.y = 626;
  2998. t.elementsContent = [this._Rect4_i(),this._Image3_i(),this.closeShareBtn_i()];
  2999. return t;
  3000. };
  3001. _proto._Rect4_i = function () {
  3002. var t = new eui.Rect();
  3003. t.bottom = 0;
  3004. t.fillAlpha = 0.01;
  3005. t.left = 0;
  3006. t.right = 0;
  3007. t.top = 0;
  3008. return t;
  3009. };
  3010. _proto._Image3_i = function () {
  3011. var t = new eui.Image();
  3012. t.source = "img/shareTip.png";
  3013. t.x = 144;
  3014. t.y = 545;
  3015. return t;
  3016. };
  3017. _proto.closeShareBtn_i = function () {
  3018. var t = new ToumingBtn();
  3019. this.closeShareBtn = t;
  3020. t.anchorOffsetX = 0;
  3021. t.anchorOffsetY = 0;
  3022. t.height = 199.57;
  3023. t.width = 97.58;
  3024. t.x = 540.15;
  3025. t.y = 526.91;
  3026. return t;
  3027. };
  3028. _proto.gGet_i = function () {
  3029. var t = new eui.Group();
  3030. this.gGet = t;
  3031. t.height = 1600;
  3032. t.visible = false;
  3033. t.width = 750;
  3034. t.x = 0;
  3035. t.y = 0;
  3036. t.elementsContent = [this._Rect5_i(),this.getImg_i()];
  3037. return t;
  3038. };
  3039. _proto._Rect5_i = function () {
  3040. var t = new eui.Rect();
  3041. t.bottom = 0;
  3042. t.fillAlpha = 0.7;
  3043. t.left = 0;
  3044. t.right = 0;
  3045. t.top = 0;
  3046. return t;
  3047. };
  3048. _proto.getImg_i = function () {
  3049. var t = new eui.Image();
  3050. this.getImg = t;
  3051. t.anchorOffsetX = 221.21;
  3052. t.anchorOffsetY = 169.7;
  3053. t.source = "img/pop/1.png";
  3054. t.x = 375.21;
  3055. t.y = 740.8;
  3056. return t;
  3057. };
  3058. return TestPageSkin;
  3059. })(eui.Skin);generateEUI.paths['resource/eui_skins/TextInputSkin.exml'] = window.skins.TextInputSkin = (function (_super) {
  3060. __extends(TextInputSkin, _super);
  3061. function TextInputSkin() {
  3062. _super.call(this);
  3063. this.skinParts = ["textDisplay","promptDisplay"];
  3064. this.minHeight = 40;
  3065. this.minWidth = 300;
  3066. this.elementsContent = [this._Image1_i(),this._Rect1_i(),this.textDisplay_i()];
  3067. this.promptDisplay_i();
  3068. this.states = [
  3069. new eui.State ("normal",
  3070. [
  3071. ])
  3072. ,
  3073. new eui.State ("disabled",
  3074. [
  3075. new eui.SetProperty("textDisplay","textColor",0xff0000)
  3076. ])
  3077. ,
  3078. new eui.State ("normalWithPrompt",
  3079. [
  3080. new eui.AddItems("promptDisplay","",1,"")
  3081. ])
  3082. ,
  3083. new eui.State ("disabledWithPrompt",
  3084. [
  3085. new eui.AddItems("promptDisplay","",1,"")
  3086. ])
  3087. ];
  3088. }
  3089. var _proto = TextInputSkin.prototype;
  3090. _proto._Image1_i = function () {
  3091. var t = new eui.Image();
  3092. t.percentHeight = 100;
  3093. t.scale9Grid = new egret.Rectangle(1,3,8,8);
  3094. t.source = "button_up_png";
  3095. t.percentWidth = 100;
  3096. return t;
  3097. };
  3098. _proto._Rect1_i = function () {
  3099. var t = new eui.Rect();
  3100. t.fillColor = 0xffffff;
  3101. t.percentHeight = 100;
  3102. t.percentWidth = 100;
  3103. return t;
  3104. };
  3105. _proto.textDisplay_i = function () {
  3106. var t = new eui.EditableText();
  3107. this.textDisplay = t;
  3108. t.height = 24;
  3109. t.left = "10";
  3110. t.right = "10";
  3111. t.size = 20;
  3112. t.textColor = 0x000000;
  3113. t.verticalCenter = "0";
  3114. t.percentWidth = 100;
  3115. return t;
  3116. };
  3117. _proto.promptDisplay_i = function () {
  3118. var t = new eui.Label();
  3119. this.promptDisplay = t;
  3120. t.height = 24;
  3121. t.left = 10;
  3122. t.right = 10;
  3123. t.size = 20;
  3124. t.textColor = 0xa9a9a9;
  3125. t.touchEnabled = false;
  3126. t.verticalCenter = 0;
  3127. t.percentWidth = 100;
  3128. return t;
  3129. };
  3130. return TextInputSkin;
  3131. })(eui.Skin);generateEUI.paths['resource/eui_skins/ToggleSwitchSkin.exml'] = window.skins.ToggleSwitchSkin = (function (_super) {
  3132. __extends(ToggleSwitchSkin, _super);
  3133. function ToggleSwitchSkin() {
  3134. _super.call(this);
  3135. this.skinParts = [];
  3136. this.elementsContent = [this._Image1_i(),this._Image2_i()];
  3137. this.states = [
  3138. new eui.State ("up",
  3139. [
  3140. new eui.SetProperty("_Image1","source","off_png")
  3141. ])
  3142. ,
  3143. new eui.State ("down",
  3144. [
  3145. new eui.SetProperty("_Image1","source","off_png")
  3146. ])
  3147. ,
  3148. new eui.State ("disabled",
  3149. [
  3150. new eui.SetProperty("_Image1","source","off_png")
  3151. ])
  3152. ,
  3153. new eui.State ("upAndSelected",
  3154. [
  3155. new eui.SetProperty("_Image2","horizontalCenter",18)
  3156. ])
  3157. ,
  3158. new eui.State ("downAndSelected",
  3159. [
  3160. new eui.SetProperty("_Image2","horizontalCenter",18)
  3161. ])
  3162. ,
  3163. new eui.State ("disabledAndSelected",
  3164. [
  3165. new eui.SetProperty("_Image2","horizontalCenter",18)
  3166. ])
  3167. ];
  3168. }
  3169. var _proto = ToggleSwitchSkin.prototype;
  3170. _proto._Image1_i = function () {
  3171. var t = new eui.Image();
  3172. this._Image1 = t;
  3173. t.source = "on_png";
  3174. return t;
  3175. };
  3176. _proto._Image2_i = function () {
  3177. var t = new eui.Image();
  3178. this._Image2 = t;
  3179. t.horizontalCenter = -18;
  3180. t.source = "handle_png";
  3181. t.verticalCenter = 0;
  3182. return t;
  3183. };
  3184. return ToggleSwitchSkin;
  3185. })(eui.Skin);generateEUI.paths['resource/eui_skins/ToumingBg.exml'] = window.ToumingBgSkin = (function (_super) {
  3186. __extends(ToumingBgSkin, _super);
  3187. function ToumingBgSkin() {
  3188. _super.call(this);
  3189. this.skinParts = ["bg"];
  3190. this.height = 300;
  3191. this.width = 400;
  3192. this.elementsContent = [this.bg_i()];
  3193. }
  3194. var _proto = ToumingBgSkin.prototype;
  3195. _proto.bg_i = function () {
  3196. var t = new eui.Rect();
  3197. this.bg = t;
  3198. t.bottom = 0;
  3199. t.fillAlpha = 0.7;
  3200. t.left = 0;
  3201. t.right = 0;
  3202. t.top = 0;
  3203. return t;
  3204. };
  3205. return ToumingBgSkin;
  3206. })(eui.Skin);generateEUI.paths['resource/eui_skins/ToumingBtn.exml'] = window.ToumingBtnSkin = (function (_super) {
  3207. __extends(ToumingBtnSkin, _super);
  3208. function ToumingBtnSkin() {
  3209. _super.call(this);
  3210. this.skinParts = ["bg"];
  3211. this.height = 100;
  3212. this.width = 200;
  3213. this.elementsContent = [this.bg_i()];
  3214. }
  3215. var _proto = ToumingBtnSkin.prototype;
  3216. _proto.bg_i = function () {
  3217. var t = new eui.Rect();
  3218. this.bg = t;
  3219. t.bottom = 0;
  3220. t.fillAlpha = 0.5;
  3221. t.fillColor = 0xff2121;
  3222. t.left = 0;
  3223. t.right = 0;
  3224. t.top = 0;
  3225. return t;
  3226. };
  3227. return ToumingBtnSkin;
  3228. })(eui.Skin);generateEUI.paths['resource/eui_skins/VScrollBarSkin.exml'] = window.skins.VScrollBarSkin = (function (_super) {
  3229. __extends(VScrollBarSkin, _super);
  3230. function VScrollBarSkin() {
  3231. _super.call(this);
  3232. this.skinParts = ["thumb"];
  3233. this.minHeight = 20;
  3234. this.minWidth = 8;
  3235. this.elementsContent = [this.thumb_i()];
  3236. }
  3237. var _proto = VScrollBarSkin.prototype;
  3238. _proto.thumb_i = function () {
  3239. var t = new eui.Image();
  3240. this.thumb = t;
  3241. t.height = 30;
  3242. t.horizontalCenter = 0;
  3243. t.scale9Grid = new egret.Rectangle(3,3,2,2);
  3244. t.source = "roundthumb_png";
  3245. t.width = 8;
  3246. return t;
  3247. };
  3248. return VScrollBarSkin;
  3249. })(eui.Skin);generateEUI.paths['resource/eui_skins/VSliderSkin.exml'] = window.skins.VSliderSkin = (function (_super) {
  3250. __extends(VSliderSkin, _super);
  3251. function VSliderSkin() {
  3252. _super.call(this);
  3253. this.skinParts = ["track","thumb"];
  3254. this.minHeight = 30;
  3255. this.minWidth = 25;
  3256. this.elementsContent = [this.track_i(),this.thumb_i()];
  3257. }
  3258. var _proto = VSliderSkin.prototype;
  3259. _proto.track_i = function () {
  3260. var t = new eui.Image();
  3261. this.track = t;
  3262. t.percentHeight = 100;
  3263. t.horizontalCenter = 0;
  3264. t.scale9Grid = new egret.Rectangle(1,1,4,4);
  3265. t.source = "track_png";
  3266. t.width = 7;
  3267. return t;
  3268. };
  3269. _proto.thumb_i = function () {
  3270. var t = new eui.Image();
  3271. this.thumb = t;
  3272. t.horizontalCenter = 0;
  3273. t.source = "thumb_png";
  3274. return t;
  3275. };
  3276. return VSliderSkin;
  3277. })(eui.Skin);