I have this Random-code where you go to different frames in a mc.
function MyRandom(minVal, maxVal){
return minVal + Math.floor(Math.random()*(maxVal +1 - minVal));
}
//////
texter.gotoAndStop(MyRandom(1,8));
But when the user has been to a frame I want to remove that frame from the "list" so you can´t go there anymore.
Any good codes for that?
/Mattias




Reply With Quote