default.thm.js 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354
  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","endBgImg","endTxtImg","endIcon","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.endBgImg_i(),this.endTxtImg_i(),this.endIcon_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.endBgImg_i = function () {
  763. var t = new eui.Image();
  764. this.endBgImg = t;
  765. t.source = "";
  766. t.x = 67.1;
  767. t.y = 330.74;
  768. return t;
  769. };
  770. _proto.endTxtImg_i = function () {
  771. var t = new eui.Image();
  772. this.endTxtImg = t;
  773. t.source = "";
  774. t.x = 241.79;
  775. t.y = 1139.99;
  776. return t;
  777. };
  778. _proto.endIcon_i = function () {
  779. var t = new eui.Image();
  780. this.endIcon = t;
  781. t.source = "endIcon_png";
  782. t.visible = false;
  783. t.x = 579.11;
  784. t.y = 1137.89;
  785. return t;
  786. };
  787. _proto.scanTip_i = function () {
  788. var t = new eui.Image();
  789. this.scanTip = t;
  790. t.source = "scanTip_png";
  791. t.x = 556.34;
  792. t.y = 1136.08;
  793. return t;
  794. };
  795. return EndPageSkin;
  796. })(eui.Skin);generateEUI.paths['resource/eui_skins/HomePage.exml'] = window.HomePageSkin = (function (_super) {
  797. __extends(HomePageSkin, _super);
  798. function HomePageSkin() {
  799. _super.call(this);
  800. this.skinParts = ["anCar1","anCar2","yun0","yun1","qiqiu","car1","car2","tree","ship","startBtn","prizeBtn","tipImg","closeBtn","la0","lingquBtn0","bar0","la1","lingquBtn1","bar1","gPrize"];
  801. this.height = 1600;
  802. this.width = 750;
  803. this.anCar1_i();
  804. this.anCar2_i();
  805. 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()];
  806. eui.Binding.$bindProperties(this, ["car1"],[0],this._TweenItem1,"target");
  807. eui.Binding.$bindProperties(this, [807.36],[],this._Object1,"y");
  808. eui.Binding.$bindProperties(this, [-49],[],this._Object2,"x");
  809. eui.Binding.$bindProperties(this, [1287.61],[],this._Object2,"y");
  810. eui.Binding.$bindProperties(this, ["car2"],[0],this._TweenItem2,"target");
  811. eui.Binding.$bindProperties(this, [-31.5],[],this._Object3,"x");
  812. eui.Binding.$bindProperties(this, [1248],[],this._Object3,"y");
  813. eui.Binding.$bindProperties(this, [784.85],[],this._Object4,"x");
  814. eui.Binding.$bindProperties(this, [778.36],[],this._Object4,"y");
  815. }
  816. var _proto = HomePageSkin.prototype;
  817. _proto.anCar1_i = function () {
  818. var t = new egret.tween.TweenGroup();
  819. this.anCar1 = t;
  820. t.items = [this._TweenItem1_i()];
  821. return t;
  822. };
  823. _proto._TweenItem1_i = function () {
  824. var t = new egret.tween.TweenItem();
  825. this._TweenItem1 = t;
  826. t.paths = [this._Set1_i(),this._To1_i()];
  827. return t;
  828. };
  829. _proto._Set1_i = function () {
  830. var t = new egret.tween.Set();
  831. t.props = this._Object1_i();
  832. return t;
  833. };
  834. _proto._Object1_i = function () {
  835. var t = {};
  836. this._Object1 = t;
  837. return t;
  838. };
  839. _proto._To1_i = function () {
  840. var t = new egret.tween.To();
  841. t.duration = 7500;
  842. t.props = this._Object2_i();
  843. return t;
  844. };
  845. _proto._Object2_i = function () {
  846. var t = {};
  847. this._Object2 = t;
  848. return t;
  849. };
  850. _proto.anCar2_i = function () {
  851. var t = new egret.tween.TweenGroup();
  852. this.anCar2 = t;
  853. t.items = [this._TweenItem2_i()];
  854. return t;
  855. };
  856. _proto._TweenItem2_i = function () {
  857. var t = new egret.tween.TweenItem();
  858. this._TweenItem2 = t;
  859. t.paths = [this._Set2_i(),this._To2_i()];
  860. return t;
  861. };
  862. _proto._Set2_i = function () {
  863. var t = new egret.tween.Set();
  864. t.props = this._Object3_i();
  865. return t;
  866. };
  867. _proto._Object3_i = function () {
  868. var t = {};
  869. this._Object3 = t;
  870. return t;
  871. };
  872. _proto._To2_i = function () {
  873. var t = new egret.tween.To();
  874. t.duration = 5000;
  875. t.props = this._Object4_i();
  876. return t;
  877. };
  878. _proto._Object4_i = function () {
  879. var t = {};
  880. this._Object4 = t;
  881. return t;
  882. };
  883. _proto._Image1_i = function () {
  884. var t = new eui.Image();
  885. t.source = "homeBg_jpg";
  886. t.x = 0;
  887. t.y = 0;
  888. return t;
  889. };
  890. _proto.yun0_i = function () {
  891. var t = new eui.Image();
  892. this.yun0 = t;
  893. t.source = "homeYun_png";
  894. t.x = 18.4;
  895. t.y = 136.3;
  896. return t;
  897. };
  898. _proto.yun1_i = function () {
  899. var t = new eui.Image();
  900. this.yun1 = t;
  901. t.source = "homeYun_png";
  902. t.x = 595.56;
  903. t.y = 37.82;
  904. return t;
  905. };
  906. _proto.qiqiu_i = function () {
  907. var t = new eui.Image();
  908. this.qiqiu = t;
  909. t.source = "homeQiqiu_png";
  910. t.x = 234.92;
  911. t.y = 218.33;
  912. return t;
  913. };
  914. _proto.car1_i = function () {
  915. var t = new eui.Image();
  916. this.car1 = t;
  917. t.anchorOffsetX = 45;
  918. t.anchorOffsetY = 38;
  919. t.source = "homeCar_png";
  920. t.x = 793.01;
  921. t.y = 811.36;
  922. return t;
  923. };
  924. _proto.car2_i = function () {
  925. var t = new eui.Image();
  926. this.car2 = t;
  927. t.anchorOffsetX = 35;
  928. t.anchorOffsetY = 23;
  929. t.source = "homeCar2_png";
  930. t.x = 653.52;
  931. t.y = 860.2;
  932. return t;
  933. };
  934. _proto.tree_i = function () {
  935. var t = new eui.Image();
  936. this.tree = t;
  937. t.source = "homeTree_png";
  938. t.x = 0;
  939. t.y = 893.5;
  940. return t;
  941. };
  942. _proto.ship_i = function () {
  943. var t = new eui.Image();
  944. this.ship = t;
  945. t.source = "homeBigChuan_png";
  946. t.x = 349.85;
  947. t.y = 968;
  948. return t;
  949. };
  950. _proto.startBtn_i = function () {
  951. var t = new eui.Image();
  952. this.startBtn = t;
  953. t.anchorOffsetX = 150;
  954. t.anchorOffsetY = 82;
  955. t.source = "startBtn_png";
  956. t.x = 376;
  957. t.y = 1327.61;
  958. return t;
  959. };
  960. _proto.prizeBtn_i = function () {
  961. var t = new eui.Image();
  962. this.prizeBtn = t;
  963. t.source = "homePrizeBtn_png";
  964. t.x = 620;
  965. t.y = 80;
  966. return t;
  967. };
  968. _proto.gPrize_i = function () {
  969. var t = new eui.Group();
  970. this.gPrize = t;
  971. t.height = 1600;
  972. t.visible = false;
  973. t.width = 750;
  974. t.x = 0;
  975. t.y = 0;
  976. t.elementsContent = [this.tipImg_i(),this._Rect1_i(),this._Image2_i(),this.closeBtn_i(),this._Group1_i()];
  977. return t;
  978. };
  979. _proto.tipImg_i = function () {
  980. var t = new eui.Image();
  981. this.tipImg = t;
  982. t.source = "img/tip01.jpg";
  983. t.visible = false;
  984. t.x = 0;
  985. t.y = 0;
  986. return t;
  987. };
  988. _proto._Rect1_i = function () {
  989. var t = new eui.Rect();
  990. t.bottom = 0;
  991. t.fillAlpha = 0.7;
  992. t.left = 0;
  993. t.right = 0;
  994. t.top = 0;
  995. return t;
  996. };
  997. _proto._Image2_i = function () {
  998. var t = new eui.Image();
  999. t.source = "img/myPrizeBg.png";
  1000. t.x = 89;
  1001. t.y = 260;
  1002. return t;
  1003. };
  1004. _proto.closeBtn_i = function () {
  1005. var t = new ToumingBtn();
  1006. this.closeBtn = t;
  1007. t.anchorOffsetX = 0;
  1008. t.anchorOffsetY = 0;
  1009. t.height = 96;
  1010. t.width = 92;
  1011. t.x = 588;
  1012. t.y = 262;
  1013. return t;
  1014. };
  1015. _proto._Group1_i = function () {
  1016. var t = new eui.Group();
  1017. t.anchorOffsetY = 0;
  1018. t.height = 645;
  1019. t.width = 567;
  1020. t.x = 91;
  1021. t.y = 478;
  1022. t.layout = this._VerticalLayout1_i();
  1023. t.elementsContent = [this.bar0_i(),this.bar1_i()];
  1024. return t;
  1025. };
  1026. _proto._VerticalLayout1_i = function () {
  1027. var t = new eui.VerticalLayout();
  1028. t.gap = 30;
  1029. t.horizontalAlign = "center";
  1030. t.verticalAlign = "top";
  1031. return t;
  1032. };
  1033. _proto.bar0_i = function () {
  1034. var t = new eui.Group();
  1035. this.bar0 = t;
  1036. t.scaleX = 1;
  1037. t.scaleY = 1;
  1038. t.x = 30.900000000000006;
  1039. t.y = 20;
  1040. t.layout = this._BasicLayout1_i();
  1041. t.elementsContent = [this._Image3_i(),this.la0_i(),this.lingquBtn0_i()];
  1042. return t;
  1043. };
  1044. _proto._BasicLayout1_i = function () {
  1045. var t = new eui.BasicLayout();
  1046. return t;
  1047. };
  1048. _proto._Image3_i = function () {
  1049. var t = new eui.Image();
  1050. t.source = "img/prizeBar.png";
  1051. t.x = 0;
  1052. t.y = 0;
  1053. return t;
  1054. };
  1055. _proto.la0_i = function () {
  1056. var t = new eui.Label();
  1057. this.la0 = t;
  1058. t.anchorOffsetX = 0;
  1059. t.anchorOffsetY = 0;
  1060. t.height = 55.76;
  1061. t.text = "Label";
  1062. t.textColor = 0x000000;
  1063. t.verticalAlign = "middle";
  1064. t.width = 323.39;
  1065. t.x = 33.96;
  1066. t.y = 46.92;
  1067. return t;
  1068. };
  1069. _proto.lingquBtn0_i = function () {
  1070. var t = new eui.Image();
  1071. this.lingquBtn0 = t;
  1072. t.source = "img/lingquBtn.png";
  1073. t.x = 391;
  1074. t.y = 49.52;
  1075. return t;
  1076. };
  1077. _proto.bar1_i = function () {
  1078. var t = new eui.Group();
  1079. this.bar1 = t;
  1080. t.scaleX = 1;
  1081. t.scaleY = 1;
  1082. t.x = 30.900000000000006;
  1083. t.y = 186;
  1084. t.layout = this._BasicLayout2_i();
  1085. t.elementsContent = [this._Image4_i(),this.la1_i(),this.lingquBtn1_i()];
  1086. return t;
  1087. };
  1088. _proto._BasicLayout2_i = function () {
  1089. var t = new eui.BasicLayout();
  1090. return t;
  1091. };
  1092. _proto._Image4_i = function () {
  1093. var t = new eui.Image();
  1094. t.source = "img/prizeBar.png";
  1095. t.x = 0;
  1096. t.y = 0;
  1097. return t;
  1098. };
  1099. _proto.la1_i = function () {
  1100. var t = new eui.Label();
  1101. this.la1 = t;
  1102. t.anchorOffsetX = 0;
  1103. t.anchorOffsetY = 0;
  1104. t.height = 55.76;
  1105. t.text = "Label";
  1106. t.textColor = 0x000000;
  1107. t.verticalAlign = "middle";
  1108. t.width = 330.39;
  1109. t.x = 26.96;
  1110. t.y = 46.92;
  1111. return t;
  1112. };
  1113. _proto.lingquBtn1_i = function () {
  1114. var t = new eui.Image();
  1115. this.lingquBtn1 = t;
  1116. t.source = "img/lingquBtn.png";
  1117. t.x = 391;
  1118. t.y = 49.52;
  1119. return t;
  1120. };
  1121. return HomePageSkin;
  1122. })(eui.Skin);generateEUI.paths['resource/eui_skins/HScrollBarSkin.exml'] = window.skins.HScrollBarSkin = (function (_super) {
  1123. __extends(HScrollBarSkin, _super);
  1124. function HScrollBarSkin() {
  1125. _super.call(this);
  1126. this.skinParts = ["thumb"];
  1127. this.minHeight = 8;
  1128. this.minWidth = 20;
  1129. this.elementsContent = [this.thumb_i()];
  1130. }
  1131. var _proto = HScrollBarSkin.prototype;
  1132. _proto.thumb_i = function () {
  1133. var t = new eui.Image();
  1134. this.thumb = t;
  1135. t.height = 8;
  1136. t.scale9Grid = new egret.Rectangle(3,3,2,2);
  1137. t.source = "roundthumb_png";
  1138. t.verticalCenter = 0;
  1139. t.width = 30;
  1140. return t;
  1141. };
  1142. return HScrollBarSkin;
  1143. })(eui.Skin);generateEUI.paths['resource/eui_skins/HSliderSkin.exml'] = window.skins.HSliderSkin = (function (_super) {
  1144. __extends(HSliderSkin, _super);
  1145. function HSliderSkin() {
  1146. _super.call(this);
  1147. this.skinParts = ["track","thumb"];
  1148. this.minHeight = 8;
  1149. this.minWidth = 20;
  1150. this.elementsContent = [this.track_i(),this.thumb_i()];
  1151. }
  1152. var _proto = HSliderSkin.prototype;
  1153. _proto.track_i = function () {
  1154. var t = new eui.Image();
  1155. this.track = t;
  1156. t.height = 6;
  1157. t.scale9Grid = new egret.Rectangle(1,1,4,4);
  1158. t.source = "track_sb_png";
  1159. t.verticalCenter = 0;
  1160. t.percentWidth = 100;
  1161. return t;
  1162. };
  1163. _proto.thumb_i = function () {
  1164. var t = new eui.Image();
  1165. this.thumb = t;
  1166. t.source = "thumb_png";
  1167. t.verticalCenter = 0;
  1168. return t;
  1169. };
  1170. return HSliderSkin;
  1171. })(eui.Skin);generateEUI.paths['resource/eui_skins/IconMc.exml'] = window.IconMcSkin = (function (_super) {
  1172. __extends(IconMcSkin, _super);
  1173. function IconMcSkin() {
  1174. _super.call(this);
  1175. this.skinParts = ["iconBit","dan"];
  1176. this.height = 90;
  1177. this.width = 110;
  1178. this.elementsContent = [this.iconBit_i(),this._Image1_i(),this.dan_i()];
  1179. }
  1180. var _proto = IconMcSkin.prototype;
  1181. _proto.iconBit_i = function () {
  1182. var t = new eui.Image();
  1183. this.iconBit = t;
  1184. t.source = "ic1_png";
  1185. t.x = 1.98;
  1186. t.y = 2.62;
  1187. return t;
  1188. };
  1189. _proto._Image1_i = function () {
  1190. var t = new eui.Image();
  1191. t.source = "danShape_png";
  1192. t.x = 68.96;
  1193. t.y = 68.96;
  1194. return t;
  1195. };
  1196. _proto.dan_i = function () {
  1197. var t = new eui.Image();
  1198. this.dan = t;
  1199. t.anchorOffsetX = 24.67;
  1200. t.anchorOffsetY = 44;
  1201. t.source = "dan0_png";
  1202. t.x = 87.32;
  1203. t.y = 66;
  1204. return t;
  1205. };
  1206. return IconMcSkin;
  1207. })(eui.Skin);generateEUI.paths['resource/eui_skins/InfoPage.exml'] = window.InfoPageSkin = (function (_super) {
  1208. __extends(InfoPageSkin, _super);
  1209. function InfoPageSkin() {
  1210. _super.call(this);
  1211. this.skinParts = ["closeInfoBtn","tID","tName","tTel","tAdd","tijiaoBtn","gInfo"];
  1212. this.height = 1600;
  1213. this.width = 750;
  1214. this.elementsContent = [this.gInfo_i()];
  1215. }
  1216. var _proto = InfoPageSkin.prototype;
  1217. _proto.gInfo_i = function () {
  1218. var t = new eui.Group();
  1219. this.gInfo = t;
  1220. t.anchorOffsetX = 0;
  1221. t.anchorOffsetY = 0;
  1222. t.height = 1600;
  1223. t.width = 750;
  1224. t.x = 0;
  1225. t.y = 0;
  1226. 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()];
  1227. return t;
  1228. };
  1229. _proto._Rect1_i = function () {
  1230. var t = new eui.Rect();
  1231. t.bottom = 0;
  1232. t.fillAlpha = 0.7;
  1233. t.left = 0;
  1234. t.right = 0;
  1235. t.top = 0;
  1236. return t;
  1237. };
  1238. _proto._Image1_i = function () {
  1239. var t = new eui.Image();
  1240. t.source = "img/infoBg.png";
  1241. t.x = 89;
  1242. t.y = 203;
  1243. return t;
  1244. };
  1245. _proto.closeInfoBtn_i = function () {
  1246. var t = new ToumingBtn();
  1247. this.closeInfoBtn = t;
  1248. t.anchorOffsetX = 0;
  1249. t.anchorOffsetY = 0;
  1250. t.height = 81.39;
  1251. t.width = 107.76;
  1252. t.x = 576.45;
  1253. t.y = 248.15;
  1254. return t;
  1255. };
  1256. _proto.tID_i = function () {
  1257. var t = new eui.Label();
  1258. this.tID = t;
  1259. t.anchorOffsetX = 0;
  1260. t.anchorOffsetY = 0;
  1261. t.height = 50;
  1262. t.size = 33;
  1263. t.text = "xxxx";
  1264. t.textAlign = "center";
  1265. t.verticalAlign = "middle";
  1266. t.width = 306;
  1267. t.x = 312;
  1268. t.y = 474;
  1269. return t;
  1270. };
  1271. _proto.tName_i = function () {
  1272. var t = new eui.EditableText();
  1273. this.tName = t;
  1274. t.anchorOffsetX = 0;
  1275. t.anchorOffsetY = 0;
  1276. t.height = 54;
  1277. t.text = "Label";
  1278. t.textColor = 0x000000;
  1279. t.verticalAlign = "middle";
  1280. t.width = 462;
  1281. t.x = 144;
  1282. t.y = 630;
  1283. return t;
  1284. };
  1285. _proto.tTel_i = function () {
  1286. var t = new eui.EditableText();
  1287. this.tTel = t;
  1288. t.anchorOffsetX = 0;
  1289. t.anchorOffsetY = 0;
  1290. t.height = 54;
  1291. t.inputType = "tel";
  1292. t.text = "Label";
  1293. t.textColor = 0x000000;
  1294. t.verticalAlign = "middle";
  1295. t.width = 462;
  1296. t.x = 144;
  1297. t.y = 786;
  1298. return t;
  1299. };
  1300. _proto.tAdd_i = function () {
  1301. var t = new eui.EditableText();
  1302. this.tAdd = t;
  1303. t.anchorOffsetX = 0;
  1304. t.anchorOffsetY = 0;
  1305. t.height = 134;
  1306. t.lineSpacing = 20;
  1307. t.multiline = true;
  1308. t.text = "Label";
  1309. t.textColor = 0x000000;
  1310. t.verticalAlign = "top";
  1311. t.width = 462;
  1312. t.x = 144;
  1313. t.y = 948;
  1314. return t;
  1315. };
  1316. _proto.tijiaoBtn_i = function () {
  1317. var t = new eui.Image();
  1318. this.tijiaoBtn = t;
  1319. t.source = "tijiaoBtn_png";
  1320. t.x = 256;
  1321. t.y = 1136;
  1322. return t;
  1323. };
  1324. return InfoPageSkin;
  1325. })(eui.Skin);generateEUI.paths['resource/eui_skins/InGame.exml'] = window.InGameSkin = (function (_super) {
  1326. __extends(InGameSkin, _super);
  1327. function InGameSkin() {
  1328. _super.call(this);
  1329. this.skinParts = ["qiyeDiaAn","gerenDiaAn","_bird","addBtn"];
  1330. this.height = 1465;
  1331. this.width = 750;
  1332. this.qiyeDiaAn_i();
  1333. this.gerenDiaAn_i();
  1334. this.elementsContent = [this._bird_i(),this.addBtn_i()];
  1335. eui.Binding.$bindProperties(this, ["hostComponent.dq1"],[0],this._TweenItem1,"target");
  1336. eui.Binding.$bindProperties(this, [0],[],this._Object1,"alpha");
  1337. eui.Binding.$bindProperties(this, [0],[],this._Object2,"alpha");
  1338. eui.Binding.$bindProperties(this, [-0.01],[],this._Object2,"x");
  1339. eui.Binding.$bindProperties(this, [1],[],this._Object3,"alpha");
  1340. eui.Binding.$bindProperties(this, [58],[],this._Object3,"x");
  1341. eui.Binding.$bindProperties(this, ["hostComponent.dq2"],[0],this._TweenItem2,"target");
  1342. eui.Binding.$bindProperties(this, [0],[],this._Object4,"alpha");
  1343. eui.Binding.$bindProperties(this, [0],[],this._Object5,"alpha");
  1344. eui.Binding.$bindProperties(this, [0],[],this._Object6,"alpha");
  1345. eui.Binding.$bindProperties(this, [32],[],this._Object6,"x");
  1346. eui.Binding.$bindProperties(this, [1],[],this._Object7,"alpha");
  1347. eui.Binding.$bindProperties(this, [0.24],[],this._Object7,"x");
  1348. eui.Binding.$bindProperties(this, ["hostComponent.dq3"],[0],this._TweenItem3,"target");
  1349. eui.Binding.$bindProperties(this, [0],[],this._Object8,"alpha");
  1350. eui.Binding.$bindProperties(this, [0],[],this._Object9,"alpha");
  1351. eui.Binding.$bindProperties(this, [0],[],this._Object10,"alpha");
  1352. eui.Binding.$bindProperties(this, [132],[],this._Object10,"x");
  1353. eui.Binding.$bindProperties(this, [1],[],this._Object11,"alpha");
  1354. eui.Binding.$bindProperties(this, [-0.01],[],this._Object11,"x");
  1355. eui.Binding.$bindProperties(this, ["hostComponent.dg1"],[0],this._TweenItem4,"target");
  1356. eui.Binding.$bindProperties(this, [0],[],this._Object12,"alpha");
  1357. eui.Binding.$bindProperties(this, [49.73],[],this._Object13,"x");
  1358. eui.Binding.$bindProperties(this, [1],[],this._Object14,"alpha");
  1359. eui.Binding.$bindProperties(this, [92.03],[],this._Object14,"x");
  1360. eui.Binding.$bindProperties(this, ["hostComponent.dg2"],[0],this._TweenItem5,"target");
  1361. eui.Binding.$bindProperties(this, [0],[],this._Object15,"alpha");
  1362. eui.Binding.$bindProperties(this, [0],[],this._Object16,"alpha");
  1363. eui.Binding.$bindProperties(this, [54],[],this._Object16,"x");
  1364. eui.Binding.$bindProperties(this, [1],[],this._Object17,"alpha");
  1365. eui.Binding.$bindProperties(this, [1.33],[],this._Object17,"x");
  1366. eui.Binding.$bindProperties(this, ["hostComponent.dg3"],[0],this._TweenItem6,"target");
  1367. eui.Binding.$bindProperties(this, [0],[],this._Object18,"alpha");
  1368. eui.Binding.$bindProperties(this, [0],[],this._Object19,"alpha");
  1369. eui.Binding.$bindProperties(this, [60],[],this._Object19,"x");
  1370. eui.Binding.$bindProperties(this, [1],[],this._Object20,"alpha");
  1371. eui.Binding.$bindProperties(this, [0],[],this._Object20,"x");
  1372. }
  1373. var _proto = InGameSkin.prototype;
  1374. _proto.qiyeDiaAn_i = function () {
  1375. var t = new egret.tween.TweenGroup();
  1376. this.qiyeDiaAn = t;
  1377. t.items = [this._TweenItem1_i(),this._TweenItem2_i(),this._TweenItem3_i()];
  1378. return t;
  1379. };
  1380. _proto._TweenItem1_i = function () {
  1381. var t = new egret.tween.TweenItem();
  1382. this._TweenItem1 = t;
  1383. t.paths = [this._Set1_i(),this._Wait1_i(),this._Set2_i(),this._To1_i()];
  1384. return t;
  1385. };
  1386. _proto._Set1_i = function () {
  1387. var t = new egret.tween.Set();
  1388. t.props = this._Object1_i();
  1389. return t;
  1390. };
  1391. _proto._Object1_i = function () {
  1392. var t = {};
  1393. this._Object1 = t;
  1394. return t;
  1395. };
  1396. _proto._Wait1_i = function () {
  1397. var t = new egret.tween.Wait();
  1398. t.duration = 500;
  1399. return t;
  1400. };
  1401. _proto._Set2_i = function () {
  1402. var t = new egret.tween.Set();
  1403. t.props = this._Object2_i();
  1404. return t;
  1405. };
  1406. _proto._Object2_i = function () {
  1407. var t = {};
  1408. this._Object2 = t;
  1409. return t;
  1410. };
  1411. _proto._To1_i = function () {
  1412. var t = new egret.tween.To();
  1413. t.duration = 450;
  1414. t.ease = "sineOut";
  1415. t.props = this._Object3_i();
  1416. return t;
  1417. };
  1418. _proto._Object3_i = function () {
  1419. var t = {};
  1420. this._Object3 = t;
  1421. return t;
  1422. };
  1423. _proto._TweenItem2_i = function () {
  1424. var t = new egret.tween.TweenItem();
  1425. this._TweenItem2 = t;
  1426. t.paths = [this._Set3_i(),this._Wait2_i(),this._Set4_i(),this._To2_i(),this._To3_i()];
  1427. return t;
  1428. };
  1429. _proto._Set3_i = function () {
  1430. var t = new egret.tween.Set();
  1431. t.props = this._Object4_i();
  1432. return t;
  1433. };
  1434. _proto._Object4_i = function () {
  1435. var t = {};
  1436. this._Object4 = t;
  1437. return t;
  1438. };
  1439. _proto._Wait2_i = function () {
  1440. var t = new egret.tween.Wait();
  1441. t.duration = 500;
  1442. return t;
  1443. };
  1444. _proto._Set4_i = function () {
  1445. var t = new egret.tween.Set();
  1446. t.props = this._Object5_i();
  1447. return t;
  1448. };
  1449. _proto._Object5_i = function () {
  1450. var t = {};
  1451. this._Object5 = t;
  1452. return t;
  1453. };
  1454. _proto._To2_i = function () {
  1455. var t = new egret.tween.To();
  1456. t.duration = 450;
  1457. t.props = this._Object6_i();
  1458. return t;
  1459. };
  1460. _proto._Object6_i = function () {
  1461. var t = {};
  1462. this._Object6 = t;
  1463. return t;
  1464. };
  1465. _proto._To3_i = function () {
  1466. var t = new egret.tween.To();
  1467. t.duration = 450;
  1468. t.ease = "sineOut";
  1469. t.props = this._Object7_i();
  1470. return t;
  1471. };
  1472. _proto._Object7_i = function () {
  1473. var t = {};
  1474. this._Object7 = t;
  1475. return t;
  1476. };
  1477. _proto._TweenItem3_i = function () {
  1478. var t = new egret.tween.TweenItem();
  1479. this._TweenItem3 = t;
  1480. t.paths = [this._Set5_i(),this._Wait3_i(),this._Set6_i(),this._To4_i(),this._To5_i()];
  1481. return t;
  1482. };
  1483. _proto._Set5_i = function () {
  1484. var t = new egret.tween.Set();
  1485. t.props = this._Object8_i();
  1486. return t;
  1487. };
  1488. _proto._Object8_i = function () {
  1489. var t = {};
  1490. this._Object8 = t;
  1491. return t;
  1492. };
  1493. _proto._Wait3_i = function () {
  1494. var t = new egret.tween.Wait();
  1495. t.duration = 500;
  1496. return t;
  1497. };
  1498. _proto._Set6_i = function () {
  1499. var t = new egret.tween.Set();
  1500. t.props = this._Object9_i();
  1501. return t;
  1502. };
  1503. _proto._Object9_i = function () {
  1504. var t = {};
  1505. this._Object9 = t;
  1506. return t;
  1507. };
  1508. _proto._To4_i = function () {
  1509. var t = new egret.tween.To();
  1510. t.duration = 900;
  1511. t.props = this._Object10_i();
  1512. return t;
  1513. };
  1514. _proto._Object10_i = function () {
  1515. var t = {};
  1516. this._Object10 = t;
  1517. return t;
  1518. };
  1519. _proto._To5_i = function () {
  1520. var t = new egret.tween.To();
  1521. t.duration = 450;
  1522. t.ease = "sineOut";
  1523. t.props = this._Object11_i();
  1524. return t;
  1525. };
  1526. _proto._Object11_i = function () {
  1527. var t = {};
  1528. this._Object11 = t;
  1529. return t;
  1530. };
  1531. _proto.gerenDiaAn_i = function () {
  1532. var t = new egret.tween.TweenGroup();
  1533. this.gerenDiaAn = t;
  1534. t.items = [this._TweenItem4_i(),this._TweenItem5_i(),this._TweenItem6_i()];
  1535. return t;
  1536. };
  1537. _proto._TweenItem4_i = function () {
  1538. var t = new egret.tween.TweenItem();
  1539. this._TweenItem4 = t;
  1540. t.paths = [this._Set7_i(),this._Wait4_i(),this._Set8_i(),this._To6_i()];
  1541. return t;
  1542. };
  1543. _proto._Set7_i = function () {
  1544. var t = new egret.tween.Set();
  1545. t.props = this._Object12_i();
  1546. return t;
  1547. };
  1548. _proto._Object12_i = function () {
  1549. var t = {};
  1550. this._Object12 = t;
  1551. return t;
  1552. };
  1553. _proto._Wait4_i = function () {
  1554. var t = new egret.tween.Wait();
  1555. t.duration = 500;
  1556. return t;
  1557. };
  1558. _proto._Set8_i = function () {
  1559. var t = new egret.tween.Set();
  1560. t.props = this._Object13_i();
  1561. return t;
  1562. };
  1563. _proto._Object13_i = function () {
  1564. var t = {};
  1565. this._Object13 = t;
  1566. return t;
  1567. };
  1568. _proto._To6_i = function () {
  1569. var t = new egret.tween.To();
  1570. t.duration = 500;
  1571. t.ease = "sineOut";
  1572. t.props = this._Object14_i();
  1573. return t;
  1574. };
  1575. _proto._Object14_i = function () {
  1576. var t = {};
  1577. this._Object14 = t;
  1578. return t;
  1579. };
  1580. _proto._TweenItem5_i = function () {
  1581. var t = new egret.tween.TweenItem();
  1582. this._TweenItem5 = t;
  1583. t.paths = [this._Set9_i(),this._Wait5_i(),this._Set10_i(),this._To7_i()];
  1584. return t;
  1585. };
  1586. _proto._Set9_i = function () {
  1587. var t = new egret.tween.Set();
  1588. t.props = this._Object15_i();
  1589. return t;
  1590. };
  1591. _proto._Object15_i = function () {
  1592. var t = {};
  1593. this._Object15 = t;
  1594. return t;
  1595. };
  1596. _proto._Wait5_i = function () {
  1597. var t = new egret.tween.Wait();
  1598. t.duration = 1000;
  1599. return t;
  1600. };
  1601. _proto._Set10_i = function () {
  1602. var t = new egret.tween.Set();
  1603. t.props = this._Object16_i();
  1604. return t;
  1605. };
  1606. _proto._Object16_i = function () {
  1607. var t = {};
  1608. this._Object16 = t;
  1609. return t;
  1610. };
  1611. _proto._To7_i = function () {
  1612. var t = new egret.tween.To();
  1613. t.duration = 500;
  1614. t.ease = "sineOut";
  1615. t.props = this._Object17_i();
  1616. return t;
  1617. };
  1618. _proto._Object17_i = function () {
  1619. var t = {};
  1620. this._Object17 = t;
  1621. return t;
  1622. };
  1623. _proto._TweenItem6_i = function () {
  1624. var t = new egret.tween.TweenItem();
  1625. this._TweenItem6 = t;
  1626. t.paths = [this._Set11_i(),this._Wait6_i(),this._Set12_i(),this._To8_i()];
  1627. return t;
  1628. };
  1629. _proto._Set11_i = function () {
  1630. var t = new egret.tween.Set();
  1631. t.props = this._Object18_i();
  1632. return t;
  1633. };
  1634. _proto._Object18_i = function () {
  1635. var t = {};
  1636. this._Object18 = t;
  1637. return t;
  1638. };
  1639. _proto._Wait6_i = function () {
  1640. var t = new egret.tween.Wait();
  1641. t.duration = 1500;
  1642. return t;
  1643. };
  1644. _proto._Set12_i = function () {
  1645. var t = new egret.tween.Set();
  1646. t.props = this._Object19_i();
  1647. return t;
  1648. };
  1649. _proto._Object19_i = function () {
  1650. var t = {};
  1651. this._Object19 = t;
  1652. return t;
  1653. };
  1654. _proto._To8_i = function () {
  1655. var t = new egret.tween.To();
  1656. t.duration = 500;
  1657. t.ease = "sineOut";
  1658. t.props = this._Object20_i();
  1659. return t;
  1660. };
  1661. _proto._Object20_i = function () {
  1662. var t = {};
  1663. this._Object20 = t;
  1664. return t;
  1665. };
  1666. _proto._bird_i = function () {
  1667. var t = new eui.Image();
  1668. this._bird = t;
  1669. t.anchorOffsetX = 500;
  1670. t.scaleX = 1;
  1671. t.source = "map3000_jpg";
  1672. t.x = 375;
  1673. t.y = 0;
  1674. return t;
  1675. };
  1676. _proto.addBtn_i = function () {
  1677. var t = new eui.Image();
  1678. this.addBtn = t;
  1679. t.source = "aloadingBar0_png";
  1680. t.x = 288;
  1681. t.y = 72;
  1682. return t;
  1683. };
  1684. return InGameSkin;
  1685. })(eui.Skin);generateEUI.paths['resource/eui_skins/ItemRendererSkin.exml'] = window.skins.ItemRendererSkin = (function (_super) {
  1686. __extends(ItemRendererSkin, _super);
  1687. function ItemRendererSkin() {
  1688. _super.call(this);
  1689. this.skinParts = ["labelDisplay"];
  1690. this.minHeight = 50;
  1691. this.minWidth = 100;
  1692. this.elementsContent = [this._Image1_i(),this.labelDisplay_i()];
  1693. this.states = [
  1694. new eui.State ("up",
  1695. [
  1696. ])
  1697. ,
  1698. new eui.State ("down",
  1699. [
  1700. new eui.SetProperty("_Image1","source","button_down_png")
  1701. ])
  1702. ,
  1703. new eui.State ("disabled",
  1704. [
  1705. new eui.SetProperty("_Image1","alpha",0.5)
  1706. ])
  1707. ];
  1708. eui.Binding.$bindProperties(this, ["hostComponent.data"],[0],this.labelDisplay,"text");
  1709. }
  1710. var _proto = ItemRendererSkin.prototype;
  1711. _proto._Image1_i = function () {
  1712. var t = new eui.Image();
  1713. this._Image1 = t;
  1714. t.percentHeight = 100;
  1715. t.scale9Grid = new egret.Rectangle(1,3,8,8);
  1716. t.source = "button_up_png";
  1717. t.percentWidth = 100;
  1718. return t;
  1719. };
  1720. _proto.labelDisplay_i = function () {
  1721. var t = new eui.Label();
  1722. this.labelDisplay = t;
  1723. t.bottom = 8;
  1724. t.fontFamily = "Tahoma";
  1725. t.left = 8;
  1726. t.right = 8;
  1727. t.size = 20;
  1728. t.textAlign = "center";
  1729. t.textColor = 0xFFFFFF;
  1730. t.top = 8;
  1731. t.verticalAlign = "middle";
  1732. return t;
  1733. };
  1734. return ItemRendererSkin;
  1735. })(eui.Skin);generateEUI.paths['resource/eui_skins/MainGame.exml'] = window.MainGameSkin = (function (_super) {
  1736. __extends(MainGameSkin, _super);
  1737. function MainGameSkin() {
  1738. _super.call(this);
  1739. this.skinParts = [];
  1740. this.height = 1465;
  1741. this.width = 750;
  1742. }
  1743. var _proto = MainGameSkin.prototype;
  1744. return MainGameSkin;
  1745. })(eui.Skin);generateEUI.paths['resource/eui_skins/PanelSkin.exml'] = window.skins.PanelSkin = (function (_super) {
  1746. __extends(PanelSkin, _super);
  1747. function PanelSkin() {
  1748. _super.call(this);
  1749. this.skinParts = ["titleDisplay","moveArea","closeButton"];
  1750. this.minHeight = 230;
  1751. this.minWidth = 450;
  1752. this.elementsContent = [this._Image1_i(),this.moveArea_i(),this.closeButton_i()];
  1753. }
  1754. var _proto = PanelSkin.prototype;
  1755. _proto._Image1_i = function () {
  1756. var t = new eui.Image();
  1757. t.bottom = 0;
  1758. t.left = 0;
  1759. t.right = 0;
  1760. t.scale9Grid = new egret.Rectangle(2,2,12,12);
  1761. t.source = "border_png";
  1762. t.top = 0;
  1763. return t;
  1764. };
  1765. _proto.moveArea_i = function () {
  1766. var t = new eui.Group();
  1767. this.moveArea = t;
  1768. t.height = 45;
  1769. t.left = 0;
  1770. t.right = 0;
  1771. t.top = 0;
  1772. t.elementsContent = [this._Image2_i(),this.titleDisplay_i()];
  1773. return t;
  1774. };
  1775. _proto._Image2_i = function () {
  1776. var t = new eui.Image();
  1777. t.bottom = 0;
  1778. t.left = 0;
  1779. t.right = 0;
  1780. t.source = "header_png";
  1781. t.top = 0;
  1782. return t;
  1783. };
  1784. _proto.titleDisplay_i = function () {
  1785. var t = new eui.Label();
  1786. this.titleDisplay = t;
  1787. t.fontFamily = "Tahoma";
  1788. t.left = 15;
  1789. t.right = 5;
  1790. t.size = 20;
  1791. t.textColor = 0xFFFFFF;
  1792. t.verticalCenter = 0;
  1793. t.wordWrap = false;
  1794. return t;
  1795. };
  1796. _proto.closeButton_i = function () {
  1797. var t = new eui.Button();
  1798. this.closeButton = t;
  1799. t.bottom = 5;
  1800. t.horizontalCenter = 0;
  1801. t.label = "close";
  1802. return t;
  1803. };
  1804. return PanelSkin;
  1805. })(eui.Skin);generateEUI.paths['resource/eui_skins/PrizePage.exml'] = window.PrizePageSkin = (function (_super) {
  1806. __extends(PrizePageSkin, _super);
  1807. function PrizePageSkin() {
  1808. _super.call(this);
  1809. this.skinParts = ["winBg","prizeBit","tName","tTel","tAdd","tijiaoBtn","gWin","youhuiBit","shareBtn","linkBtn","gLose","shareBtn2","homeBtn","gTijiaoOk"];
  1810. this.height = 1465;
  1811. this.width = 750;
  1812. 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()];
  1813. }
  1814. var _proto = PrizePageSkin.prototype;
  1815. _proto._Image1_i = function () {
  1816. var t = new eui.Image();
  1817. t.height = 1565;
  1818. t.source = "homeBg_jpg";
  1819. t.x = 0;
  1820. t.y = -50;
  1821. return t;
  1822. };
  1823. _proto._Image2_i = function () {
  1824. var t = new eui.Image();
  1825. t.horizontalCenter = 0.5;
  1826. t.source = "homeTitle_png";
  1827. t.y = 192;
  1828. return t;
  1829. };
  1830. _proto._Image3_i = function () {
  1831. var t = new eui.Image();
  1832. t.source = "homeC1_png";
  1833. t.x = 312;
  1834. t.y = 436;
  1835. return t;
  1836. };
  1837. _proto._Image4_i = function () {
  1838. var t = new eui.Image();
  1839. t.source = "homeC2_png";
  1840. t.x = 508;
  1841. t.y = 442;
  1842. return t;
  1843. };
  1844. _proto._ToumingBg1_i = function () {
  1845. var t = new ToumingBg();
  1846. t.anchorOffsetY = 0;
  1847. t.height = 1800;
  1848. t.width = 750;
  1849. t.x = 0;
  1850. t.y = -150;
  1851. return t;
  1852. };
  1853. _proto.gWin_i = function () {
  1854. var t = new eui.Group();
  1855. this.gWin = t;
  1856. t.height = 1465;
  1857. t.visible = false;
  1858. t.width = 750;
  1859. t.x = 0;
  1860. t.y = 0;
  1861. t.elementsContent = [this.winBg_i(),this.prizeBit_i(),this.tName_i(),this.tTel_i(),this.tAdd_i(),this.tijiaoBtn_i()];
  1862. return t;
  1863. };
  1864. _proto.winBg_i = function () {
  1865. var t = new eui.Image();
  1866. this.winBg = t;
  1867. t.horizontalCenter = 0;
  1868. t.source = "getPrize_png";
  1869. t.y = 184.82;
  1870. return t;
  1871. };
  1872. _proto.prizeBit_i = function () {
  1873. var t = new eui.Image();
  1874. this.prizeBit = t;
  1875. t.anchorOffsetX = 158;
  1876. t.anchorOffsetY = 91;
  1877. t.horizontalCenter = 0;
  1878. t.source = "prize6_png";
  1879. t.y = 540.81;
  1880. return t;
  1881. };
  1882. _proto.tName_i = function () {
  1883. var t = new eui.EditableText();
  1884. this.tName = t;
  1885. t.anchorOffsetX = 0;
  1886. t.anchorOffsetY = 0;
  1887. t.fontFamily = "SimHei";
  1888. t.height = 68;
  1889. t.prompt = "请输入您的姓名";
  1890. t.promptColor = 0xffffff;
  1891. t.size = 30;
  1892. t.text = "";
  1893. t.textAlign = "left";
  1894. t.verticalAlign = "middle";
  1895. t.width = 378;
  1896. t.x = 181.66;
  1897. t.y = 756.48;
  1898. return t;
  1899. };
  1900. _proto.tTel_i = function () {
  1901. var t = new eui.EditableText();
  1902. this.tTel = t;
  1903. t.anchorOffsetX = 0;
  1904. t.anchorOffsetY = 0;
  1905. t.fontFamily = "SimHei";
  1906. t.height = 68;
  1907. t.inputType = "tel";
  1908. t.prompt = "请输入您的联系电话";
  1909. t.promptColor = 0xffffff;
  1910. t.size = 30;
  1911. t.text = "";
  1912. t.textAlign = "left";
  1913. t.verticalAlign = "middle";
  1914. t.width = 378;
  1915. t.x = 181.66;
  1916. t.y = 847.38;
  1917. return t;
  1918. };
  1919. _proto.tAdd_i = function () {
  1920. var t = new eui.EditableText();
  1921. this.tAdd = t;
  1922. t.anchorOffsetX = 0;
  1923. t.anchorOffsetY = 0;
  1924. t.fontFamily = "SimHei";
  1925. t.height = 68;
  1926. t.prompt = "请输入邮寄地址";
  1927. t.promptColor = 0xffffff;
  1928. t.size = 30;
  1929. t.text = "";
  1930. t.textAlign = "left";
  1931. t.verticalAlign = "middle";
  1932. t.width = 378;
  1933. t.x = 181.66;
  1934. t.y = 938.28;
  1935. return t;
  1936. };
  1937. _proto.tijiaoBtn_i = function () {
  1938. var t = new eui.Image();
  1939. this.tijiaoBtn = t;
  1940. t.anchorOffsetX = 101.5;
  1941. t.anchorOffsetY = 38.5;
  1942. t.scaleX = 1;
  1943. t.scaleY = 1;
  1944. t.source = "tijiaoBtn_png";
  1945. t.x = 385;
  1946. t.y = 1093.26;
  1947. return t;
  1948. };
  1949. _proto.gLose_i = function () {
  1950. var t = new eui.Group();
  1951. this.gLose = t;
  1952. t.height = 1465;
  1953. t.width = 750;
  1954. t.x = 0;
  1955. t.y = 0;
  1956. t.elementsContent = [this._Image5_i(),this.youhuiBit_i(),this.shareBtn_i(),this.linkBtn_i()];
  1957. return t;
  1958. };
  1959. _proto._Image5_i = function () {
  1960. var t = new eui.Image();
  1961. t.horizontalCenter = 0;
  1962. t.source = "prizeYouhuiBg_png";
  1963. t.y = 185.14;
  1964. return t;
  1965. };
  1966. _proto.youhuiBit_i = function () {
  1967. var t = new eui.Image();
  1968. this.youhuiBit = t;
  1969. t.source = "";
  1970. t.x = 138.97;
  1971. t.y = 451.04;
  1972. return t;
  1973. };
  1974. _proto.shareBtn_i = function () {
  1975. var t = new eui.Image();
  1976. this.shareBtn = t;
  1977. t.source = "shareBtn_png";
  1978. t.x = 146.4;
  1979. t.y = 789.18;
  1980. return t;
  1981. };
  1982. _proto.linkBtn_i = function () {
  1983. var t = new eui.Image();
  1984. this.linkBtn = t;
  1985. t.source = "linkBtn_png";
  1986. t.x = 416;
  1987. t.y = 789.18;
  1988. return t;
  1989. };
  1990. _proto.gTijiaoOk_i = function () {
  1991. var t = new eui.Group();
  1992. this.gTijiaoOk = t;
  1993. t.height = 1465;
  1994. t.visible = false;
  1995. t.width = 750;
  1996. t.x = 0;
  1997. t.y = 0;
  1998. t.elementsContent = [this._Image6_i(),this.shareBtn2_i(),this.homeBtn_i()];
  1999. return t;
  2000. };
  2001. _proto._Image6_i = function () {
  2002. var t = new eui.Image();
  2003. t.horizontalCenter = 0;
  2004. t.source = "tijiaoOk_png";
  2005. t.y = 420;
  2006. return t;
  2007. };
  2008. _proto.shareBtn2_i = function () {
  2009. var t = new eui.Image();
  2010. this.shareBtn2 = t;
  2011. t.source = "shareBtn_png";
  2012. t.x = 140;
  2013. t.y = 800;
  2014. return t;
  2015. };
  2016. _proto.homeBtn_i = function () {
  2017. var t = new eui.Image();
  2018. this.homeBtn = t;
  2019. t.source = "homeBtn_png";
  2020. t.x = 410;
  2021. t.y = 800;
  2022. return t;
  2023. };
  2024. return PrizePageSkin;
  2025. })(eui.Skin);generateEUI.paths['resource/eui_skins/ProgressBarSkin.exml'] = window.skins.ProgressBarSkin = (function (_super) {
  2026. __extends(ProgressBarSkin, _super);
  2027. function ProgressBarSkin() {
  2028. _super.call(this);
  2029. this.skinParts = ["thumb","labelDisplay"];
  2030. this.minHeight = 18;
  2031. this.minWidth = 30;
  2032. this.elementsContent = [this._Image1_i(),this.thumb_i(),this.labelDisplay_i()];
  2033. }
  2034. var _proto = ProgressBarSkin.prototype;
  2035. _proto._Image1_i = function () {
  2036. var t = new eui.Image();
  2037. t.percentHeight = 100;
  2038. t.scale9Grid = new egret.Rectangle(1,1,4,4);
  2039. t.source = "track_pb_png";
  2040. t.verticalCenter = 0;
  2041. t.percentWidth = 100;
  2042. return t;
  2043. };
  2044. _proto.thumb_i = function () {
  2045. var t = new eui.Image();
  2046. this.thumb = t;
  2047. t.percentHeight = 100;
  2048. t.source = "thumb_pb_png";
  2049. t.percentWidth = 100;
  2050. return t;
  2051. };
  2052. _proto.labelDisplay_i = function () {
  2053. var t = new eui.Label();
  2054. this.labelDisplay = t;
  2055. t.fontFamily = "Tahoma";
  2056. t.horizontalCenter = 0;
  2057. t.size = 15;
  2058. t.textAlign = "center";
  2059. t.textColor = 0x707070;
  2060. t.verticalAlign = "middle";
  2061. t.verticalCenter = 0;
  2062. return t;
  2063. };
  2064. return ProgressBarSkin;
  2065. })(eui.Skin);generateEUI.paths['resource/eui_skins/QrPage.exml'] = window.QrPageSkin = (function (_super) {
  2066. __extends(QrPageSkin, _super);
  2067. function QrPageSkin() {
  2068. _super.call(this);
  2069. this.skinParts = [];
  2070. this.height = 1600;
  2071. this.width = 750;
  2072. }
  2073. var _proto = QrPageSkin.prototype;
  2074. return QrPageSkin;
  2075. })(eui.Skin);generateEUI.paths['resource/eui_skins/RadioButtonSkin.exml'] = window.skins.RadioButtonSkin = (function (_super) {
  2076. __extends(RadioButtonSkin, _super);
  2077. function RadioButtonSkin() {
  2078. _super.call(this);
  2079. this.skinParts = ["labelDisplay"];
  2080. this.elementsContent = [this._Group1_i()];
  2081. this.states = [
  2082. new eui.State ("up",
  2083. [
  2084. ])
  2085. ,
  2086. new eui.State ("down",
  2087. [
  2088. new eui.SetProperty("_Image1","alpha",0.7)
  2089. ])
  2090. ,
  2091. new eui.State ("disabled",
  2092. [
  2093. new eui.SetProperty("_Image1","alpha",0.5)
  2094. ])
  2095. ,
  2096. new eui.State ("upAndSelected",
  2097. [
  2098. new eui.SetProperty("_Image1","source","radiobutton_select_up_png")
  2099. ])
  2100. ,
  2101. new eui.State ("downAndSelected",
  2102. [
  2103. new eui.SetProperty("_Image1","source","radiobutton_select_down_png")
  2104. ])
  2105. ,
  2106. new eui.State ("disabledAndSelected",
  2107. [
  2108. new eui.SetProperty("_Image1","source","radiobutton_select_disabled_png")
  2109. ])
  2110. ];
  2111. }
  2112. var _proto = RadioButtonSkin.prototype;
  2113. _proto._Group1_i = function () {
  2114. var t = new eui.Group();
  2115. t.percentHeight = 100;
  2116. t.percentWidth = 100;
  2117. t.layout = this._HorizontalLayout1_i();
  2118. t.elementsContent = [this._Image1_i(),this.labelDisplay_i()];
  2119. return t;
  2120. };
  2121. _proto._HorizontalLayout1_i = function () {
  2122. var t = new eui.HorizontalLayout();
  2123. t.verticalAlign = "middle";
  2124. return t;
  2125. };
  2126. _proto._Image1_i = function () {
  2127. var t = new eui.Image();
  2128. this._Image1 = t;
  2129. t.alpha = 1;
  2130. t.fillMode = "scale";
  2131. t.source = "radiobutton_unselect_png";
  2132. return t;
  2133. };
  2134. _proto.labelDisplay_i = function () {
  2135. var t = new eui.Label();
  2136. this.labelDisplay = t;
  2137. t.fontFamily = "Tahoma";
  2138. t.size = 20;
  2139. t.textAlign = "center";
  2140. t.textColor = 0x707070;
  2141. t.verticalAlign = "middle";
  2142. return t;
  2143. };
  2144. return RadioButtonSkin;
  2145. })(eui.Skin);generateEUI.paths['resource/eui_skins/RankBar.exml'] = window.RankBarSkin = (function (_super) {
  2146. __extends(RankBarSkin, _super);
  2147. function RankBarSkin() {
  2148. _super.call(this);
  2149. this.skinParts = ["roundDi","head","ma","t","gold","rankTxt"];
  2150. this.height = 80;
  2151. this.width = 602;
  2152. this.elementsContent = [this._Rect1_i(),this._Rect2_i(),this.roundDi_i(),this.head_i(),this.ma_i(),this.t_i(),this.gold_i(),this.rankTxt_i()];
  2153. }
  2154. var _proto = RankBarSkin.prototype;
  2155. _proto._Rect1_i = function () {
  2156. var t = new eui.Rect();
  2157. t.fillColor = 0xffffff;
  2158. t.height = 80;
  2159. t.left = 0;
  2160. t.right = 0;
  2161. t.y = 0;
  2162. return t;
  2163. };
  2164. _proto._Rect2_i = function () {
  2165. var t = new eui.Rect();
  2166. t.fillColor = 0xbbbbbb;
  2167. t.height = 2;
  2168. t.left = 0;
  2169. t.right = 0;
  2170. t.y = 78;
  2171. return t;
  2172. };
  2173. _proto.roundDi_i = function () {
  2174. var t = new eui.Rect();
  2175. this.roundDi = t;
  2176. t.anchorOffsetX = 25;
  2177. t.anchorOffsetY = 25;
  2178. t.ellipseHeight = 50;
  2179. t.ellipseWidth = 50;
  2180. t.fillColor = 0xffffff;
  2181. t.height = 50;
  2182. t.width = 50;
  2183. t.x = 45;
  2184. t.y = 40;
  2185. return t;
  2186. };
  2187. _proto.head_i = function () {
  2188. var t = new eui.Image();
  2189. this.head = t;
  2190. t.anchorOffsetX = 25;
  2191. t.anchorOffsetY = 25;
  2192. t.height = 50;
  2193. t.width = 50;
  2194. t.x = 45;
  2195. t.y = 40;
  2196. return t;
  2197. };
  2198. _proto.ma_i = function () {
  2199. var t = new eui.Rect();
  2200. this.ma = t;
  2201. t.anchorOffsetX = 24;
  2202. t.anchorOffsetY = 24;
  2203. t.ellipseHeight = 48;
  2204. t.ellipseWidth = 48;
  2205. t.height = 48;
  2206. t.width = 48;
  2207. t.x = 45;
  2208. t.y = 40;
  2209. return t;
  2210. };
  2211. _proto.t_i = function () {
  2212. var t = new eui.Label();
  2213. this.t = t;
  2214. t.anchorOffsetX = 0;
  2215. t.anchorOffsetY = 0;
  2216. t.height = 44;
  2217. t.size = 26;
  2218. t.text = "";
  2219. t.textColor = 0x000000;
  2220. t.verticalAlign = "middle";
  2221. t.width = 498.88;
  2222. t.x = 91.45;
  2223. t.y = 18;
  2224. return t;
  2225. };
  2226. _proto.gold_i = function () {
  2227. var t = new eui.Image();
  2228. this.gold = t;
  2229. t.source = "img/rankGold.png";
  2230. t.x = -1151.03;
  2231. t.y = 14;
  2232. return t;
  2233. };
  2234. _proto.rankTxt_i = function () {
  2235. var t = new eui.Label();
  2236. this.rankTxt = t;
  2237. t.anchorOffsetX = 0;
  2238. t.anchorOffsetY = 0;
  2239. t.height = 44;
  2240. t.size = 20;
  2241. t.text = "1";
  2242. t.textAlign = "center";
  2243. t.textColor = 0xff0000;
  2244. t.verticalAlign = "middle";
  2245. t.width = 49.33;
  2246. t.x = -1158.03;
  2247. t.y = 21;
  2248. return t;
  2249. };
  2250. return RankBarSkin;
  2251. })(eui.Skin);generateEUI.paths['resource/eui_skins/RankBarNew.exml'] = window.RankBarNewSkin = (function (_super) {
  2252. __extends(RankBarNewSkin, _super);
  2253. function RankBarNewSkin() {
  2254. _super.call(this);
  2255. this.skinParts = ["head","ma","t"];
  2256. this.height = 80;
  2257. this.width = 600;
  2258. this.elementsContent = [this._Rect1_i(),this._Rect2_i(),this.head_i(),this.ma_i(),this.t_i()];
  2259. }
  2260. var _proto = RankBarNewSkin.prototype;
  2261. _proto._Rect1_i = function () {
  2262. var t = new eui.Rect();
  2263. t.fillColor = 0xFFFFFF;
  2264. t.height = 80;
  2265. t.left = 0;
  2266. t.right = 0;
  2267. t.y = 0;
  2268. return t;
  2269. };
  2270. _proto._Rect2_i = function () {
  2271. var t = new eui.Rect();
  2272. t.fillColor = 0xBBBBBB;
  2273. t.height = 2;
  2274. t.left = 0;
  2275. t.right = 0;
  2276. t.y = 78;
  2277. return t;
  2278. };
  2279. _proto.head_i = function () {
  2280. var t = new eui.Image();
  2281. this.head = t;
  2282. t.anchorOffsetX = 25;
  2283. t.anchorOffsetY = 25;
  2284. t.height = 50;
  2285. t.width = 50;
  2286. t.x = 45;
  2287. t.y = 40;
  2288. return t;
  2289. };
  2290. _proto.ma_i = function () {
  2291. var t = new eui.Rect();
  2292. this.ma = t;
  2293. t.anchorOffsetX = 24;
  2294. t.anchorOffsetY = 24;
  2295. t.ellipseHeight = 48;
  2296. t.ellipseWidth = 48;
  2297. t.height = 48;
  2298. t.width = 48;
  2299. t.x = 45;
  2300. t.y = 40;
  2301. return t;
  2302. };
  2303. _proto.t_i = function () {
  2304. var t = new eui.Label();
  2305. this.t = t;
  2306. t.anchorOffsetX = 0;
  2307. t.anchorOffsetY = 0;
  2308. t.height = 44;
  2309. t.size = 26;
  2310. t.text = "Label";
  2311. t.textColor = 0x000000;
  2312. t.verticalAlign = "middle";
  2313. t.width = 499.33;
  2314. t.x = 91;
  2315. t.y = 18;
  2316. return t;
  2317. };
  2318. return RankBarNewSkin;
  2319. })(eui.Skin);generateEUI.paths['resource/eui_skins/RankMe.exml'] = window.RankMeSkin = (function (_super) {
  2320. __extends(RankMeSkin, _super);
  2321. function RankMeSkin() {
  2322. _super.call(this);
  2323. this.skinParts = ["head","ma","t"];
  2324. this.height = 60;
  2325. this.width = 602;
  2326. this.elementsContent = [this._Rect1_i(),this.head_i(),this.ma_i(),this.t_i()];
  2327. }
  2328. var _proto = RankMeSkin.prototype;
  2329. _proto._Rect1_i = function () {
  2330. var t = new eui.Rect();
  2331. t.anchorOffsetX = 27;
  2332. t.anchorOffsetY = 27;
  2333. t.ellipseHeight = 54;
  2334. t.ellipseWidth = 54;
  2335. t.fillColor = 0xffffff;
  2336. t.height = 54;
  2337. t.width = 54;
  2338. t.x = 50;
  2339. t.y = 30.9;
  2340. return t;
  2341. };
  2342. _proto.head_i = function () {
  2343. var t = new eui.Image();
  2344. this.head = t;
  2345. t.anchorOffsetX = 25;
  2346. t.anchorOffsetY = 25;
  2347. t.height = 50;
  2348. t.width = 50;
  2349. t.x = 50;
  2350. t.y = 30.9;
  2351. return t;
  2352. };
  2353. _proto.ma_i = function () {
  2354. var t = new eui.Rect();
  2355. this.ma = t;
  2356. t.anchorOffsetX = 24;
  2357. t.anchorOffsetY = 24;
  2358. t.ellipseHeight = 48;
  2359. t.ellipseWidth = 48;
  2360. t.height = 48;
  2361. t.width = 48;
  2362. t.x = 50;
  2363. t.y = 30.9;
  2364. return t;
  2365. };
  2366. _proto.t_i = function () {
  2367. var t = new eui.Label();
  2368. this.t = t;
  2369. t.anchorOffsetX = 0;
  2370. t.anchorOffsetY = 0;
  2371. t.height = 44;
  2372. t.size = 26;
  2373. t.text = "";
  2374. t.textColor = 0xffffff;
  2375. t.verticalAlign = "middle";
  2376. t.width = 496;
  2377. t.x = 91;
  2378. t.y = 7.4;
  2379. return t;
  2380. };
  2381. return RankMeSkin;
  2382. })(eui.Skin);generateEUI.paths['resource/eui_skins/RankPage.exml'] = window.RankPageSkin = (function (_super) {
  2383. __extends(RankPageSkin, _super);
  2384. function RankPageSkin() {
  2385. _super.call(this);
  2386. this.skinParts = ["tipImg","bar","closeBtn","btn0","btn1","rankMe","gTop","scTop","gNew","scNew"];
  2387. this.height = 1600;
  2388. this.width = 750;
  2389. this.elementsContent = [this.tipImg_i(),this._Image1_i(),this.bar_i(),this.closeBtn_i(),this.btn0_i(),this.btn1_i(),this.rankMe_i(),this.scTop_i(),this.scNew_i()];
  2390. }
  2391. var _proto = RankPageSkin.prototype;
  2392. _proto.tipImg_i = function () {
  2393. var t = new eui.Image();
  2394. this.tipImg = t;
  2395. t.source = "img/tip01.jpg";
  2396. t.visible = false;
  2397. t.x = 0;
  2398. t.y = 0;
  2399. return t;
  2400. };
  2401. _proto._Image1_i = function () {
  2402. var t = new eui.Image();
  2403. t.source = "img/rankBg.png";
  2404. t.x = 47;
  2405. t.y = 150.62;
  2406. return t;
  2407. };
  2408. _proto.bar_i = function () {
  2409. var t = new eui.Image();
  2410. this.bar = t;
  2411. t.anchorOffsetX = 35.5;
  2412. t.anchorOffsetY = 3;
  2413. t.source = "img/rankBar.png";
  2414. t.x = 240.59;
  2415. t.y = 397.04;
  2416. return t;
  2417. };
  2418. _proto.closeBtn_i = function () {
  2419. var t = new ToumingBtn();
  2420. this.closeBtn = t;
  2421. t.anchorOffsetX = 0;
  2422. t.anchorOffsetY = 0;
  2423. t.height = 105;
  2424. t.width = 103;
  2425. t.x = 614;
  2426. t.y = 129.12;
  2427. return t;
  2428. };
  2429. _proto.btn0_i = function () {
  2430. var t = new ToumingBtn();
  2431. this.btn0 = t;
  2432. t.anchorOffsetX = 102.66;
  2433. t.anchorOffsetY = 33.86;
  2434. t.height = 65;
  2435. t.width = 207;
  2436. t.x = 240.25;
  2437. t.y = 375.4;
  2438. return t;
  2439. };
  2440. _proto.btn1_i = function () {
  2441. var t = new ToumingBtn();
  2442. this.btn1 = t;
  2443. t.anchorOffsetX = 102.67;
  2444. t.anchorOffsetY = 33.32;
  2445. t.height = 66.34;
  2446. t.width = 207;
  2447. t.x = 507.58;
  2448. t.y = 374.19;
  2449. return t;
  2450. };
  2451. _proto.rankMe_i = function () {
  2452. var t = new RankMe();
  2453. this.rankMe = t;
  2454. t.x = 78;
  2455. t.y = 408.6;
  2456. return t;
  2457. };
  2458. _proto.scTop_i = function () {
  2459. var t = new eui.Scroller();
  2460. this.scTop = t;
  2461. t.anchorOffsetX = 0;
  2462. t.anchorOffsetY = 0;
  2463. t.height = 937.88;
  2464. t.scrollPolicyH = "off";
  2465. t.scrollPolicyV = "on";
  2466. t.width = 604.55;
  2467. t.x = 74;
  2468. t.y = 473.12;
  2469. t.viewport = this.gTop_i();
  2470. return t;
  2471. };
  2472. _proto.gTop_i = function () {
  2473. var t = new eui.Group();
  2474. this.gTop = t;
  2475. t.layout = this._VerticalLayout1_i();
  2476. return t;
  2477. };
  2478. _proto._VerticalLayout1_i = function () {
  2479. var t = new eui.VerticalLayout();
  2480. return t;
  2481. };
  2482. _proto.scNew_i = function () {
  2483. var t = new eui.Scroller();
  2484. this.scNew = t;
  2485. t.anchorOffsetX = 0;
  2486. t.anchorOffsetY = 0;
  2487. t.height = 937.88;
  2488. t.scrollPolicyH = "off";
  2489. t.scrollPolicyV = "on";
  2490. t.width = 604.55;
  2491. t.x = 74;
  2492. t.y = 473.12;
  2493. t.viewport = this.gNew_i();
  2494. return t;
  2495. };
  2496. _proto.gNew_i = function () {
  2497. var t = new eui.Group();
  2498. this.gNew = t;
  2499. t.layout = this._VerticalLayout2_i();
  2500. return t;
  2501. };
  2502. _proto._VerticalLayout2_i = function () {
  2503. var t = new eui.VerticalLayout();
  2504. return t;
  2505. };
  2506. return RankPageSkin;
  2507. })(eui.Skin);generateEUI.paths['resource/eui_skins/RedPoint.exml'] = window.RedPointSkin = (function (_super) {
  2508. __extends(RedPointSkin, _super);
  2509. function RedPointSkin() {
  2510. _super.call(this);
  2511. this.skinParts = ["r0","r1","r2"];
  2512. this.height = 100;
  2513. this.width = 100;
  2514. this.elementsContent = [this.r0_i(),this.r1_i(),this.r2_i()];
  2515. }
  2516. var _proto = RedPointSkin.prototype;
  2517. _proto.r0_i = function () {
  2518. var t = new eui.Rect();
  2519. this.r0 = t;
  2520. t.anchorOffsetX = 25;
  2521. t.anchorOffsetY = 25;
  2522. t.ellipseWidth = 50;
  2523. t.fillColor = 0xff5f2d;
  2524. t.height = 50;
  2525. t.horizontalCenter = 0;
  2526. t.verticalCenter = 0;
  2527. t.width = 50;
  2528. return t;
  2529. };
  2530. _proto.r1_i = function () {
  2531. var t = new eui.Rect();
  2532. this.r1 = t;
  2533. t.anchorOffsetX = 25;
  2534. t.anchorOffsetY = 25;
  2535. t.ellipseWidth = 50;
  2536. t.fillColor = 0xFF5F2D;
  2537. t.height = 50;
  2538. t.horizontalCenter = 0;
  2539. t.verticalCenter = 0;
  2540. t.width = 50;
  2541. return t;
  2542. };
  2543. _proto.r2_i = function () {
  2544. var t = new eui.Rect();
  2545. this.r2 = t;
  2546. t.anchorOffsetX = 25;
  2547. t.anchorOffsetY = 25;
  2548. t.ellipseWidth = 50;
  2549. t.fillColor = 0xFF5F2D;
  2550. t.height = 50;
  2551. t.horizontalCenter = 0;
  2552. t.verticalCenter = 0;
  2553. t.width = 50;
  2554. return t;
  2555. };
  2556. return RedPointSkin;
  2557. })(eui.Skin);generateEUI.paths['resource/eui_skins/ResultPage.exml'] = window.ResultPageSkin = (function (_super) {
  2558. __extends(ResultPageSkin, _super);
  2559. function ResultPageSkin() {
  2560. _super.call(this);
  2561. this.skinParts = ["haibaoBtn"];
  2562. this.height = 1465;
  2563. this.width = 750;
  2564. this.elementsContent = [this._Image1_i(),this.haibaoBtn_i()];
  2565. }
  2566. var _proto = ResultPageSkin.prototype;
  2567. _proto._Image1_i = function () {
  2568. var t = new eui.Image();
  2569. t.source = "img/resultBg10.jpg";
  2570. t.x = 0;
  2571. t.y = 0;
  2572. return t;
  2573. };
  2574. _proto.haibaoBtn_i = function () {
  2575. var t = new ToumingBtn();
  2576. this.haibaoBtn = t;
  2577. t.anchorOffsetX = 0;
  2578. t.anchorOffsetY = 0;
  2579. t.height = 129.09;
  2580. t.width = 513.94;
  2581. t.x = 115;
  2582. t.y = 1005.97;
  2583. return t;
  2584. };
  2585. return ResultPageSkin;
  2586. })(eui.Skin);generateEUI.paths['resource/eui_skins/ScrollerSkin.exml'] = window.skins.ScrollerSkin = (function (_super) {
  2587. __extends(ScrollerSkin, _super);
  2588. function ScrollerSkin() {
  2589. _super.call(this);
  2590. this.skinParts = ["horizontalScrollBar","verticalScrollBar"];
  2591. this.minHeight = 20;
  2592. this.minWidth = 20;
  2593. this.elementsContent = [this.horizontalScrollBar_i(),this.verticalScrollBar_i()];
  2594. }
  2595. var _proto = ScrollerSkin.prototype;
  2596. _proto.horizontalScrollBar_i = function () {
  2597. var t = new eui.HScrollBar();
  2598. this.horizontalScrollBar = t;
  2599. t.bottom = 0;
  2600. t.percentWidth = 100;
  2601. return t;
  2602. };
  2603. _proto.verticalScrollBar_i = function () {
  2604. var t = new eui.VScrollBar();
  2605. this.verticalScrollBar = t;
  2606. t.percentHeight = 100;
  2607. t.right = 0;
  2608. return t;
  2609. };
  2610. return ScrollerSkin;
  2611. })(eui.Skin);generateEUI.paths['resource/eui_skins/TestPage.exml'] = window.TestPageSkin = (function (_super) {
  2612. __extends(TestPageSkin, _super);
  2613. function TestPageSkin() {
  2614. _super.call(this);
  2615. 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"];
  2616. this.height = 1600;
  2617. this.width = 750;
  2618. 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()];
  2619. }
  2620. var _proto = TestPageSkin.prototype;
  2621. _proto.endTxtImg_i = function () {
  2622. var t = new eui.Image();
  2623. this.endTxtImg = t;
  2624. t.height = 20;
  2625. t.width = 20;
  2626. t.x = 836;
  2627. t.y = -82;
  2628. return t;
  2629. };
  2630. _proto.endBgImg_i = function () {
  2631. var t = new eui.Image();
  2632. this.endBgImg = t;
  2633. t.height = 20;
  2634. t.width = 20;
  2635. t.x = 846;
  2636. t.y = -72;
  2637. return t;
  2638. };
  2639. _proto._bird_i = function () {
  2640. var t = new eui.Group();
  2641. this._bird = t;
  2642. t.scaleX = 0.5;
  2643. t.scaleY = 0.5;
  2644. return t;
  2645. };
  2646. _proto.ingameCen_i = function () {
  2647. var t = new eui.Image();
  2648. this.ingameCen = t;
  2649. t.anchorOffsetY = 766;
  2650. t.source = "ingameCen_png";
  2651. t.x = 0;
  2652. t.y = 1078;
  2653. return t;
  2654. };
  2655. _proto.ingameTop_i = function () {
  2656. var t = new eui.Image();
  2657. this.ingameTop = t;
  2658. t.source = "ingameTop_png";
  2659. t.x = 0;
  2660. t.y = 0;
  2661. return t;
  2662. };
  2663. _proto.ingameDown_i = function () {
  2664. var t = new eui.Image();
  2665. this.ingameDown = t;
  2666. t.source = "ingameDown_png";
  2667. t.x = 0;
  2668. t.y = 1078;
  2669. return t;
  2670. };
  2671. _proto.ma_i = function () {
  2672. var t = new eui.Rect();
  2673. this.ma = t;
  2674. t.anchorOffsetX = 0;
  2675. t.anchorOffsetY = 0;
  2676. t.fillAlpha = 0.5;
  2677. t.fillColor = 0x17af00;
  2678. t.height = 1002;
  2679. t.width = 666.67;
  2680. t.x = 43.18;
  2681. t.y = 105;
  2682. return t;
  2683. };
  2684. _proto.recImg_i = function () {
  2685. var t = new eui.Image();
  2686. this.recImg = t;
  2687. t.source = "rec_png";
  2688. t.x = 62;
  2689. t.y = 306;
  2690. return t;
  2691. };
  2692. _proto.recIcon_i = function () {
  2693. var t = new eui.Rect();
  2694. this.recIcon = t;
  2695. t.ellipseHeight = 20;
  2696. t.ellipseWidth = 20;
  2697. t.fillColor = 0xff0000;
  2698. t.height = 20;
  2699. t.width = 20;
  2700. t.x = 124.34;
  2701. t.y = 307.66;
  2702. return t;
  2703. };
  2704. _proto.ruleBtn_i = function () {
  2705. var t = new eui.Image();
  2706. this.ruleBtn = t;
  2707. t.source = "ruleBtn_png";
  2708. t.x = 61.32;
  2709. t.y = 383.32;
  2710. return t;
  2711. };
  2712. _proto.shareBtn_i = function () {
  2713. var t = new eui.Image();
  2714. this.shareBtn = t;
  2715. t.source = "shareBtn_png";
  2716. t.x = 59.99;
  2717. t.y = 470;
  2718. return t;
  2719. };
  2720. _proto.secTxt_i = function () {
  2721. var t = new eui.Label();
  2722. this.secTxt = t;
  2723. t.fontFamily = "Microsoft YaHei";
  2724. t.scaleX = 1;
  2725. t.scaleY = 1;
  2726. t.size = 26;
  2727. t.stroke = 4;
  2728. t.text = "120 s";
  2729. t.textColor = 0xffcc56;
  2730. t.width = 89;
  2731. t.x = 64;
  2732. t.y = 336.32;
  2733. return t;
  2734. };
  2735. _proto.fangMc_i = function () {
  2736. var t = new eui.Image();
  2737. this.fangMc = t;
  2738. t.source = "f1_png";
  2739. t.x = 16;
  2740. t.y = 1146;
  2741. return t;
  2742. };
  2743. _proto.gIcon_i = function () {
  2744. var t = new eui.Group();
  2745. this.gIcon = t;
  2746. t.anchorOffsetX = 0;
  2747. t.anchorOffsetY = 0;
  2748. t.height = 293.94;
  2749. t.width = 567.27;
  2750. t.x = 181.76;
  2751. t.y = 1145;
  2752. t.layout = this._TileLayout1_i();
  2753. 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()];
  2754. return t;
  2755. };
  2756. _proto._TileLayout1_i = function () {
  2757. var t = new eui.TileLayout();
  2758. t.horizontalAlign = "left";
  2759. t.horizontalGap = 0;
  2760. t.orientation = "rows";
  2761. t.requestedColumnCount = 5;
  2762. t.requestedRowCount = 3;
  2763. t.verticalAlign = "justify";
  2764. t.verticalGap = 0;
  2765. return t;
  2766. };
  2767. _proto.icon1_i = function () {
  2768. var t = new IconMc();
  2769. this.icon1 = t;
  2770. t.x = 32;
  2771. t.y = 35;
  2772. return t;
  2773. };
  2774. _proto.icon2_i = function () {
  2775. var t = new IconMc();
  2776. this.icon2 = t;
  2777. t.x = 42;
  2778. t.y = 45;
  2779. return t;
  2780. };
  2781. _proto.icon3_i = function () {
  2782. var t = new IconMc();
  2783. this.icon3 = t;
  2784. t.x = 52;
  2785. t.y = 55;
  2786. return t;
  2787. };
  2788. _proto.icon4_i = function () {
  2789. var t = new IconMc();
  2790. this.icon4 = t;
  2791. t.x = 62;
  2792. t.y = 65;
  2793. return t;
  2794. };
  2795. _proto.icon5_i = function () {
  2796. var t = new IconMc();
  2797. this.icon5 = t;
  2798. t.x = 72;
  2799. t.y = 75;
  2800. return t;
  2801. };
  2802. _proto.icon6_i = function () {
  2803. var t = new IconMc();
  2804. this.icon6 = t;
  2805. t.x = 82;
  2806. t.y = 85;
  2807. return t;
  2808. };
  2809. _proto.icon7_i = function () {
  2810. var t = new IconMc();
  2811. this.icon7 = t;
  2812. t.x = 92;
  2813. t.y = 95;
  2814. return t;
  2815. };
  2816. _proto.icon8_i = function () {
  2817. var t = new IconMc();
  2818. this.icon8 = t;
  2819. t.x = 102;
  2820. t.y = 105;
  2821. return t;
  2822. };
  2823. _proto.icon9_i = function () {
  2824. var t = new IconMc();
  2825. this.icon9 = t;
  2826. t.x = 112;
  2827. t.y = 115;
  2828. return t;
  2829. };
  2830. _proto.icon10_i = function () {
  2831. var t = new IconMc();
  2832. this.icon10 = t;
  2833. t.x = 122;
  2834. t.y = 125;
  2835. return t;
  2836. };
  2837. _proto.icon11_i = function () {
  2838. var t = new IconMc();
  2839. this.icon11 = t;
  2840. t.x = 132;
  2841. t.y = 135;
  2842. return t;
  2843. };
  2844. _proto.icon12_i = function () {
  2845. var t = new IconMc();
  2846. this.icon12 = t;
  2847. t.x = 142;
  2848. t.y = 145;
  2849. return t;
  2850. };
  2851. _proto.icon13_i = function () {
  2852. var t = new IconMc();
  2853. this.icon13 = t;
  2854. t.x = 152;
  2855. t.y = 155;
  2856. return t;
  2857. };
  2858. _proto.icon14_i = function () {
  2859. var t = new IconMc();
  2860. this.icon14 = t;
  2861. t.x = 162;
  2862. t.y = 165;
  2863. return t;
  2864. };
  2865. _proto.icon15_i = function () {
  2866. var t = new IconMc();
  2867. this.icon15 = t;
  2868. t.x = 172;
  2869. t.y = 175;
  2870. return t;
  2871. };
  2872. _proto.gPop_i = function () {
  2873. var t = new eui.Group();
  2874. this.gPop = t;
  2875. t.anchorOffsetX = 378.79;
  2876. t.anchorOffsetY = 678.79;
  2877. t.height = 1600;
  2878. t.visible = false;
  2879. t.width = 750;
  2880. t.x = 378.79;
  2881. t.y = 678.79;
  2882. t.elementsContent = [this._Rect1_i(),this._Image1_i(),this.popImg_i(),this.tianBtn_i()];
  2883. return t;
  2884. };
  2885. _proto._Rect1_i = function () {
  2886. var t = new eui.Rect();
  2887. t.anchorOffsetX = 378;
  2888. t.anchorOffsetY = 716;
  2889. t.bottom = 0;
  2890. t.fillAlpha = 0.01;
  2891. t.left = 0;
  2892. t.right = 0;
  2893. t.top = 0;
  2894. return t;
  2895. };
  2896. _proto._Image1_i = function () {
  2897. var t = new eui.Image();
  2898. t.horizontalCenter = 0.5;
  2899. t.source = "kuang_png";
  2900. t.y = 501.1;
  2901. return t;
  2902. };
  2903. _proto.popImg_i = function () {
  2904. var t = new eui.Image();
  2905. this.popImg = t;
  2906. t.source = "p1_png";
  2907. t.x = 256;
  2908. t.y = 571.1;
  2909. return t;
  2910. };
  2911. _proto.tianBtn_i = function () {
  2912. var t = new eui.Image();
  2913. this.tianBtn = t;
  2914. t.anchorOffsetX = 119.09;
  2915. t.anchorOffsetY = 46;
  2916. t.horizontalCenter = 0.5;
  2917. t.source = "tianBtn_png";
  2918. t.y = 924.06;
  2919. return t;
  2920. };
  2921. _proto.gTip_i = function () {
  2922. var t = new eui.Group();
  2923. this.gTip = t;
  2924. t.height = 1600;
  2925. t.visible = false;
  2926. t.width = 750;
  2927. t.x = 0;
  2928. t.y = 0;
  2929. t.elementsContent = [this._Rect2_i(),this.tipImg_i()];
  2930. return t;
  2931. };
  2932. _proto._Rect2_i = function () {
  2933. var t = new eui.Rect();
  2934. t.bottom = 0;
  2935. t.fillAlpha = 0.7;
  2936. t.left = 0;
  2937. t.right = 0;
  2938. t.top = 0;
  2939. return t;
  2940. };
  2941. _proto.tipImg_i = function () {
  2942. var t = new eui.Image();
  2943. this.tipImg = t;
  2944. t.anchorOffsetX = 163.64;
  2945. t.anchorOffsetY = 136.36;
  2946. t.horizontalCenter = 0.5;
  2947. t.source = "scaleTip_png";
  2948. t.y = 681.36;
  2949. return t;
  2950. };
  2951. _proto.gRule_i = function () {
  2952. var t = new eui.Group();
  2953. this.gRule = t;
  2954. t.anchorOffsetX = 390.91;
  2955. t.anchorOffsetY = 721.21;
  2956. t.height = 1600;
  2957. t.visible = false;
  2958. t.width = 750;
  2959. t.x = 390.91;
  2960. t.y = 721.21;
  2961. t.elementsContent = [this._Rect3_i(),this._Image2_i(),this.closeRuleBtn_i()];
  2962. return t;
  2963. };
  2964. _proto._Rect3_i = function () {
  2965. var t = new eui.Rect();
  2966. t.bottom = 0;
  2967. t.fillAlpha = 0.01;
  2968. t.left = 0;
  2969. t.right = 0;
  2970. t.top = 0;
  2971. return t;
  2972. };
  2973. _proto._Image2_i = function () {
  2974. var t = new eui.Image();
  2975. t.source = "img/ruleImg.png";
  2976. t.x = 144;
  2977. t.y = 384.41;
  2978. return t;
  2979. };
  2980. _proto.closeRuleBtn_i = function () {
  2981. var t = new ToumingBtn();
  2982. this.closeRuleBtn = t;
  2983. t.anchorOffsetX = 0;
  2984. t.anchorOffsetY = 0;
  2985. t.height = 84.42;
  2986. t.width = 97.58;
  2987. t.x = 525;
  2988. t.y = 375.41;
  2989. return t;
  2990. };
  2991. _proto.gShare_i = function () {
  2992. var t = new eui.Group();
  2993. this.gShare = t;
  2994. t.anchorOffsetX = 378;
  2995. t.anchorOffsetY = 626;
  2996. t.height = 1600;
  2997. t.visible = false;
  2998. t.width = 750;
  2999. t.x = 378;
  3000. t.y = 626;
  3001. t.elementsContent = [this._Rect4_i(),this._Image3_i(),this.closeShareBtn_i()];
  3002. return t;
  3003. };
  3004. _proto._Rect4_i = function () {
  3005. var t = new eui.Rect();
  3006. t.bottom = 0;
  3007. t.fillAlpha = 0.01;
  3008. t.left = 0;
  3009. t.right = 0;
  3010. t.top = 0;
  3011. return t;
  3012. };
  3013. _proto._Image3_i = function () {
  3014. var t = new eui.Image();
  3015. t.source = "img/shareTip.png";
  3016. t.x = 144;
  3017. t.y = 545;
  3018. return t;
  3019. };
  3020. _proto.closeShareBtn_i = function () {
  3021. var t = new ToumingBtn();
  3022. this.closeShareBtn = t;
  3023. t.anchorOffsetX = 0;
  3024. t.anchorOffsetY = 0;
  3025. t.height = 199.57;
  3026. t.width = 97.58;
  3027. t.x = 540.15;
  3028. t.y = 526.91;
  3029. return t;
  3030. };
  3031. _proto.gGet_i = function () {
  3032. var t = new eui.Group();
  3033. this.gGet = t;
  3034. t.height = 1600;
  3035. t.visible = false;
  3036. t.width = 750;
  3037. t.x = 0;
  3038. t.y = 0;
  3039. t.elementsContent = [this._Rect5_i(),this.getImg_i()];
  3040. return t;
  3041. };
  3042. _proto._Rect5_i = function () {
  3043. var t = new eui.Rect();
  3044. t.bottom = 0;
  3045. t.fillAlpha = 0.7;
  3046. t.left = 0;
  3047. t.right = 0;
  3048. t.top = 0;
  3049. return t;
  3050. };
  3051. _proto.getImg_i = function () {
  3052. var t = new eui.Image();
  3053. this.getImg = t;
  3054. t.anchorOffsetX = 221.21;
  3055. t.anchorOffsetY = 169.7;
  3056. t.source = "img/pop/1.png";
  3057. t.x = 375.21;
  3058. t.y = 740.8;
  3059. return t;
  3060. };
  3061. return TestPageSkin;
  3062. })(eui.Skin);generateEUI.paths['resource/eui_skins/TextInputSkin.exml'] = window.skins.TextInputSkin = (function (_super) {
  3063. __extends(TextInputSkin, _super);
  3064. function TextInputSkin() {
  3065. _super.call(this);
  3066. this.skinParts = ["textDisplay","promptDisplay"];
  3067. this.minHeight = 40;
  3068. this.minWidth = 300;
  3069. this.elementsContent = [this._Image1_i(),this._Rect1_i(),this.textDisplay_i()];
  3070. this.promptDisplay_i();
  3071. this.states = [
  3072. new eui.State ("normal",
  3073. [
  3074. ])
  3075. ,
  3076. new eui.State ("disabled",
  3077. [
  3078. new eui.SetProperty("textDisplay","textColor",0xff0000)
  3079. ])
  3080. ,
  3081. new eui.State ("normalWithPrompt",
  3082. [
  3083. new eui.AddItems("promptDisplay","",1,"")
  3084. ])
  3085. ,
  3086. new eui.State ("disabledWithPrompt",
  3087. [
  3088. new eui.AddItems("promptDisplay","",1,"")
  3089. ])
  3090. ];
  3091. }
  3092. var _proto = TextInputSkin.prototype;
  3093. _proto._Image1_i = function () {
  3094. var t = new eui.Image();
  3095. t.percentHeight = 100;
  3096. t.scale9Grid = new egret.Rectangle(1,3,8,8);
  3097. t.source = "button_up_png";
  3098. t.percentWidth = 100;
  3099. return t;
  3100. };
  3101. _proto._Rect1_i = function () {
  3102. var t = new eui.Rect();
  3103. t.fillColor = 0xffffff;
  3104. t.percentHeight = 100;
  3105. t.percentWidth = 100;
  3106. return t;
  3107. };
  3108. _proto.textDisplay_i = function () {
  3109. var t = new eui.EditableText();
  3110. this.textDisplay = t;
  3111. t.height = 24;
  3112. t.left = "10";
  3113. t.right = "10";
  3114. t.size = 20;
  3115. t.textColor = 0x000000;
  3116. t.verticalCenter = "0";
  3117. t.percentWidth = 100;
  3118. return t;
  3119. };
  3120. _proto.promptDisplay_i = function () {
  3121. var t = new eui.Label();
  3122. this.promptDisplay = t;
  3123. t.height = 24;
  3124. t.left = 10;
  3125. t.right = 10;
  3126. t.size = 20;
  3127. t.textColor = 0xa9a9a9;
  3128. t.touchEnabled = false;
  3129. t.verticalCenter = 0;
  3130. t.percentWidth = 100;
  3131. return t;
  3132. };
  3133. return TextInputSkin;
  3134. })(eui.Skin);generateEUI.paths['resource/eui_skins/ToggleSwitchSkin.exml'] = window.skins.ToggleSwitchSkin = (function (_super) {
  3135. __extends(ToggleSwitchSkin, _super);
  3136. function ToggleSwitchSkin() {
  3137. _super.call(this);
  3138. this.skinParts = [];
  3139. this.elementsContent = [this._Image1_i(),this._Image2_i()];
  3140. this.states = [
  3141. new eui.State ("up",
  3142. [
  3143. new eui.SetProperty("_Image1","source","off_png")
  3144. ])
  3145. ,
  3146. new eui.State ("down",
  3147. [
  3148. new eui.SetProperty("_Image1","source","off_png")
  3149. ])
  3150. ,
  3151. new eui.State ("disabled",
  3152. [
  3153. new eui.SetProperty("_Image1","source","off_png")
  3154. ])
  3155. ,
  3156. new eui.State ("upAndSelected",
  3157. [
  3158. new eui.SetProperty("_Image2","horizontalCenter",18)
  3159. ])
  3160. ,
  3161. new eui.State ("downAndSelected",
  3162. [
  3163. new eui.SetProperty("_Image2","horizontalCenter",18)
  3164. ])
  3165. ,
  3166. new eui.State ("disabledAndSelected",
  3167. [
  3168. new eui.SetProperty("_Image2","horizontalCenter",18)
  3169. ])
  3170. ];
  3171. }
  3172. var _proto = ToggleSwitchSkin.prototype;
  3173. _proto._Image1_i = function () {
  3174. var t = new eui.Image();
  3175. this._Image1 = t;
  3176. t.source = "on_png";
  3177. return t;
  3178. };
  3179. _proto._Image2_i = function () {
  3180. var t = new eui.Image();
  3181. this._Image2 = t;
  3182. t.horizontalCenter = -18;
  3183. t.source = "handle_png";
  3184. t.verticalCenter = 0;
  3185. return t;
  3186. };
  3187. return ToggleSwitchSkin;
  3188. })(eui.Skin);generateEUI.paths['resource/eui_skins/ToumingBg.exml'] = window.ToumingBgSkin = (function (_super) {
  3189. __extends(ToumingBgSkin, _super);
  3190. function ToumingBgSkin() {
  3191. _super.call(this);
  3192. this.skinParts = ["bg"];
  3193. this.height = 300;
  3194. this.width = 400;
  3195. this.elementsContent = [this.bg_i()];
  3196. }
  3197. var _proto = ToumingBgSkin.prototype;
  3198. _proto.bg_i = function () {
  3199. var t = new eui.Rect();
  3200. this.bg = t;
  3201. t.bottom = 0;
  3202. t.fillAlpha = 0.7;
  3203. t.left = 0;
  3204. t.right = 0;
  3205. t.top = 0;
  3206. return t;
  3207. };
  3208. return ToumingBgSkin;
  3209. })(eui.Skin);generateEUI.paths['resource/eui_skins/ToumingBtn.exml'] = window.ToumingBtnSkin = (function (_super) {
  3210. __extends(ToumingBtnSkin, _super);
  3211. function ToumingBtnSkin() {
  3212. _super.call(this);
  3213. this.skinParts = ["bg"];
  3214. this.height = 100;
  3215. this.width = 200;
  3216. this.elementsContent = [this.bg_i()];
  3217. }
  3218. var _proto = ToumingBtnSkin.prototype;
  3219. _proto.bg_i = function () {
  3220. var t = new eui.Rect();
  3221. this.bg = t;
  3222. t.bottom = 0;
  3223. t.fillAlpha = 0.5;
  3224. t.fillColor = 0xff2121;
  3225. t.left = 0;
  3226. t.right = 0;
  3227. t.top = 0;
  3228. return t;
  3229. };
  3230. return ToumingBtnSkin;
  3231. })(eui.Skin);generateEUI.paths['resource/eui_skins/VScrollBarSkin.exml'] = window.skins.VScrollBarSkin = (function (_super) {
  3232. __extends(VScrollBarSkin, _super);
  3233. function VScrollBarSkin() {
  3234. _super.call(this);
  3235. this.skinParts = ["thumb"];
  3236. this.minHeight = 20;
  3237. this.minWidth = 8;
  3238. this.elementsContent = [this.thumb_i()];
  3239. }
  3240. var _proto = VScrollBarSkin.prototype;
  3241. _proto.thumb_i = function () {
  3242. var t = new eui.Image();
  3243. this.thumb = t;
  3244. t.height = 30;
  3245. t.horizontalCenter = 0;
  3246. t.scale9Grid = new egret.Rectangle(3,3,2,2);
  3247. t.source = "roundthumb_png";
  3248. t.width = 8;
  3249. return t;
  3250. };
  3251. return VScrollBarSkin;
  3252. })(eui.Skin);generateEUI.paths['resource/eui_skins/VSliderSkin.exml'] = window.skins.VSliderSkin = (function (_super) {
  3253. __extends(VSliderSkin, _super);
  3254. function VSliderSkin() {
  3255. _super.call(this);
  3256. this.skinParts = ["track","thumb"];
  3257. this.minHeight = 30;
  3258. this.minWidth = 25;
  3259. this.elementsContent = [this.track_i(),this.thumb_i()];
  3260. }
  3261. var _proto = VSliderSkin.prototype;
  3262. _proto.track_i = function () {
  3263. var t = new eui.Image();
  3264. this.track = t;
  3265. t.percentHeight = 100;
  3266. t.horizontalCenter = 0;
  3267. t.scale9Grid = new egret.Rectangle(1,1,4,4);
  3268. t.source = "track_png";
  3269. t.width = 7;
  3270. return t;
  3271. };
  3272. _proto.thumb_i = function () {
  3273. var t = new eui.Image();
  3274. this.thumb = t;
  3275. t.horizontalCenter = 0;
  3276. t.source = "thumb_png";
  3277. return t;
  3278. };
  3279. return VSliderSkin;
  3280. })(eui.Skin);