| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- form backgroundControls
- {
- layout = LAYOUT_VERTICAL
- alignment = ALIGN_VCENTER_LEFT
- size = 270, 430
- label title
- {
- text = Background Music
- fontSize = 32
- }
- button playButton
- {
- text = Play
- size = 250, 50
- }
- button pauseButton
- {
- text = Pause
- size = 250, 50
- }
- button resumeButton
- {
- text = Resume
- size = 250, 50
- }
- button rewindButton
- {
- text = Rewind
- size = 250, 50
- }
- button stopButton
- {
- text = Stop
- size = 250, 50
- }
- checkbox loopCheckBox
- {
- text = Loop Audio
- }
- slider gainSlider
- {
- width = 250
- orientation = HORIZONTAL
- min = 0
- max = 1
- value = 0.5
- text = Gain
- valueTextVisible = false
- }
- slider pitchSlider
- {
- width = 250
- orientation = HORIZONTAL
- min = 0.1
- max = 5
- value = 1
- text = Pitch
- valueTextVisible = false
- }
- }
|