(完整版)脚本精灵UI函数(三):一个完整的带界面的脚本示例
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
脚本精灵--UI函数(三):一个完整的带界面的脚本示例
脚本代码:
1.-- 脚本名称:(示例)天天爱消除全自动刷分
2.-- 脚本描述:演示带界面的脚本,无实际功能
3.----------------------------------------------------
4.
5.function createAddPointsWindow()
6. --新窗口
7. createWindow("my_window_1")
8. createTextViewEx("my_window_1","UI_11","本机IMEI:")
9. createEditTextEx("my_window_1","UI_IMEI",getIMEI())
10.
11. newLine("my_window_1")
12. createTextViewEx("my_window_1","UI_11","充值卡号:")
13. createEditTextEx("my_window_1","UI_card","FLKJ234234234")
14. newLine("my_window_1")
15. createButtonEx("my_window_1","UI_add_points","确定","addPoints")
16.end
17.
18.function addPoints()
19. UI_card = getText("my_window_1","UI_card")
20. if UI_card == "FLKJ234234234" then
21. toast("充值成功")
22. closeWindow("my_window_1")
23. else
24. toast("卡号不正确,充值失败")
25. end
26.end
27.
28.function createUI()
29. showLoopSetting(false)
30. createTextView("UI_tv","账号:")
31. createEditText("UI_qq","411324287",EDIT_TYPE_NUMBER,MATCH_PAREN
T,WRAP_CONTENT)
32. newLine()
33.
34. createTextView("UI_tv","密码:")
35. createEditText("UI_pwd","123456789",EDIT_TYPE_PASSWORD,MATCH_PA
RENT,WRAP_CONTENT)
36. newLine()
37.
38. createCheckBox("UI_autoStartApp","自动启动",true)
39. createCheckBox("UI_autoStart","自动开始",true)
40. newLine()
41.
42. createCheckBox("UI_autoLogin","自动登录",false)
43. createCheckBox("UI_autoPlay","自动消除",true)
44. newLine()
45.
46. createTextView("UI_tv","模式选择:")
47. newLine()
48.
49. createRadioBox("UI_type","经典模式",false)
50. createRadioBox("UI_type","闪电模式",true)
51.
52. newLine()
53. createButton("UI_btn","脚本充值","createAddPointsWindow")
54.
55.end
56.
57.function main()
58.
59. local str = string.format("QQ:%s\n密码:%s",UI_qq,UI_pwd);
60. if UI_autoStartApp then
61. str = string.format("%s\n自动启动游戏",str);
62. end
63. if UI_autoStart then
64. str = string.format("%s\n自动开始游戏",str);
65. end
66. if UI_autoLogin then
67. str = string.format("%s\n自动登录",str);
68. end
69. if UI_autoPlay then
70. str = string.format("%s\n自动消除",str);
71. end
72. str = string.format("%s\n%s",str,UI_type);
73. toast(str)
74.
75.end
76.
77.if getScriptElfVersion() < 200 then
78. main()
79.end
80.
选择脚本后的效果: