Random numbers

I would like to have random numbers appear in the screen one after another. I'm as far as getting random numbers when touching the screen, but I would like the random numbers popping up automatically. Can anyone help me?

Thanks

Comments

  • tatiangtatiang Member, Sous Chef, PRO, Senior Sous-Chef Posts: 11,949

    Use a Timer and place the Change Attribute statement within the timer.

  • gyroscopegyroscope I am here.Member, Sous Chef, PRO Posts: 6,598

    Hi @SkipBospace and welcome to the Forums.

    A simple Timer should do the trick, along with your integer attribute (which I'll call Rand).

    Timer: Every 1 second --- or whatever time you want
    Change Attribute Rand to random(1,50) -- or whatever your range is
    
    Display Text Rand
    
  • SkipBospaceSkipBospace Member Posts: 3

    Thanks you guys!

Sign In or Register to comment.