nik684

Untitled

May 11th, 2022
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. (
  2. ::testRollout
  3. Rollout testRollout "Test Timer"
  4. (
  5.  
  6. timer clock "testClock" interval:1000 --tick once a second
  7.  
  8. label test"1"
  9.  
  10. on clock tick do
  11. (
  12. if clock.ticks == 3 then DestroyDialog testRollout
  13. else
  14. (
  15. valUp = (test.text as integer)+1
  16. test.text = valUp as string
  17. )
  18. )
  19.  
  20. )
  21.  
  22. createDialog testRollout style:#(#style_sysmenu)
  23. )
Advertisement
Add Comment
Please, Sign In to add comment