I was curious as to how hard it is to programme a dice roll into flash. I have an idea for a turn based game you see, and I want to keep things simple.
Not that hard you can go here for a tutorial. http://www.flashperfection.com/tutorials/Imitate-a-dice-roll-using-Actionscript-3-classes-in-flash-cs3-24042.html
Yes, flash has a few very helpful Math functions that allow you to do a lot of different things with numbers. If you're using AS 2.0 Math.random() takes a random number 0 - whatever you want, in your case it would be: Math.random() * 6
But if you're using AS 3.0 I'm sure the tutorial above would help