formZOrder.form 509 B

12345678910111213141516171819202122232425262728293031
  1. form zOrder
  2. {
  3. //theme = res/common/default.theme
  4. //style = basicContainer
  5. size = 600, 600
  6. scroll = SCROLL_BOTH
  7. consumeInputEvents = true
  8. batchingEnabled = false
  9. label label1
  10. {
  11. style = Button
  12. size = 400, 200
  13. text = TOP
  14. zIndex = 3
  15. }
  16. label label2 : label1
  17. {
  18. text = MID
  19. position = 20, 50
  20. zIndex = 2
  21. }
  22. label label3 : label1
  23. {
  24. text = BOTTOM
  25. position = 40, 100
  26. zIndex = 1
  27. }
  28. }