Subversion Repositories AndroidProjects

Rev

Rev 623 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
622 chris 1
Menu "SubMenuEndless"
2
{
3
	origin 0, 0;
4
 
5
	Label "title"
6
	{
623 chris 7
		position 240, 80;
622 chris 8
		size 200, 40;
9
		align center, center;
10
		font "scoring";
11
		caption "PUZZLE MODE";
12
		scale 4;
13
	}
14
 
624 chris 15
	Label "levelLabel"
16
	{
17
		position 240, 170;
18
		size 100, 20;
19
		align center, center;
20
		font "scoring";
21
		caption "LEVEL SELECT";
22
		scale 3;
23
	}
24
 
25
	Image "black"
26
	{
27
		position 0, 200;
28
		size 480, 200;
29
		align left, top;
30
		texture "data/textures/black.png";
31
		filter nearest, nearest;
32
		color 1, 1, 1, 0.5;
33
	}
34
 
35
	Image "arrow"
36
	{
37
		position 240, 190;
38
		size 64, 64;
39
		align center, top;
40
		texture "data/textures/level_selector.png";
41
		color 1, 1, 1, 1;
42
		filter nearest, nearest;
43
	}
44
 
622 chris 45
	SegmentButton "start"
46
	{
623 chris 47
		position 240, 580;
48
		size 400, 120;
622 chris 49
		caption "Start!";
623 chris 50
		align center, center;
622 chris 51
		texture "data/textures/simplebutton.png";
52
		pushTexture "data/textures/simplebutton_pushed.png";
53
		scale 3;
54
		font "scoring";
55
		color 1, 1, 1, 1;
56
		pushColor 1, 1, 1, 1;
57
		pushOffset 0, 2;
58
		onTouch "start_puzzle";
59
 
60
		clickSound "menu_confirm";
61
		pushSound "menu_push";
62
	}
63
 
64
	SegmentButton "back"
65
	{
623 chris 66
		position 240, 690;
67
		size 400, 90;
622 chris 68
		caption "Back";
623 chris 69
		align center, center;
622 chris 70
		texture "data/textures/simplebutton.png";
71
		pushTexture "data/textures/simplebutton_pushed.png";
72
		scale 3;
73
		font "scoring";
74
		color 1, 1, 1, 1;
75
		pushColor 1, 1, 1, 1;
76
		pushOffset 0, 2;
77
		onTouch "submenu_back";
78
 
79
		pushSound "menu_push";
80
	}
81
}