Script Library: 1247 scripts
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Archive version of: coinflip.r ... version: 3 ... notchent 28-Nov-2013

REBOL [
    title: "Coin Flip"
    date: 27-Nov-2013
    file: %coinflip.r
    author:  Nick Antonaccio
    purpose: {
        A little example for a student.  Click the button to randomly flip the coin image.
        Based on the example video at http://visualruby.net
    }
]
h: load http://re-bol.com/heads.jpg
t: load http://re-bol.com/tails.jpg
random/seed now
view g: layout [
    i: image h
    f: field
    btn "Flip" [
        f/text: first random ["Heads" "Tails"]
        either f/text = "Heads" [i/image: h] [i/image: t] show g
    ]
]