examples

output-play.js

1
2
3
4
5
6
7
times(10, (i) => {
  btn = ui.button(i, 100 + (i * 52), 100)
  btn.action(() => {
    output.play(i)
  })
})