Hola..
Usa este codigo para lo del numero random.. lo de moverse el dado no lo se.. creo k es MacromediaFlas
h, tendrias k unir ambos programas me parece.
Agrega:
1 Command Buttom O la imagen del dado
1 textbox
Codigo:
Public Function Rand(ByVal Low As Long, _
ByVal High As Long) As Long
Rand = Int((High - Low + 1) * Rnd) + Low
End Function
Private Sub Command1_Click() 'O bien enves del command button podria ser la imagen del dado
Randomize
dado = Rand(1, 6)
if dado = 1 then text1 = 1
if dado = 2 then text1 = 2
if dado = 3 then text1 = 3
if dado = 4 then text1 = 4
if dado = 5 then text1 = 5
if dado = 6 then text1 = 6
end sub
Espero que te alla servido de algo.