// roll
// demonstrates random number, ceil function
// algorithm for rolling a six-sided die
// Andy Harris, 12/04
stop();
btnRoll.onRelease = function(){
raw = Math.random();
times6 = raw * 6;
die = Math.ceil(times6);
} // end roll