1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
| *start
cls
txt = "テキスト"
litem = 0
citem = 0
chk = 0
objsize 100,20
objmode 1
button txt,*dummy
idObj.stat = stat : dup idBtn , idObj.stat
input txt
idObj.stat = stat : dup idIpt , idObj.stat
mesbox txt,,,2
idObj.stat = stat : dup idMbx , idObj.stat
chkbox txt,chk
idObj.stat = stat : dup idChk , idObj.stat
listbox litem,50,txt
idObj.stat = stat : dup idLst , idObj.stat
combox citem,50,txt
idObj.stat = stat : dup idCbx , idObj.stat
mes "BUTTON ID = " + idBtn
mes "LISTBOX ID = " + idLst
mes "COMBOX ID = " + idCbx
mes "MESBOX ID = " + idMbx
mes "INPUT ID = " + idIpt
mes "3秒後にオブジェクトラベルの変更"
repeat 3
mes cnt+1
wait 100
loop
objprm idBtn, "もう一度"
objprm idIpt, "入力ボックス"
objprm idMbx, "メッセージボックス"
objprm idCbx, "りんご\nみかん\nなす"
objprm idCbx,2 objprm idLst, "東京\n大阪\nアフリカ"
objprm idLst,1 objprm idChk, "チェックボックス"
objprm idChk,1
stop
*dummy
goto *start
|