| 12345678910111213141516171819202122232425262728293031 |
- form zOrder
- {
- //theme = res/common/default.theme
- //style = basicContainer
- size = 600, 600
- scroll = SCROLL_BOTH
- consumeInputEvents = true
- batchingEnabled = false
-
- label label1
- {
- style = Button
- size = 400, 200
- text = TOP
- zIndex = 3
- }
- label label2 : label1
- {
- text = MID
- position = 20, 50
- zIndex = 2
- }
- label label3 : label1
- {
- text = BOTTOM
- position = 40, 100
- zIndex = 1
- }
- }
|