Help with flash actionscript
Help with flash actionscript
Out of context: Reply #4
- Started
- Last post
- 7 Responses
- blaw0
here's the setInterval code, but you'll want to adjust the '2000' to suit your needs:
function getRandomFrame(){
tempNum=Math.random();
tempNum=Math.floor((tempNum*18...
gotoAndStop(tempNum);
}ID = setInterval(getRandomFrame, 2000);