Hi All,
I was wondering if there is good implementation of Random.Next in AS-3.
Basically want to generate a series of Random numbers given a seed,and at times minumum and maximum limits..
Similar to C# System.Random class.
Random random = new Random();
return random.Next(min, max);
Thanks All.