InterviewSolution
Saved Bookmarks
| 1. |
How Do You Generate Random Numbers Within A Given Limit With Actionscript? |
|
Answer» Math.round(Math.random() * (HIGH - LOW)) + low Math.round(Math.random() * (high - low)) + low |
|