| thanks! works great now. 
 However i have moved on to another problem: whenever i use Rand() its gives me an identifier not found error.
 here's the snippet i'm using it in:
 
 
Local i:Int
For i=0 To 10
	Local mass:Int
	mass=Rand(5,20)
	circle.Create(Rand(0,800),Rand(0,600),0,0,.99,.99,mass*2.0,mass)
Next
 the SeedRnd function doesn't work as well. As far as examples and searching goes, i'm under the assumption i don't need to import anything or do anything special, so can anyone tell me if i'm doing anything wrong?
 
 
 |