07-20-2014, 09:40 PM
Here is what i did.
I call this function in my script. Everytime the script is run it chooses the random property from the list.
Code:
Function xx()
Dim yy
yy=Array("1","2","3"...., "19")
Randomize
SelectedProperty=yy(Int(Rnd*19))
Print("selected:"&SelectedProperty)
xx=SelectedProperty
End Function
I call this function in my script. Everytime the script is run it chooses the random property from the list.